@atlaskit/editor-plugin-block-menu 14.2.2 → 14.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/cjs/pm-plugins/keymap.js +2 -2
- package/dist/cjs/ui/block-menu.js +6 -5
- package/dist/cjs/ui/copy-link.js +2 -2
- package/dist/cjs/ui/flag.js +5 -5
- package/dist/cjs/ui/format-menu-nested.js +3 -3
- package/dist/es2019/pm-plugins/keymap.js +1 -1
- package/dist/es2019/ui/block-menu.js +3 -2
- package/dist/es2019/ui/copy-link.js +1 -1
- package/dist/es2019/ui/flag.js +3 -1
- package/dist/es2019/ui/format-menu-nested.js +1 -1
- package/dist/esm/pm-plugins/keymap.js +1 -1
- package/dist/esm/ui/block-menu.js +3 -2
- package/dist/esm/ui/copy-link.js +1 -1
- package/dist/esm/ui/flag.js +3 -1
- package/dist/esm/ui/format-menu-nested.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-block-menu
|
|
2
2
|
|
|
3
|
+
## 14.2.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 14.2.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`656801b9e097c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/656801b9e097c) -
|
|
14
|
+
VOLTC-331 - Migrate updated package usage in platform/editor: rewrite barrel imports of
|
|
15
|
+
voltCompliant provider packages to deep/subpath imports (consumer-side debarrel). No public API
|
|
16
|
+
changes.
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 14.2.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.keymapPlugin = keymapPlugin;
|
|
7
7
|
var _keymaps = require("@atlaskit/editor-common/keymaps");
|
|
8
8
|
var _selection = require("@atlaskit/editor-common/selection");
|
|
9
|
-
var
|
|
9
|
+
var _fg = require("@atlaskit/platform-feature-flags/fg");
|
|
10
10
|
var _blockMenuPluginType = require("../blockMenuPluginType");
|
|
11
11
|
var _main = require("../pm-plugins/main");
|
|
12
12
|
var _copyLink = require("../ui/utils/copyLink");
|
|
@@ -15,7 +15,7 @@ function keymapPlugin(api, config) {
|
|
|
15
15
|
var copyLinkToBlockCommand = function copyLinkToBlockCommand(state, dispatch) {
|
|
16
16
|
var _api$blockControls, _node$attrs;
|
|
17
17
|
// Check if feature flag is enabled
|
|
18
|
-
if (!(0,
|
|
18
|
+
if (!(0, _fg.fg)('platform_editor_adf_with_localid')) {
|
|
19
19
|
return false;
|
|
20
20
|
}
|
|
21
21
|
|
|
@@ -24,9 +24,10 @@ var _uiReact = require("@atlaskit/editor-common/ui-react");
|
|
|
24
24
|
var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
|
|
25
25
|
var _toolbarMenuContainer = require("@atlaskit/editor-toolbar/toolbar-menu-container");
|
|
26
26
|
var _isExperimentEnabled = require("@atlaskit/platform-feature-experiments/is-experiment-enabled");
|
|
27
|
-
var
|
|
27
|
+
var _fg = require("@atlaskit/platform-feature-flags/fg");
|
|
28
28
|
var _compiled = require("@atlaskit/primitives/compiled");
|
|
29
|
-
var
|
|
29
|
+
var _redo = require("@atlaskit/prosemirror-history/redo");
|
|
30
|
+
var _undo = require("@atlaskit/prosemirror-history/undo");
|
|
30
31
|
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
|
|
31
32
|
var _blockMenuProvider = require("./block-menu-provider");
|
|
32
33
|
var _BlockMenuRenderer = require("./block-menu-renderer/BlockMenuRenderer");
|
|
@@ -277,15 +278,15 @@ var BlockMenu = function BlockMenu(_ref5) {
|
|
|
277
278
|
event.stopPropagation();
|
|
278
279
|
}
|
|
279
280
|
if (isUndo) {
|
|
280
|
-
(0,
|
|
281
|
+
(0, _undo.undo)(editorView.state, editorView.dispatch);
|
|
281
282
|
} else if (isRedo) {
|
|
282
|
-
(0,
|
|
283
|
+
(0, _redo.redo)(editorView.state, editorView.dispatch);
|
|
283
284
|
}
|
|
284
285
|
api === null || api === void 0 || (_api$core = api.core) === null || _api$core === void 0 || _api$core.actions.execute(api === null || api === void 0 || (_api$blockControls2 = api.blockControls) === null || _api$blockControls2 === void 0 || (_api$blockControls2 = _api$blockControls2.commands) === null || _api$blockControls2 === void 0 ? void 0 : _api$blockControls2.handleKeyDownWithPreservedSelection(event));
|
|
285
286
|
};
|
|
286
287
|
var handleClickOutside = function handleClickOutside(e) {
|
|
287
288
|
// check if the clicked element was another drag handle or nested dropdown menu, if so don't close the menu
|
|
288
|
-
if (e.target instanceof HTMLElement && (e.target.closest(_styles.DRAG_HANDLE_SELECTOR) || e.target.closest(_styles.NESTED_DROPDOWN_MENU) && (0,
|
|
289
|
+
if (e.target instanceof HTMLElement && (e.target.closest(_styles.DRAG_HANDLE_SELECTOR) || e.target.closest(_styles.NESTED_DROPDOWN_MENU) && (0, _fg.fg)('platform_editor_block_menu_jira_patch_5'))) {
|
|
289
290
|
return;
|
|
290
291
|
}
|
|
291
292
|
closeMenu();
|
package/dist/cjs/ui/copy-link.js
CHANGED
|
@@ -15,7 +15,7 @@ var _keymaps = require("@atlaskit/editor-common/keymaps");
|
|
|
15
15
|
var _messages = require("@atlaskit/editor-common/messages");
|
|
16
16
|
var _editorToolbar = require("@atlaskit/editor-toolbar");
|
|
17
17
|
var _link = _interopRequireDefault(require("@atlaskit/icon/core/link"));
|
|
18
|
-
var
|
|
18
|
+
var _fg = require("@atlaskit/platform-feature-flags/fg");
|
|
19
19
|
var _blockMenuPluginType = require("../blockMenuPluginType");
|
|
20
20
|
var _main = require("../pm-plugins/main");
|
|
21
21
|
var _blockMenuProvider = require("./block-menu-provider");
|
|
@@ -86,7 +86,7 @@ var CopyLinkDropdownItemContent = function CopyLinkDropdownItemContent(_ref) {
|
|
|
86
86
|
}, [api, blockLinkHashPrefix, getLinkPath, onDropdownOpenChanged, selection]);
|
|
87
87
|
|
|
88
88
|
// Hide copy link when `platform_editor_adf_with_localid` feature flag is off
|
|
89
|
-
if (!(0,
|
|
89
|
+
if (!(0, _fg.fg)('platform_editor_adf_with_localid')) {
|
|
90
90
|
return null;
|
|
91
91
|
}
|
|
92
92
|
return /*#__PURE__*/_react.default.createElement(_editorToolbar.ToolbarDropdownItem, {
|
package/dist/cjs/ui/flag.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
5
4
|
Object.defineProperty(exports, "__esModule", {
|
|
6
5
|
value: true
|
|
7
6
|
});
|
|
@@ -11,11 +10,12 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
11
10
|
var _reactIntl = require("react-intl");
|
|
12
11
|
var _hooks = require("@atlaskit/editor-common/hooks");
|
|
13
12
|
var _messages = require("@atlaskit/editor-common/messages");
|
|
14
|
-
var _flag =
|
|
13
|
+
var _flag = _interopRequireDefault(require("@atlaskit/flag/flag"));
|
|
14
|
+
var _flagGroup = require("@atlaskit/flag/flag-group");
|
|
15
|
+
var _autoDismissFlag = _interopRequireDefault(require("@atlaskit/flag/auto-dismiss-flag"));
|
|
15
16
|
var _checkCircle = _interopRequireDefault(require("@atlaskit/icon/core/check-circle"));
|
|
16
17
|
var _blockMenuPluginType = require("../blockMenuPluginType");
|
|
17
18
|
var _main = require("../pm-plugins/main");
|
|
18
|
-
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); }
|
|
19
19
|
var flagMap = (0, _defineProperty2.default)({}, _blockMenuPluginType.FLAG_ID.LINK_COPIED_TO_CLIPBOARD, {
|
|
20
20
|
title: _messages.blockMenuMessages.linkCopiedToClipboard,
|
|
21
21
|
autoDismiss: true
|
|
@@ -45,8 +45,8 @@ var Flag = exports.Flag = function Flag(_ref) {
|
|
|
45
45
|
});
|
|
46
46
|
api === null || api === void 0 || api.core.actions.focus();
|
|
47
47
|
};
|
|
48
|
-
var FlagComponent = flagMap[showFlag].autoDismiss ?
|
|
49
|
-
return /*#__PURE__*/_react.default.createElement(
|
|
48
|
+
var FlagComponent = flagMap[showFlag].autoDismiss ? _autoDismissFlag.default : _flag.default;
|
|
49
|
+
return /*#__PURE__*/_react.default.createElement(_flagGroup.FlagGroup, null, /*#__PURE__*/_react.default.createElement(FlagComponent, {
|
|
50
50
|
onDismissed: onDismissed,
|
|
51
51
|
title: formatMessage(title),
|
|
52
52
|
id: showFlag,
|
|
@@ -13,7 +13,7 @@ var _messages = require("@atlaskit/editor-common/messages");
|
|
|
13
13
|
var _editorToolbar = require("@atlaskit/editor-toolbar");
|
|
14
14
|
var _changes = _interopRequireDefault(require("@atlaskit/icon/core/changes"));
|
|
15
15
|
var _chevronRight = _interopRequireDefault(require("@atlaskit/icon/core/chevron-right"));
|
|
16
|
-
var
|
|
16
|
+
var _fg = require("@atlaskit/platform-feature-flags/fg");
|
|
17
17
|
var _consts = require("./consts");
|
|
18
18
|
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); }
|
|
19
19
|
var BLOCK_MENU_TRANSFORM_SPOTLIGHT_PORTAL_SELECTOR = '[data-test-id="block-menu-transform-spotlight-portal-container"]';
|
|
@@ -55,8 +55,8 @@ var FormatMenuComponent = exports.FormatMenuComponent = function FormatMenuCompo
|
|
|
55
55
|
enableMaxHeight: true,
|
|
56
56
|
onClick: handleClick,
|
|
57
57
|
dropdownTestId: "editor-turn-into-menu",
|
|
58
|
-
testId: (0,
|
|
58
|
+
testId: (0, _fg.fg)('cc_blocks_changeboarding') ? 'turn-into-block-menu-btn' : undefined,
|
|
59
59
|
shouldFitContainer: true,
|
|
60
|
-
shouldIgnoreCloseEvent: (0,
|
|
60
|
+
shouldIgnoreCloseEvent: (0, _fg.fg)('cc_blocks_changeboarding') ? shouldIgnoreBlockMenuTransformSpotlightCloseEvent : undefined
|
|
61
61
|
}, children);
|
|
62
62
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { bindKeymapWithCommand, copyLinkToBlock, keymap } from '@atlaskit/editor-common/keymaps';
|
|
2
2
|
import { expandSelectionToBlockRange } from '@atlaskit/editor-common/selection';
|
|
3
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
3
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
4
4
|
import { FLAG_ID } from '../blockMenuPluginType';
|
|
5
5
|
import { blockMenuPluginKey } from '../pm-plugins/main';
|
|
6
6
|
import { copyLink } from '../ui/utils/copyLink';
|
|
@@ -15,9 +15,10 @@ import { OutsideClickTargetRefContext, withReactEditorViewOuterListeners } from
|
|
|
15
15
|
import { akEditorFloatingOverlapPanelZIndex } from '@atlaskit/editor-shared-styles';
|
|
16
16
|
import { ToolbarMenuContainer } from '@atlaskit/editor-toolbar/toolbar-menu-container';
|
|
17
17
|
import { isExperimentEnabled } from '@atlaskit/platform-feature-experiments/is-experiment-enabled';
|
|
18
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
18
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
19
19
|
import { Box } from '@atlaskit/primitives/compiled';
|
|
20
|
-
import { redo
|
|
20
|
+
import { redo } from '@atlaskit/prosemirror-history/redo';
|
|
21
|
+
import { undo } from '@atlaskit/prosemirror-history/undo';
|
|
21
22
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
22
23
|
import { useBlockMenu } from './block-menu-provider';
|
|
23
24
|
import { BlockMenuRenderer } from './block-menu-renderer/BlockMenuRenderer';
|
|
@@ -7,7 +7,7 @@ import { copyLinkToBlock, formatShortcut } from '@atlaskit/editor-common/keymaps
|
|
|
7
7
|
import { blockMenuMessages as messages } from '@atlaskit/editor-common/messages';
|
|
8
8
|
import { ToolbarDropdownItem, ToolbarKeyboardShortcutHint } from '@atlaskit/editor-toolbar';
|
|
9
9
|
import LinkIcon from '@atlaskit/icon/core/link';
|
|
10
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
10
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
11
11
|
import { FLAG_ID } from '../blockMenuPluginType';
|
|
12
12
|
import { blockMenuPluginKey } from '../pm-plugins/main';
|
|
13
13
|
import { useBlockMenu } from './block-menu-provider';
|
package/dist/es2019/ui/flag.js
CHANGED
|
@@ -2,7 +2,9 @@ import React from 'react';
|
|
|
2
2
|
import { useIntl } from 'react-intl';
|
|
3
3
|
import { useSharedPluginStateWithSelector } from '@atlaskit/editor-common/hooks';
|
|
4
4
|
import { blockMenuMessages as messages } from '@atlaskit/editor-common/messages';
|
|
5
|
-
import AkFlag
|
|
5
|
+
import AkFlag from '@atlaskit/flag/flag';
|
|
6
|
+
import { FlagGroup } from '@atlaskit/flag/flag-group';
|
|
7
|
+
import AutoDismissFlag from '@atlaskit/flag/auto-dismiss-flag';
|
|
6
8
|
import SuccessIcon from '@atlaskit/icon/core/check-circle';
|
|
7
9
|
import { FLAG_ID } from '../blockMenuPluginType';
|
|
8
10
|
import { blockMenuPluginKey } from '../pm-plugins/main';
|
|
@@ -5,7 +5,7 @@ import { blockMenuMessages } from '@atlaskit/editor-common/messages';
|
|
|
5
5
|
import { ToolbarNestedDropdownMenu } from '@atlaskit/editor-toolbar';
|
|
6
6
|
import ChangesIcon from '@atlaskit/icon/core/changes';
|
|
7
7
|
import ChevronRightIcon from '@atlaskit/icon/core/chevron-right';
|
|
8
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
8
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
9
9
|
import { BLOCK_MENU_ITEM_NAME } from './consts';
|
|
10
10
|
const BLOCK_MENU_TRANSFORM_SPOTLIGHT_PORTAL_SELECTOR = '[data-test-id="block-menu-transform-spotlight-portal-container"]';
|
|
11
11
|
const shouldIgnoreBlockMenuTransformSpotlightCloseEvent = event => event.target instanceof Element && event.target.closest(BLOCK_MENU_TRANSFORM_SPOTLIGHT_PORTAL_SELECTOR) !== null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { bindKeymapWithCommand, copyLinkToBlock, keymap } from '@atlaskit/editor-common/keymaps';
|
|
2
2
|
import { expandSelectionToBlockRange } from '@atlaskit/editor-common/selection';
|
|
3
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
3
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
4
4
|
import { FLAG_ID } from '../blockMenuPluginType';
|
|
5
5
|
import { blockMenuPluginKey } from '../pm-plugins/main';
|
|
6
6
|
import { copyLink } from '../ui/utils/copyLink';
|
|
@@ -16,9 +16,10 @@ import { OutsideClickTargetRefContext, withReactEditorViewOuterListeners } from
|
|
|
16
16
|
import { akEditorFloatingOverlapPanelZIndex } from '@atlaskit/editor-shared-styles';
|
|
17
17
|
import { ToolbarMenuContainer } from '@atlaskit/editor-toolbar/toolbar-menu-container';
|
|
18
18
|
import { isExperimentEnabled } from '@atlaskit/platform-feature-experiments/is-experiment-enabled';
|
|
19
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
19
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
20
20
|
import { Box } from '@atlaskit/primitives/compiled';
|
|
21
|
-
import { redo
|
|
21
|
+
import { redo } from '@atlaskit/prosemirror-history/redo';
|
|
22
|
+
import { undo } from '@atlaskit/prosemirror-history/undo';
|
|
22
23
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
23
24
|
import { useBlockMenu } from './block-menu-provider';
|
|
24
25
|
import { BlockMenuRenderer } from './block-menu-renderer/BlockMenuRenderer';
|
package/dist/esm/ui/copy-link.js
CHANGED
|
@@ -7,7 +7,7 @@ import { copyLinkToBlock, formatShortcut } from '@atlaskit/editor-common/keymaps
|
|
|
7
7
|
import { blockMenuMessages as messages } from '@atlaskit/editor-common/messages';
|
|
8
8
|
import { ToolbarDropdownItem, ToolbarKeyboardShortcutHint } from '@atlaskit/editor-toolbar';
|
|
9
9
|
import LinkIcon from '@atlaskit/icon/core/link';
|
|
10
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
10
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
11
11
|
import { FLAG_ID } from '../blockMenuPluginType';
|
|
12
12
|
import { blockMenuPluginKey } from '../pm-plugins/main';
|
|
13
13
|
import { useBlockMenu } from './block-menu-provider';
|
package/dist/esm/ui/flag.js
CHANGED
|
@@ -3,7 +3,9 @@ import React from 'react';
|
|
|
3
3
|
import { useIntl } from 'react-intl';
|
|
4
4
|
import { useSharedPluginStateWithSelector } from '@atlaskit/editor-common/hooks';
|
|
5
5
|
import { blockMenuMessages as messages } from '@atlaskit/editor-common/messages';
|
|
6
|
-
import AkFlag
|
|
6
|
+
import AkFlag from '@atlaskit/flag/flag';
|
|
7
|
+
import { FlagGroup } from '@atlaskit/flag/flag-group';
|
|
8
|
+
import AutoDismissFlag from '@atlaskit/flag/auto-dismiss-flag';
|
|
7
9
|
import SuccessIcon from '@atlaskit/icon/core/check-circle';
|
|
8
10
|
import { FLAG_ID } from '../blockMenuPluginType';
|
|
9
11
|
import { blockMenuPluginKey } from '../pm-plugins/main';
|
|
@@ -5,7 +5,7 @@ import { blockMenuMessages } from '@atlaskit/editor-common/messages';
|
|
|
5
5
|
import { ToolbarNestedDropdownMenu } from '@atlaskit/editor-toolbar';
|
|
6
6
|
import ChangesIcon from '@atlaskit/icon/core/changes';
|
|
7
7
|
import ChevronRightIcon from '@atlaskit/icon/core/chevron-right';
|
|
8
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
8
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
9
9
|
import { BLOCK_MENU_ITEM_NAME } from './consts';
|
|
10
10
|
var BLOCK_MENU_TRANSFORM_SPOTLIGHT_PORTAL_SELECTOR = '[data-test-id="block-menu-transform-spotlight-portal-container"]';
|
|
11
11
|
var shouldIgnoreBlockMenuTransformSpotlightCloseEvent = function shouldIgnoreBlockMenuTransformSpotlightCloseEvent(event) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-block-menu",
|
|
3
|
-
"version": "14.2.
|
|
3
|
+
"version": "14.2.4",
|
|
4
4
|
"description": "BlockMenu plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"@atlaskit/platform-feature-flags": "^2.1.0",
|
|
38
38
|
"@atlaskit/primitives": "^22.4.0",
|
|
39
39
|
"@atlaskit/prosemirror-history": "^1.2.0",
|
|
40
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
40
|
+
"@atlaskit/tmp-editor-statsig": "^160.0.0",
|
|
41
41
|
"@atlaskit/tokens": "^16.8.0",
|
|
42
42
|
"@babel/runtime": "^7.0.0",
|
|
43
43
|
"bind-event-listener": "^3.0.0",
|