@atlaskit/editor-plugin-table 15.2.3 → 15.3.0

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,17 @@
1
1
  # @atlaskit/editor-plugin-table
2
2
 
3
+ ## 15.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`0ec7ab64eb92d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0ec7ab64eb92d) -
8
+ Remove remaining usages of `platform_editor_use_nested_table_pm_nodes` which are safe to remove.
9
+ Additional usages will be replaced with a helper function in followup releases
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 15.2.3
4
16
 
5
17
  ### Patch Changes
@@ -10,7 +10,6 @@ var _keymaps = require("@atlaskit/editor-common/keymaps");
10
10
  var _preset = require("@atlaskit/editor-common/preset");
11
11
  var _commands = require("@atlaskit/editor-prosemirror/commands");
12
12
  var _keymap = require("@atlaskit/editor-prosemirror/keymap");
13
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
14
13
  var _commandsWithAnalytics = require("../pm-plugins/drag-and-drop/commands-with-analytics");
15
14
  var _commands2 = require("./commands");
16
15
  var _columnResize = require("./commands/column-resize");
@@ -42,7 +41,7 @@ function keymapPlugin(getEditorContainerWidth, api, nodeViewPortalProviderAPI, e
42
41
  (0, _keymaps.bindKeymapWithCommand)(
43
42
  // Ignored via go/ees005
44
43
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
45
- _keymaps.toggleTable.common, (0, _platformFeatureFlags.fg)('platform_editor_use_nested_table_pm_nodes') ? (0, _preset.editorCommandToPMCommand)((0, _insert.insertTableWithNestingSupport)({
44
+ _keymaps.toggleTable.common, (0, _preset.editorCommandToPMCommand)((0, _insert.insertTableWithNestingSupport)({
46
45
  isTableScalingEnabled: isTableScalingEnabled,
47
46
  isTableAlignmentEnabled: isTableAlignmentEnabled,
48
47
  isFullWidthModeEnabled: !!isFullWidthEnabled,
@@ -57,7 +56,7 @@ function keymapPlugin(getEditorContainerWidth, api, nodeViewPortalProviderAPI, e
57
56
  inputMethod: _analytics.INPUT_METHOD.SHORTCUT
58
57
  },
59
58
  eventType: _analytics.EVENT_TYPE.TRACK
60
- })) : (0, _insert.createTable)(isTableScalingEnabled, isTableAlignmentEnabled, !!isFullWidthEnabled, editorAnalyticsAPI, isCommentEditor, isChromelessEditor, isTableResizingEnabled), list);
59
+ })), list);
61
60
  (0, _keymaps.bindKeymapWithCommand)(
62
61
  // Ignored via go/ees005
63
62
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
@@ -65,7 +65,7 @@ var TABLE_WIDTH_INFO_TIMEOUT = 10000;
65
65
  * from `@atlaskit/editor-core`.
66
66
  */
67
67
  var tablePlugin = function tablePlugin(_ref) {
68
- var _api$analytics, _options$getEditorFea, _options$getEditorFea2, _api$analytics2;
68
+ var _api$analytics, _options$getEditorFea, _options$getEditorFea2;
69
69
  var options = _ref.config,
70
70
  api = _ref.api;
71
71
  var editorViewRef = {
@@ -145,7 +145,7 @@ var tablePlugin = function tablePlugin(_ref) {
145
145
  insertTable: function insertTable(analyticsPayload) {
146
146
  return function (state, dispatch) {
147
147
  var _options$tableOptions;
148
- if (options !== null && options !== void 0 && (_options$tableOptions = options.tableOptions) !== null && _options$tableOptions !== void 0 && _options$tableOptions.allowNestedTables && (0, _platformFeatureFlags.fg)('platform_editor_use_nested_table_pm_nodes')) {
148
+ if (options !== null && options !== void 0 && (_options$tableOptions = options.tableOptions) !== null && _options$tableOptions !== void 0 && _options$tableOptions.allowNestedTables) {
149
149
  return (0, _preset.editorCommandToPMCommand)((0, _insert.insertTableWithNestingSupport)({
150
150
  isTableScalingEnabled: options === null || options === void 0 ? void 0 : options.isTableScalingEnabled,
151
151
  isTableAlignmentEnabled: options === null || options === void 0 ? void 0 : options.tableOptions.allowTableAlignment,
@@ -182,7 +182,7 @@ var tablePlugin = function tablePlugin(_ref) {
182
182
  }
183
183
  },
184
184
  commands: {
185
- insertTableWithSize: (0, _platformFeatureFlags.fg)('platform_editor_use_nested_table_pm_nodes') ? function (rowsCount, colsCount, inputMethod) {
185
+ insertTableWithSize: function insertTableWithSize(rowsCount, colsCount, inputMethod) {
186
186
  return (0, _insert.insertTableWithNestingSupport)({
187
187
  isTableScalingEnabled: options === null || options === void 0 ? void 0 : options.isTableScalingEnabled,
188
188
  isTableAlignmentEnabled: options === null || options === void 0 ? void 0 : options.tableOptions.allowTableAlignment,
@@ -205,7 +205,7 @@ var tablePlugin = function tablePlugin(_ref) {
205
205
  },
206
206
  eventType: _analytics.EVENT_TYPE.TRACK
207
207
  });
208
- } : (0, _insert.insertTableWithSize)(options === null || options === void 0 ? void 0 : options.fullWidthEnabled, options === null || options === void 0 ? void 0 : options.isTableScalingEnabled, options === null || options === void 0 ? void 0 : options.tableOptions.allowTableAlignment, api === null || api === void 0 || (_api$analytics2 = api.analytics) === null || _api$analytics2 === void 0 ? void 0 : _api$analytics2.actions, options === null || options === void 0 ? void 0 : options.isCommentEditor)
208
+ }
209
209
  },
210
210
  nodes: function nodes() {
211
211
  var _options$tableOptions2, _options$getEditorFea3;
@@ -538,7 +538,7 @@ var tablePlugin = function tablePlugin(_ref) {
538
538
  var tableNode = (0, _create.createTableWithWidth)(tableNodeProps)(state.schema);
539
539
  var tr = state.tr;
540
540
  // If the cursor is inside a table
541
- if ((0, _utils.hasParentNodeOfType)(state.schema.nodes.table)(state.selection) && options !== null && options !== void 0 && (_options$tableOptions6 = options.tableOptions) !== null && _options$tableOptions6 !== void 0 && _options$tableOptions6.allowNestedTables && (0, _platformFeatureFlags.fg)('platform_editor_use_nested_table_pm_nodes')) {
541
+ if ((0, _utils.hasParentNodeOfType)(state.schema.nodes.table)(state.selection) && options !== null && options !== void 0 && (_options$tableOptions6 = options.tableOptions) !== null && _options$tableOptions6 !== void 0 && _options$tableOptions6.allowNestedTables) {
542
542
  // If the experiment is disabled, or we're trying to nest deeper than one level, we insert the table after the top table
543
543
  if ((0, _experiments.editorExperiment)('nested-tables-in-tables', false, {
544
544
  exposure: true
@@ -3,13 +3,12 @@ import { addColumnAfter, addColumnAfterVO, addColumnBefore, addColumnBeforeVO, a
3
3
  import { editorCommandToPMCommand } from '@atlaskit/editor-common/preset';
4
4
  import { chainCommands } from '@atlaskit/editor-prosemirror/commands';
5
5
  import { keymap } from '@atlaskit/editor-prosemirror/keymap';
6
- import { fg } from '@atlaskit/platform-feature-flags';
7
6
  import { moveSourceWithAnalyticsViaShortcut } from '../pm-plugins/drag-and-drop/commands-with-analytics';
8
7
  import { goToNextCell, moveCursorBackward, setFocusToCellMenu } from './commands';
9
8
  import { activateNextResizeArea, initiateKeyboardColumnResizing, stopKeyboardColumnResizing } from './commands/column-resize';
10
9
  import { addRowAroundSelection, changeColumnWidthByStepWithAnalytics, deleteSelectedRowsOrColumnsWithAnalyticsViaShortcut, deleteTableIfSelectedWithAnalytics, emptyMultipleCellsWithAnalytics } from './commands/commands-with-analytics';
11
10
  import { goToNextCellVertical } from './commands/go-to-next-cell';
12
- import { addColumnAfter as addColumnAfterCommand, addColumnBefore as addColumnBeforeCommand, createTable, insertTableWithNestingSupport } from './commands/insert';
11
+ import { addColumnAfter as addColumnAfterCommand, addColumnBefore as addColumnBeforeCommand, insertTableWithNestingSupport } from './commands/insert';
13
12
  export function keymapPlugin(getEditorContainerWidth, api, nodeViewPortalProviderAPI, editorAnalyticsAPI, dragAndDropEnabled, isTableScalingEnabled = false, isTableAlignmentEnabled = false, isFullWidthEnabled, pluginInjectionApi, getIntl, isTableFixedColumnWidthsOptionEnabled = false, shouldUseIncreasedScalingPercent, isCommentEditor, isChromelessEditor, isTableResizingEnabled) {
14
13
  var _pluginInjectionApi$a;
15
14
  const list = {};
@@ -25,7 +24,7 @@ export function keymapPlugin(getEditorContainerWidth, api, nodeViewPortalProvide
25
24
  bindKeymapWithCommand(
26
25
  // Ignored via go/ees005
27
26
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
28
- toggleTable.common, fg('platform_editor_use_nested_table_pm_nodes') ? editorCommandToPMCommand(insertTableWithNestingSupport({
27
+ toggleTable.common, editorCommandToPMCommand(insertTableWithNestingSupport({
29
28
  isTableScalingEnabled,
30
29
  isTableAlignmentEnabled,
31
30
  isFullWidthModeEnabled: !!isFullWidthEnabled,
@@ -40,7 +39,7 @@ export function keymapPlugin(getEditorContainerWidth, api, nodeViewPortalProvide
40
39
  inputMethod: INPUT_METHOD.SHORTCUT
41
40
  },
42
41
  eventType: EVENT_TYPE.TRACK
43
- })) : createTable(isTableScalingEnabled, isTableAlignmentEnabled, !!isFullWidthEnabled, editorAnalyticsAPI, isCommentEditor, isChromelessEditor, isTableResizingEnabled), list);
42
+ })), list);
44
43
  bindKeymapWithCommand(
45
44
  // Ignored via go/ees005
46
45
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
@@ -16,7 +16,7 @@ import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
16
16
  import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
17
17
  import { tableNodeSpecWithFixedToDOM } from './nodeviews/toDOM';
18
18
  import { createPlugin as createTableAnalyticsPlugin } from './pm-plugins/analytics/plugin';
19
- import { insertTableWithNestingSupport, insertTableWithSize } from './pm-plugins/commands/insert';
19
+ import { insertTableWithNestingSupport } from './pm-plugins/commands/insert';
20
20
  import { pluginConfig } from './pm-plugins/create-plugin-config';
21
21
  import { createPlugin as createDecorationsPlugin } from './pm-plugins/decorations/plugin';
22
22
  import { createPlugin as createDragAndDropPlugin } from './pm-plugins/drag-and-drop/plugin';
@@ -54,7 +54,7 @@ const tablePlugin = ({
54
54
  config: options,
55
55
  api
56
56
  }) => {
57
- var _api$analytics, _options$getEditorFea, _options$getEditorFea2, _api$analytics2;
57
+ var _api$analytics, _options$getEditorFea, _options$getEditorFea2;
58
58
  const editorViewRef = {
59
59
  current: null
60
60
  };
@@ -131,7 +131,7 @@ const tablePlugin = ({
131
131
  actions: {
132
132
  insertTable: analyticsPayload => (state, dispatch) => {
133
133
  var _options$tableOptions;
134
- if (options !== null && options !== void 0 && (_options$tableOptions = options.tableOptions) !== null && _options$tableOptions !== void 0 && _options$tableOptions.allowNestedTables && fg('platform_editor_use_nested_table_pm_nodes')) {
134
+ if (options !== null && options !== void 0 && (_options$tableOptions = options.tableOptions) !== null && _options$tableOptions !== void 0 && _options$tableOptions.allowNestedTables) {
135
135
  return editorCommandToPMCommand(insertTableWithNestingSupport({
136
136
  isTableScalingEnabled: options === null || options === void 0 ? void 0 : options.isTableScalingEnabled,
137
137
  isTableAlignmentEnabled: options === null || options === void 0 ? void 0 : options.tableOptions.allowTableAlignment,
@@ -169,7 +169,7 @@ const tablePlugin = ({
169
169
  }
170
170
  },
171
171
  commands: {
172
- insertTableWithSize: fg('platform_editor_use_nested_table_pm_nodes') ? (rowsCount, colsCount, inputMethod) => insertTableWithNestingSupport({
172
+ insertTableWithSize: (rowsCount, colsCount, inputMethod) => insertTableWithNestingSupport({
173
173
  isTableScalingEnabled: options === null || options === void 0 ? void 0 : options.isTableScalingEnabled,
174
174
  isTableAlignmentEnabled: options === null || options === void 0 ? void 0 : options.tableOptions.allowTableAlignment,
175
175
  isFullWidthModeEnabled: options === null || options === void 0 ? void 0 : options.fullWidthEnabled,
@@ -190,7 +190,7 @@ const tablePlugin = ({
190
190
  totalColumnCount: colsCount
191
191
  },
192
192
  eventType: EVENT_TYPE.TRACK
193
- }) : insertTableWithSize(options === null || options === void 0 ? void 0 : options.fullWidthEnabled, options === null || options === void 0 ? void 0 : options.isTableScalingEnabled, options === null || options === void 0 ? void 0 : options.tableOptions.allowTableAlignment, api === null || api === void 0 ? void 0 : (_api$analytics2 = api.analytics) === null || _api$analytics2 === void 0 ? void 0 : _api$analytics2.actions, options === null || options === void 0 ? void 0 : options.isCommentEditor)
193
+ })
194
194
  },
195
195
  nodes() {
196
196
  var _options$tableOptions2, _options$getEditorFea3;
@@ -527,7 +527,7 @@ const tablePlugin = ({
527
527
  tr
528
528
  } = state;
529
529
  // If the cursor is inside a table
530
- if (hasParentNodeOfType(state.schema.nodes.table)(state.selection) && options !== null && options !== void 0 && (_options$tableOptions6 = options.tableOptions) !== null && _options$tableOptions6 !== void 0 && _options$tableOptions6.allowNestedTables && fg('platform_editor_use_nested_table_pm_nodes')) {
530
+ if (hasParentNodeOfType(state.schema.nodes.table)(state.selection) && options !== null && options !== void 0 && (_options$tableOptions6 = options.tableOptions) !== null && _options$tableOptions6 !== void 0 && _options$tableOptions6.allowNestedTables) {
531
531
  // If the experiment is disabled, or we're trying to nest deeper than one level, we insert the table after the top table
532
532
  if (editorExperiment('nested-tables-in-tables', false, {
533
533
  exposure: true
@@ -3,13 +3,12 @@ import { addColumnAfter, addColumnAfterVO, addColumnBefore, addColumnBeforeVO, a
3
3
  import { editorCommandToPMCommand } from '@atlaskit/editor-common/preset';
4
4
  import { chainCommands } from '@atlaskit/editor-prosemirror/commands';
5
5
  import { keymap } from '@atlaskit/editor-prosemirror/keymap';
6
- import { fg } from '@atlaskit/platform-feature-flags';
7
6
  import { moveSourceWithAnalyticsViaShortcut } from '../pm-plugins/drag-and-drop/commands-with-analytics';
8
7
  import { goToNextCell, moveCursorBackward, setFocusToCellMenu } from './commands';
9
8
  import { activateNextResizeArea, initiateKeyboardColumnResizing, stopKeyboardColumnResizing } from './commands/column-resize';
10
9
  import { addRowAroundSelection, changeColumnWidthByStepWithAnalytics, deleteSelectedRowsOrColumnsWithAnalyticsViaShortcut, deleteTableIfSelectedWithAnalytics, emptyMultipleCellsWithAnalytics } from './commands/commands-with-analytics';
11
10
  import { goToNextCellVertical } from './commands/go-to-next-cell';
12
- import { addColumnAfter as addColumnAfterCommand, addColumnBefore as addColumnBeforeCommand, createTable, insertTableWithNestingSupport } from './commands/insert';
11
+ import { addColumnAfter as addColumnAfterCommand, addColumnBefore as addColumnBeforeCommand, insertTableWithNestingSupport } from './commands/insert';
13
12
  export function keymapPlugin(getEditorContainerWidth, api, nodeViewPortalProviderAPI, editorAnalyticsAPI, dragAndDropEnabled) {
14
13
  var _pluginInjectionApi$a;
15
14
  var isTableScalingEnabled = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : false;
@@ -35,7 +34,7 @@ export function keymapPlugin(getEditorContainerWidth, api, nodeViewPortalProvide
35
34
  bindKeymapWithCommand(
36
35
  // Ignored via go/ees005
37
36
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
38
- toggleTable.common, fg('platform_editor_use_nested_table_pm_nodes') ? editorCommandToPMCommand(insertTableWithNestingSupport({
37
+ toggleTable.common, editorCommandToPMCommand(insertTableWithNestingSupport({
39
38
  isTableScalingEnabled: isTableScalingEnabled,
40
39
  isTableAlignmentEnabled: isTableAlignmentEnabled,
41
40
  isFullWidthModeEnabled: !!isFullWidthEnabled,
@@ -50,7 +49,7 @@ export function keymapPlugin(getEditorContainerWidth, api, nodeViewPortalProvide
50
49
  inputMethod: INPUT_METHOD.SHORTCUT
51
50
  },
52
51
  eventType: EVENT_TYPE.TRACK
53
- })) : createTable(isTableScalingEnabled, isTableAlignmentEnabled, !!isFullWidthEnabled, editorAnalyticsAPI, isCommentEditor, isChromelessEditor, isTableResizingEnabled), list);
52
+ })), list);
54
53
  bindKeymapWithCommand(
55
54
  // Ignored via go/ees005
56
55
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
@@ -19,7 +19,7 @@ import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
19
19
  import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
20
20
  import { tableNodeSpecWithFixedToDOM } from './nodeviews/toDOM';
21
21
  import { createPlugin as createTableAnalyticsPlugin } from './pm-plugins/analytics/plugin';
22
- import { insertTableWithNestingSupport, insertTableWithSize } from './pm-plugins/commands/insert';
22
+ import { insertTableWithNestingSupport } from './pm-plugins/commands/insert';
23
23
  import { pluginConfig } from './pm-plugins/create-plugin-config';
24
24
  import { createPlugin as createDecorationsPlugin } from './pm-plugins/decorations/plugin';
25
25
  import { createPlugin as createDragAndDropPlugin } from './pm-plugins/drag-and-drop/plugin';
@@ -56,7 +56,7 @@ var TABLE_WIDTH_INFO_TIMEOUT = 10000;
56
56
  * from `@atlaskit/editor-core`.
57
57
  */
58
58
  var tablePlugin = function tablePlugin(_ref) {
59
- var _api$analytics, _options$getEditorFea, _options$getEditorFea2, _api$analytics2;
59
+ var _api$analytics, _options$getEditorFea, _options$getEditorFea2;
60
60
  var options = _ref.config,
61
61
  api = _ref.api;
62
62
  var editorViewRef = {
@@ -136,7 +136,7 @@ var tablePlugin = function tablePlugin(_ref) {
136
136
  insertTable: function insertTable(analyticsPayload) {
137
137
  return function (state, dispatch) {
138
138
  var _options$tableOptions;
139
- if (options !== null && options !== void 0 && (_options$tableOptions = options.tableOptions) !== null && _options$tableOptions !== void 0 && _options$tableOptions.allowNestedTables && fg('platform_editor_use_nested_table_pm_nodes')) {
139
+ if (options !== null && options !== void 0 && (_options$tableOptions = options.tableOptions) !== null && _options$tableOptions !== void 0 && _options$tableOptions.allowNestedTables) {
140
140
  return editorCommandToPMCommand(insertTableWithNestingSupport({
141
141
  isTableScalingEnabled: options === null || options === void 0 ? void 0 : options.isTableScalingEnabled,
142
142
  isTableAlignmentEnabled: options === null || options === void 0 ? void 0 : options.tableOptions.allowTableAlignment,
@@ -173,7 +173,7 @@ var tablePlugin = function tablePlugin(_ref) {
173
173
  }
174
174
  },
175
175
  commands: {
176
- insertTableWithSize: fg('platform_editor_use_nested_table_pm_nodes') ? function (rowsCount, colsCount, inputMethod) {
176
+ insertTableWithSize: function insertTableWithSize(rowsCount, colsCount, inputMethod) {
177
177
  return insertTableWithNestingSupport({
178
178
  isTableScalingEnabled: options === null || options === void 0 ? void 0 : options.isTableScalingEnabled,
179
179
  isTableAlignmentEnabled: options === null || options === void 0 ? void 0 : options.tableOptions.allowTableAlignment,
@@ -196,7 +196,7 @@ var tablePlugin = function tablePlugin(_ref) {
196
196
  },
197
197
  eventType: EVENT_TYPE.TRACK
198
198
  });
199
- } : insertTableWithSize(options === null || options === void 0 ? void 0 : options.fullWidthEnabled, options === null || options === void 0 ? void 0 : options.isTableScalingEnabled, options === null || options === void 0 ? void 0 : options.tableOptions.allowTableAlignment, api === null || api === void 0 || (_api$analytics2 = api.analytics) === null || _api$analytics2 === void 0 ? void 0 : _api$analytics2.actions, options === null || options === void 0 ? void 0 : options.isCommentEditor)
199
+ }
200
200
  },
201
201
  nodes: function nodes() {
202
202
  var _options$tableOptions2, _options$getEditorFea3;
@@ -529,7 +529,7 @@ var tablePlugin = function tablePlugin(_ref) {
529
529
  var tableNode = createTableWithWidth(tableNodeProps)(state.schema);
530
530
  var tr = state.tr;
531
531
  // If the cursor is inside a table
532
- if (hasParentNodeOfType(state.schema.nodes.table)(state.selection) && options !== null && options !== void 0 && (_options$tableOptions6 = options.tableOptions) !== null && _options$tableOptions6 !== void 0 && _options$tableOptions6.allowNestedTables && fg('platform_editor_use_nested_table_pm_nodes')) {
532
+ if (hasParentNodeOfType(state.schema.nodes.table)(state.selection) && options !== null && options !== void 0 && (_options$tableOptions6 = options.tableOptions) !== null && _options$tableOptions6 !== void 0 && _options$tableOptions6.allowNestedTables) {
533
533
  // If the experiment is disabled, or we're trying to nest deeper than one level, we insert the table after the top table
534
534
  if (editorExperiment('nested-tables-in-tables', false, {
535
535
  exposure: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-table",
3
- "version": "15.2.3",
3
+ "version": "15.3.0",
4
4
  "description": "Table plugin for the @atlaskit/editor",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -59,7 +59,7 @@
59
59
  "@atlaskit/primitives": "^16.0.0",
60
60
  "@atlaskit/react-ufo": "^4.12.0",
61
61
  "@atlaskit/theme": "^21.0.0",
62
- "@atlaskit/tmp-editor-statsig": "^13.17.0",
62
+ "@atlaskit/tmp-editor-statsig": "^13.18.0",
63
63
  "@atlaskit/toggle": "^15.1.0",
64
64
  "@atlaskit/tokens": "^7.0.0",
65
65
  "@atlaskit/tooltip": "^20.6.0",