@atlaskit/editor-plugin-selection-extension 10.3.22 → 10.3.24

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,21 @@
1
1
  # @atlaskit/editor-plugin-selection-extension
2
2
 
3
+ ## 10.3.24
4
+
5
+ ### Patch Changes
6
+
7
+ - [`0a3f1913cc452`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0a3f1913cc452) -
8
+ Skip tracking experience for extension item transform
9
+ - Updated dependencies
10
+
11
+ ## 10.3.23
12
+
13
+ ### Patch Changes
14
+
15
+ - [`47211917d90fc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/47211917d90fc) -
16
+ Editor 5281 fix block menu icon cut off when zoom
17
+ - Updated dependencies
18
+
3
19
  ## 10.3.22
4
20
 
5
21
  ### Patch Changes
@@ -1,3 +1,4 @@
1
+ ._172sewfl svg{overflow-y:visible}
1
2
  ._18m915vq{overflow-y:hidden}
2
3
  ._18u01b66{margin-left:var(--ds-space-050,4px)}
3
4
  ._1bto1l2s{text-overflow:ellipsis}
@@ -5,5 +6,6 @@
5
6
  ._1o9zidpf{flex-shrink:0}
6
7
  ._1reo15vq{overflow-x:hidden}
7
8
  ._1ul9idpf{min-width:0}
9
+ ._1wrmewfl svg{overflow-x:visible}
8
10
  ._4cvr1h6o{align-items:center}
9
11
  ._o5721q9c{white-space:nowrap}
@@ -12,6 +12,7 @@ var _runtime = require("@compiled/react/runtime");
12
12
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
13
13
  var _react = _interopRequireWildcard(require("react"));
14
14
  var _analytics = require("@atlaskit/editor-common/analytics");
15
+ var _blockMenu = require("@atlaskit/editor-common/block-menu");
15
16
  var _editorToolbar = require("@atlaskit/editor-toolbar");
16
17
  var _lozenge = _interopRequireDefault(require("@atlaskit/lozenge"));
17
18
  var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
@@ -22,6 +23,7 @@ var _types = require("../../types");
22
23
  var _SelectionExtensionComponentContext = require("../SelectionExtensionComponentContext");
23
24
  function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
24
25
  var styles = {
26
+ svgOverflow: "_1wrmewfl _172sewfl",
25
27
  contentWrapper: "_1e0c1txw _4cvr1h6o _1ul9idpf",
26
28
  label: "_1reo15vq _18m915vq _1bto1l2s _o5721q9c _1ul9idpf",
27
29
  lozenge: "_18u01b66 _1o9zidpf"
@@ -101,20 +103,29 @@ var SelectionExtensionDropdownItem = exports.SelectionExtensionDropdownItem = fu
101
103
  setIsTruncated(el.scrollWidth > el.clientWidth);
102
104
  }
103
105
  }, []);
106
+
107
+ // [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
108
+ // Adds size="small" to icons for better visual co nsistency in block menu.
109
+ // Adds overflow: visible to SVGs to fix when view port is in different zoom level, sometimes the right edge of the icon is cut off.
110
+ // To clean up: simplify conditional to just check if extensionLocation is inline-toolbar or block-menu,
111
+ // and always apply svgOverflowStyles wrapper for block-menu items.
112
+ var iconSize = (extensionLocation === 'inline-toolbar' || extensionLocation === 'block-menu') && ((0, _platformFeatureFlags.fg)('platform_editor_block_menu_v2_patch_1') || (0, _platformFeatureFlags.fg)('platform_editor_block_menu_v2_patch_3')) ? 'small' : undefined;
113
+ var iconElement = IconComponent ? /*#__PURE__*/_react.default.createElement(IconComponent, {
114
+ size: iconSize,
115
+ label: ""
116
+ }) : undefined;
117
+ var elemBeforeIcon = iconElement && extensionLocation === 'block-menu' && (0, _platformFeatureFlags.fg)('platform_editor_block_menu_v2_patch_3') ? /*#__PURE__*/_react.default.createElement("span", {
118
+ className: (0, _runtime.ax)([styles.svgOverflow])
119
+ }, iconElement) : iconElement;
104
120
  if ((0, _platformFeatureFlags.fg)('platform_editor_block_menu_v2_patch_2')) {
105
121
  return /*#__PURE__*/_react.default.createElement(_editorToolbar.ToolbarTooltip, {
106
122
  content: isTruncated ? dropdownItem.label : null,
107
123
  position: "top"
108
124
  }, /*#__PURE__*/_react.default.createElement(_editorToolbar.ToolbarDropdownItem, {
109
- elemBefore: IconComponent ? /*#__PURE__*/_react.default.createElement(IconComponent, {
110
- size:
111
- // [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
112
- // To clean up: simplify conditional to just check if extensionLocation is inline-toolbar or block-menu
113
- (extensionLocation === 'inline-toolbar' || extensionLocation === 'block-menu') && ((0, _platformFeatureFlags.fg)('platform_editor_block_menu_v2_patch_1') || (0, _platformFeatureFlags.fg)('platform_editor_block_menu_v2_patch_3')) ? 'small' : undefined,
114
- label: ""
115
- }) : undefined,
125
+ elemBefore: elemBeforeIcon,
116
126
  onClick: handleClick,
117
- isDisabled: dropdownItem.isDisabled
127
+ isDisabled: dropdownItem.isDisabled,
128
+ testId: _blockMenu.EXTENSION_MENU_ITEM_TEST_ID
118
129
  }, /*#__PURE__*/_react.default.createElement(_compiled.Box, {
119
130
  as: "span",
120
131
  xcss: styles.contentWrapper,
@@ -131,13 +142,8 @@ var SelectionExtensionDropdownItem = exports.SelectionExtensionDropdownItem = fu
131
142
  }, dropdownItem.lozenge.label)) : undefined)));
132
143
  }
133
144
  return /*#__PURE__*/_react.default.createElement(_editorToolbar.ToolbarDropdownItem, {
134
- elemBefore: IconComponent ? /*#__PURE__*/_react.default.createElement(IconComponent, {
135
- size:
136
- // [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
137
- // To clean up: simplify conditional to just check if extensionLocation is inline-toolbar or block-menu
138
- (extensionLocation === 'inline-toolbar' || extensionLocation === 'block-menu') && ((0, _platformFeatureFlags.fg)('platform_editor_block_menu_v2_patch_1') || (0, _platformFeatureFlags.fg)('platform_editor_block_menu_v2_patch_3')) ? 'small' : undefined,
139
- label: ""
140
- }) : undefined,
145
+ elemBefore: elemBeforeIcon,
146
+ testId: _blockMenu.EXTENSION_MENU_ITEM_TEST_ID,
141
147
  onClick: handleClick,
142
148
  isDisabled: dropdownItem.isDisabled
143
149
  }, dropdownItem.label, dropdownItem.lozenge ? /*#__PURE__*/_react.default.createElement(_compiled.Box, {
@@ -7,6 +7,7 @@ Object.defineProperty(exports, "__esModule", {
7
7
  exports.SelectionExtensionNestedDropdownMenu = void 0;
8
8
  var _react = _interopRequireDefault(require("react"));
9
9
  var _analytics = require("@atlaskit/editor-common/analytics");
10
+ var _blockMenu = require("@atlaskit/editor-common/block-menu");
10
11
  var _editorToolbar = require("@atlaskit/editor-toolbar");
11
12
  var _chevronRight = _interopRequireDefault(require("@atlaskit/icon/core/chevron-right"));
12
13
  var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
@@ -47,6 +48,7 @@ var SelectionExtensionNestedDropdownMenu = exports.SelectionExtensionNestedDropd
47
48
  });
48
49
  };
49
50
  return /*#__PURE__*/_react.default.createElement(_editorToolbar.ToolbarNestedDropdownMenu, {
51
+ testId: _blockMenu.EXTENSION_MENU_ITEM_TEST_ID,
50
52
  text: nestedDropdownMenu.label,
51
53
  elemBefore: IconComponent ?
52
54
  /*#__PURE__*/
@@ -1,3 +1,4 @@
1
+ ._172sewfl svg{overflow-y:visible}
1
2
  ._18m915vq{overflow-y:hidden}
2
3
  ._18u01b66{margin-left:var(--ds-space-050,4px)}
3
4
  ._1bto1l2s{text-overflow:ellipsis}
@@ -5,5 +6,6 @@
5
6
  ._1o9zidpf{flex-shrink:0}
6
7
  ._1reo15vq{overflow-x:hidden}
7
8
  ._1ul9idpf{min-width:0}
9
+ ._1wrmewfl svg{overflow-x:visible}
8
10
  ._4cvr1h6o{align-items:center}
9
11
  ._o5721q9c{white-space:nowrap}
@@ -3,6 +3,7 @@ import "./SelectionExtensionDropdownItem.compiled.css";
3
3
  import { ax, ix } from "@compiled/react/runtime";
4
4
  import React, { useCallback, useRef, useState } from 'react';
5
5
  import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
6
+ import { EXTENSION_MENU_ITEM_TEST_ID } from '@atlaskit/editor-common/block-menu';
6
7
  import { ToolbarDropdownItem, ToolbarTooltip } from '@atlaskit/editor-toolbar';
7
8
  import Lozenge from '@atlaskit/lozenge';
8
9
  import { fg } from '@atlaskit/platform-feature-flags';
@@ -12,6 +13,7 @@ import { getSelectionAdfInfoNew, getSelectionTextInfoNew } from '../../pm-plugin
12
13
  import { SelectionExtensionActionTypes } from '../../types';
13
14
  import { useSelectionExtensionComponentContext } from '../SelectionExtensionComponentContext';
14
15
  const styles = {
16
+ svgOverflow: "_1wrmewfl _172sewfl",
15
17
  contentWrapper: "_1e0c1txw _4cvr1h6o _1ul9idpf",
16
18
  label: "_1reo15vq _18m915vq _1bto1l2s _o5721q9c _1ul9idpf",
17
19
  lozenge: "_18u01b66 _1o9zidpf"
@@ -92,20 +94,29 @@ export const SelectionExtensionDropdownItem = ({
92
94
  setIsTruncated(el.scrollWidth > el.clientWidth);
93
95
  }
94
96
  }, []);
97
+
98
+ // [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
99
+ // Adds size="small" to icons for better visual co nsistency in block menu.
100
+ // Adds overflow: visible to SVGs to fix when view port is in different zoom level, sometimes the right edge of the icon is cut off.
101
+ // To clean up: simplify conditional to just check if extensionLocation is inline-toolbar or block-menu,
102
+ // and always apply svgOverflowStyles wrapper for block-menu items.
103
+ const iconSize = (extensionLocation === 'inline-toolbar' || extensionLocation === 'block-menu') && (fg('platform_editor_block_menu_v2_patch_1') || fg('platform_editor_block_menu_v2_patch_3')) ? 'small' : undefined;
104
+ const iconElement = IconComponent ? /*#__PURE__*/React.createElement(IconComponent, {
105
+ size: iconSize,
106
+ label: ""
107
+ }) : undefined;
108
+ const elemBeforeIcon = iconElement && extensionLocation === 'block-menu' && fg('platform_editor_block_menu_v2_patch_3') ? /*#__PURE__*/React.createElement("span", {
109
+ className: ax([styles.svgOverflow])
110
+ }, iconElement) : iconElement;
95
111
  if (fg('platform_editor_block_menu_v2_patch_2')) {
96
112
  return /*#__PURE__*/React.createElement(ToolbarTooltip, {
97
113
  content: isTruncated ? dropdownItem.label : null,
98
114
  position: "top"
99
115
  }, /*#__PURE__*/React.createElement(ToolbarDropdownItem, {
100
- elemBefore: IconComponent ? /*#__PURE__*/React.createElement(IconComponent, {
101
- size:
102
- // [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
103
- // To clean up: simplify conditional to just check if extensionLocation is inline-toolbar or block-menu
104
- (extensionLocation === 'inline-toolbar' || extensionLocation === 'block-menu') && (fg('platform_editor_block_menu_v2_patch_1') || fg('platform_editor_block_menu_v2_patch_3')) ? 'small' : undefined,
105
- label: ""
106
- }) : undefined,
116
+ elemBefore: elemBeforeIcon,
107
117
  onClick: handleClick,
108
- isDisabled: dropdownItem.isDisabled
118
+ isDisabled: dropdownItem.isDisabled,
119
+ testId: EXTENSION_MENU_ITEM_TEST_ID
109
120
  }, /*#__PURE__*/React.createElement(Box, {
110
121
  as: "span",
111
122
  xcss: styles.contentWrapper,
@@ -122,13 +133,8 @@ export const SelectionExtensionDropdownItem = ({
122
133
  }, dropdownItem.lozenge.label)) : undefined)));
123
134
  }
124
135
  return /*#__PURE__*/React.createElement(ToolbarDropdownItem, {
125
- elemBefore: IconComponent ? /*#__PURE__*/React.createElement(IconComponent, {
126
- size:
127
- // [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
128
- // To clean up: simplify conditional to just check if extensionLocation is inline-toolbar or block-menu
129
- (extensionLocation === 'inline-toolbar' || extensionLocation === 'block-menu') && (fg('platform_editor_block_menu_v2_patch_1') || fg('platform_editor_block_menu_v2_patch_3')) ? 'small' : undefined,
130
- label: ""
131
- }) : undefined,
136
+ elemBefore: elemBeforeIcon,
137
+ testId: EXTENSION_MENU_ITEM_TEST_ID,
132
138
  onClick: handleClick,
133
139
  isDisabled: dropdownItem.isDisabled
134
140
  }, dropdownItem.label, dropdownItem.lozenge ? /*#__PURE__*/React.createElement(Box, {
@@ -1,5 +1,6 @@
1
1
  import React from 'react';
2
2
  import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
3
+ import { EXTENSION_MENU_ITEM_TEST_ID } from '@atlaskit/editor-common/block-menu';
3
4
  import { ToolbarDropdownItemSection, ToolbarNestedDropdownMenu } from '@atlaskit/editor-toolbar';
4
5
  import ChevronRightIcon from '@atlaskit/icon/core/chevron-right';
5
6
  import { fg } from '@atlaskit/platform-feature-flags';
@@ -41,6 +42,7 @@ export const SelectionExtensionNestedDropdownMenu = ({
41
42
  });
42
43
  };
43
44
  return /*#__PURE__*/React.createElement(ToolbarNestedDropdownMenu, {
45
+ testId: EXTENSION_MENU_ITEM_TEST_ID,
44
46
  text: nestedDropdownMenu.label,
45
47
  elemBefore: IconComponent ?
46
48
  /*#__PURE__*/
@@ -1,3 +1,4 @@
1
+ ._172sewfl svg{overflow-y:visible}
1
2
  ._18m915vq{overflow-y:hidden}
2
3
  ._18u01b66{margin-left:var(--ds-space-050,4px)}
3
4
  ._1bto1l2s{text-overflow:ellipsis}
@@ -5,5 +6,6 @@
5
6
  ._1o9zidpf{flex-shrink:0}
6
7
  ._1reo15vq{overflow-x:hidden}
7
8
  ._1ul9idpf{min-width:0}
9
+ ._1wrmewfl svg{overflow-x:visible}
8
10
  ._4cvr1h6o{align-items:center}
9
11
  ._o5721q9c{white-space:nowrap}
@@ -4,6 +4,7 @@ import "./SelectionExtensionDropdownItem.compiled.css";
4
4
  import { ax, ix } from "@compiled/react/runtime";
5
5
  import React, { useCallback, useRef, useState } from 'react';
6
6
  import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
7
+ import { EXTENSION_MENU_ITEM_TEST_ID } from '@atlaskit/editor-common/block-menu';
7
8
  import { ToolbarDropdownItem, ToolbarTooltip } from '@atlaskit/editor-toolbar';
8
9
  import Lozenge from '@atlaskit/lozenge';
9
10
  import { fg } from '@atlaskit/platform-feature-flags';
@@ -13,6 +14,7 @@ import { getSelectionAdfInfoNew, getSelectionTextInfoNew } from '../../pm-plugin
13
14
  import { SelectionExtensionActionTypes } from '../../types';
14
15
  import { useSelectionExtensionComponentContext } from '../SelectionExtensionComponentContext';
15
16
  var styles = {
17
+ svgOverflow: "_1wrmewfl _172sewfl",
16
18
  contentWrapper: "_1e0c1txw _4cvr1h6o _1ul9idpf",
17
19
  label: "_1reo15vq _18m915vq _1bto1l2s _o5721q9c _1ul9idpf",
18
20
  lozenge: "_18u01b66 _1o9zidpf"
@@ -92,20 +94,29 @@ export var SelectionExtensionDropdownItem = function SelectionExtensionDropdownI
92
94
  setIsTruncated(el.scrollWidth > el.clientWidth);
93
95
  }
94
96
  }, []);
97
+
98
+ // [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
99
+ // Adds size="small" to icons for better visual co nsistency in block menu.
100
+ // Adds overflow: visible to SVGs to fix when view port is in different zoom level, sometimes the right edge of the icon is cut off.
101
+ // To clean up: simplify conditional to just check if extensionLocation is inline-toolbar or block-menu,
102
+ // and always apply svgOverflowStyles wrapper for block-menu items.
103
+ var iconSize = (extensionLocation === 'inline-toolbar' || extensionLocation === 'block-menu') && (fg('platform_editor_block_menu_v2_patch_1') || fg('platform_editor_block_menu_v2_patch_3')) ? 'small' : undefined;
104
+ var iconElement = IconComponent ? /*#__PURE__*/React.createElement(IconComponent, {
105
+ size: iconSize,
106
+ label: ""
107
+ }) : undefined;
108
+ var elemBeforeIcon = iconElement && extensionLocation === 'block-menu' && fg('platform_editor_block_menu_v2_patch_3') ? /*#__PURE__*/React.createElement("span", {
109
+ className: ax([styles.svgOverflow])
110
+ }, iconElement) : iconElement;
95
111
  if (fg('platform_editor_block_menu_v2_patch_2')) {
96
112
  return /*#__PURE__*/React.createElement(ToolbarTooltip, {
97
113
  content: isTruncated ? dropdownItem.label : null,
98
114
  position: "top"
99
115
  }, /*#__PURE__*/React.createElement(ToolbarDropdownItem, {
100
- elemBefore: IconComponent ? /*#__PURE__*/React.createElement(IconComponent, {
101
- size:
102
- // [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
103
- // To clean up: simplify conditional to just check if extensionLocation is inline-toolbar or block-menu
104
- (extensionLocation === 'inline-toolbar' || extensionLocation === 'block-menu') && (fg('platform_editor_block_menu_v2_patch_1') || fg('platform_editor_block_menu_v2_patch_3')) ? 'small' : undefined,
105
- label: ""
106
- }) : undefined,
116
+ elemBefore: elemBeforeIcon,
107
117
  onClick: handleClick,
108
- isDisabled: dropdownItem.isDisabled
118
+ isDisabled: dropdownItem.isDisabled,
119
+ testId: EXTENSION_MENU_ITEM_TEST_ID
109
120
  }, /*#__PURE__*/React.createElement(Box, {
110
121
  as: "span",
111
122
  xcss: styles.contentWrapper,
@@ -122,13 +133,8 @@ export var SelectionExtensionDropdownItem = function SelectionExtensionDropdownI
122
133
  }, dropdownItem.lozenge.label)) : undefined)));
123
134
  }
124
135
  return /*#__PURE__*/React.createElement(ToolbarDropdownItem, {
125
- elemBefore: IconComponent ? /*#__PURE__*/React.createElement(IconComponent, {
126
- size:
127
- // [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
128
- // To clean up: simplify conditional to just check if extensionLocation is inline-toolbar or block-menu
129
- (extensionLocation === 'inline-toolbar' || extensionLocation === 'block-menu') && (fg('platform_editor_block_menu_v2_patch_1') || fg('platform_editor_block_menu_v2_patch_3')) ? 'small' : undefined,
130
- label: ""
131
- }) : undefined,
136
+ elemBefore: elemBeforeIcon,
137
+ testId: EXTENSION_MENU_ITEM_TEST_ID,
132
138
  onClick: handleClick,
133
139
  isDisabled: dropdownItem.isDisabled
134
140
  }, dropdownItem.label, dropdownItem.lozenge ? /*#__PURE__*/React.createElement(Box, {
@@ -1,5 +1,6 @@
1
1
  import React from 'react';
2
2
  import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
3
+ import { EXTENSION_MENU_ITEM_TEST_ID } from '@atlaskit/editor-common/block-menu';
3
4
  import { ToolbarDropdownItemSection, ToolbarNestedDropdownMenu } from '@atlaskit/editor-toolbar';
4
5
  import ChevronRightIcon from '@atlaskit/icon/core/chevron-right';
5
6
  import { fg } from '@atlaskit/platform-feature-flags';
@@ -40,6 +41,7 @@ export var SelectionExtensionNestedDropdownMenu = function SelectionExtensionNes
40
41
  });
41
42
  };
42
43
  return /*#__PURE__*/React.createElement(ToolbarNestedDropdownMenu, {
44
+ testId: EXTENSION_MENU_ITEM_TEST_ID,
43
45
  text: nestedDropdownMenu.label,
44
46
  elemBefore: IconComponent ?
45
47
  /*#__PURE__*/
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ * @jsx jsx
4
+ */
1
5
  import React from 'react';
2
6
  import type { ExtensionDropdownItemConfiguration } from '../../types';
3
7
  type SelectionExtensionDropdownItemProps = {
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @jsxRuntime classic
3
+ * @jsx jsx
4
+ */
1
5
  import React from 'react';
2
6
  import type { ExtensionDropdownItemConfiguration } from '../../types';
3
7
  type SelectionExtensionDropdownItemProps = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-selection-extension",
3
- "version": "10.3.22",
3
+ "version": "10.3.24",
4
4
  "description": "editor-plugin-selection-extension plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -36,7 +36,7 @@
36
36
  "@atlaskit/css": "^0.19.0",
37
37
  "@atlaskit/editor-json-transformer": "^8.31.0",
38
38
  "@atlaskit/editor-plugin-analytics": "^7.0.0",
39
- "@atlaskit/editor-plugin-block-controls": "^8.7.0",
39
+ "@atlaskit/editor-plugin-block-controls": "^8.8.0",
40
40
  "@atlaskit/editor-plugin-block-menu": "^6.1.0",
41
41
  "@atlaskit/editor-plugin-editor-viewmode": "^9.0.0",
42
42
  "@atlaskit/editor-plugin-editor-viewmode-effects": "^7.0.0",
@@ -52,7 +52,7 @@
52
52
  "@atlaskit/lozenge": "^13.4.0",
53
53
  "@atlaskit/platform-feature-flags": "^1.1.0",
54
54
  "@atlaskit/primitives": "^18.0.0",
55
- "@atlaskit/tmp-editor-statsig": "^32.0.0",
55
+ "@atlaskit/tmp-editor-statsig": "^32.11.0",
56
56
  "@atlaskit/tokens": "^11.0.0",
57
57
  "@babel/runtime": "^7.0.0",
58
58
  "lodash": "^4.17.21",
@@ -60,7 +60,7 @@
60
60
  "uuid": "^3.1.0"
61
61
  },
62
62
  "peerDependencies": {
63
- "@atlaskit/editor-common": "^111.20.0",
63
+ "@atlaskit/editor-common": "^111.24.0",
64
64
  "react": "^18.2.0"
65
65
  },
66
66
  "devDependencies": {