@atlaskit/editor-plugin-paste 3.2.0 → 3.2.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-plugin-paste
2
2
 
3
+ ## 3.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#139698](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/139698)
8
+ [`cf8ea53ed0264`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cf8ea53ed0264) -
9
+ Clean-up nested expand feature gate
10
+ - Updated dependencies
11
+
3
12
  ## 3.2.0
4
13
 
5
14
  ### Minor Changes
@@ -358,12 +358,12 @@ var handlePasteNonNestableBlockNodesIntoListWithAnalytics = exports.handlePasteN
358
358
  }))((0, _handlers.handlePasteNonNestableBlockNodesIntoList)(slice));
359
359
  };
360
360
  };
361
- var handleExpandWithAnalytics = exports.handleExpandWithAnalytics = function handleExpandWithAnalytics(editorAnalyticsAPI, isNestingExpandsSupported) {
361
+ var handleExpandWithAnalytics = exports.handleExpandWithAnalytics = function handleExpandWithAnalytics(editorAnalyticsAPI) {
362
362
  return function (view, event, slice) {
363
363
  return injectAnalyticsPayloadBeforeCommand(editorAnalyticsAPI)(createPasteAnalyticsPayloadBySelection(event, slice, {
364
364
  type: _analytics.PasteTypes.richText,
365
365
  pasteSplitList: true
366
- }))((0, _handlers.handleExpandPaste)(slice, isNestingExpandsSupported));
366
+ }))((0, _handlers.handleExpandPaste)(slice));
367
367
  };
368
368
  };
369
369
  var handleNestedTablePasteWithAnalytics = exports.handleNestedTablePasteWithAnalytics = function handleNestedTablePasteWithAnalytics(editorAnalyticsAPI, isNestingTablesSupported) {
@@ -23,6 +23,7 @@ var _model = require("@atlaskit/editor-prosemirror/model");
23
23
  var _utils2 = require("@atlaskit/editor-prosemirror/utils");
24
24
  var _utils3 = require("@atlaskit/editor-tables/utils");
25
25
  var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
26
+ var _experiments = require("@atlaskit/tmp-editor-statsig/experiments");
26
27
  var _actions = require("../editor-actions/actions");
27
28
  var _commands = require("../editor-commands/commands");
28
29
  var _media = require("../pm-plugins/media");
@@ -415,7 +416,7 @@ function createPlugin(schema, dispatchAnalyticsEvent, dispatch, featureFlags, pl
415
416
 
416
417
  // finally, handle rich-text copy-paste
417
418
  if (isRichText || isNestedMarkdownTable) {
418
- var _pluginInjectionApi$c2, _pluginInjectionApi$e2, _pluginInjectionApi$f, _pluginInjectionApi$l;
419
+ var _pluginInjectionApi$c2, _pluginInjectionApi$e2, _pluginInjectionApi$l;
419
420
  // linkify the text where possible
420
421
  slice = (0, _utils.linkifyContent)(state.schema)(slice);
421
422
  if ((0, _analytics2.handlePasteLinkOnSelectedTextWithAnalytics)(editorAnalyticsAPI)(view, event, slice, _analytics.PasteTypes.richText)(state, dispatch)) {
@@ -461,8 +462,7 @@ function createPlugin(schema, dispatchAnalyticsEvent, dispatch, featureFlags, pl
461
462
  });
462
463
  slice = sliceCopy;
463
464
  }
464
- var isNestingExpandsSupported = (pluginInjectionApi === null || pluginInjectionApi === void 0 || (_pluginInjectionApi$f = pluginInjectionApi.featureFlags) === null || _pluginInjectionApi$f === void 0 || (_pluginInjectionApi$f = _pluginInjectionApi$f.sharedState.currentState()) === null || _pluginInjectionApi$f === void 0 ? void 0 : _pluginInjectionApi$f.nestedExpandInExpandEx) || (0, _platformFeatureFlags.fg)('platform_editor_nest_nested_expand_in_expand_jira');
465
- if ((0, _analytics2.handleExpandWithAnalytics)(editorAnalyticsAPI, isNestingExpandsSupported)(view, event, slice)(state, dispatch)) {
465
+ if ((0, _analytics2.handleExpandWithAnalytics)(editorAnalyticsAPI)(view, event, slice)(state, dispatch)) {
466
466
  return true;
467
467
  }
468
468
  if (!(0, _coreUtils.insideTable)(state)) {
@@ -510,7 +510,9 @@ function createPlugin(schema, dispatchAnalyticsEvent, dispatch, featureFlags, pl
510
510
  if (slice.content.childCount && slice.content.lastChild.type === schema.nodes.codeBlock) {
511
511
  slice = new _model.Slice(slice.content, 0, 0);
512
512
  }
513
- slice = (0, _transforms.transformSingleColumnLayout)(slice, schema);
513
+ if (!(0, _experiments.editorExperiment)('single_column_layouts', true)) {
514
+ slice = (0, _transforms.transformSingleColumnLayout)(slice, schema);
515
+ }
514
516
  if ((0, _platformFeatureFlags.fg)('platform_editor_macroid_reset_for_ext_on_paste')) {
515
517
  slice = (0, _transforms.transformSliceToRemoveMacroId)(slice, schema);
516
518
  }
@@ -744,9 +744,9 @@ function handleNestedTablePaste(slice, isNestingTablesSupported) {
744
744
  return false;
745
745
  };
746
746
  }
747
- function handleExpandPaste(slice, isNestingExpandsSupported) {
747
+ function handleExpandPaste(slice) {
748
748
  return function (state, dispatch) {
749
- var isInsideNestableExpand = isNestingExpandsSupported && !!insideExpand(state);
749
+ var isInsideNestableExpand = !!insideExpand(state);
750
750
 
751
751
  // Do not handle expand if it's not being pasted into a table or expand
752
752
  // OR if it's nested within another node when being pasted into a table/expand
@@ -325,10 +325,10 @@ export const handlePasteNonNestableBlockNodesIntoListWithAnalytics = editorAnaly
325
325
  type: PasteTypes.richText,
326
326
  pasteSplitList: true
327
327
  }))(handlePasteNonNestableBlockNodesIntoList(slice));
328
- export const handleExpandWithAnalytics = (editorAnalyticsAPI, isNestingExpandsSupported) => (view, event, slice) => injectAnalyticsPayloadBeforeCommand(editorAnalyticsAPI)(createPasteAnalyticsPayloadBySelection(event, slice, {
328
+ export const handleExpandWithAnalytics = editorAnalyticsAPI => (view, event, slice) => injectAnalyticsPayloadBeforeCommand(editorAnalyticsAPI)(createPasteAnalyticsPayloadBySelection(event, slice, {
329
329
  type: PasteTypes.richText,
330
330
  pasteSplitList: true
331
- }))(handleExpandPaste(slice, isNestingExpandsSupported));
331
+ }))(handleExpandPaste(slice));
332
332
  export const handleNestedTablePasteWithAnalytics = (editorAnalyticsAPI, isNestingTablesSupported) => (view, event, slice) => injectAnalyticsPayloadBeforeCommand(editorAnalyticsAPI)(createPasteAnalyticsPayloadBySelection(event, slice, {
333
333
  type: PasteTypes.richText,
334
334
  pasteSplitList: true
@@ -13,6 +13,7 @@ import { Fragment, Slice } from '@atlaskit/editor-prosemirror/model';
13
13
  import { contains, hasParentNodeOfType } from '@atlaskit/editor-prosemirror/utils';
14
14
  import { handlePaste as handlePasteTable } from '@atlaskit/editor-tables/utils';
15
15
  import { fg } from '@atlaskit/platform-feature-flags';
16
+ import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
16
17
  import { PastePluginActionTypes } from '../editor-actions/actions';
17
18
  import { splitParagraphs, upgradeTextToLists } from '../editor-commands/commands';
18
19
  import { transformSliceForMedia, transformSliceToCorrectMediaWrapper, transformSliceToMediaSingleWithNewExperience, unwrapNestedMediaElements } from '../pm-plugins/media';
@@ -391,7 +392,7 @@ export function createPlugin(schema, dispatchAnalyticsEvent, dispatch, featureFl
391
392
 
392
393
  // finally, handle rich-text copy-paste
393
394
  if (isRichText || isNestedMarkdownTable) {
394
- var _pluginInjectionApi$c3, _pluginInjectionApi$c4, _pluginInjectionApi$e3, _pluginInjectionApi$e4, _pluginInjectionApi$f, _pluginInjectionApi$f2, _pluginInjectionApi$l;
395
+ var _pluginInjectionApi$c3, _pluginInjectionApi$c4, _pluginInjectionApi$e3, _pluginInjectionApi$e4, _pluginInjectionApi$l;
395
396
  // linkify the text where possible
396
397
  slice = linkifyContent(state.schema)(slice);
397
398
  if (handlePasteLinkOnSelectedTextWithAnalytics(editorAnalyticsAPI)(view, event, slice, PasteTypes.richText)(state, dispatch)) {
@@ -435,8 +436,7 @@ export function createPlugin(schema, dispatchAnalyticsEvent, dispatch, featureFl
435
436
  });
436
437
  slice = sliceCopy;
437
438
  }
438
- const isNestingExpandsSupported = (pluginInjectionApi === null || pluginInjectionApi === void 0 ? void 0 : (_pluginInjectionApi$f = pluginInjectionApi.featureFlags) === null || _pluginInjectionApi$f === void 0 ? void 0 : (_pluginInjectionApi$f2 = _pluginInjectionApi$f.sharedState.currentState()) === null || _pluginInjectionApi$f2 === void 0 ? void 0 : _pluginInjectionApi$f2.nestedExpandInExpandEx) || fg('platform_editor_nest_nested_expand_in_expand_jira');
439
- if (handleExpandWithAnalytics(editorAnalyticsAPI, isNestingExpandsSupported)(view, event, slice)(state, dispatch)) {
439
+ if (handleExpandWithAnalytics(editorAnalyticsAPI)(view, event, slice)(state, dispatch)) {
440
440
  return true;
441
441
  }
442
442
  if (!insideTable(state)) {
@@ -484,7 +484,9 @@ export function createPlugin(schema, dispatchAnalyticsEvent, dispatch, featureFl
484
484
  if (slice.content.childCount && slice.content.lastChild.type === schema.nodes.codeBlock) {
485
485
  slice = new Slice(slice.content, 0, 0);
486
486
  }
487
- slice = transformSingleColumnLayout(slice, schema);
487
+ if (!editorExperiment('single_column_layouts', true)) {
488
+ slice = transformSingleColumnLayout(slice, schema);
489
+ }
488
490
  if (fg('platform_editor_macroid_reset_for_ext_on_paste')) {
489
491
  slice = transformSliceToRemoveMacroId(slice, schema);
490
492
  }
@@ -733,9 +733,9 @@ export function handleNestedTablePaste(slice, isNestingTablesSupported) {
733
733
  return false;
734
734
  };
735
735
  }
736
- export function handleExpandPaste(slice, isNestingExpandsSupported) {
736
+ export function handleExpandPaste(slice) {
737
737
  return (state, dispatch) => {
738
- const isInsideNestableExpand = isNestingExpandsSupported && !!insideExpand(state);
738
+ const isInsideNestableExpand = !!insideExpand(state);
739
739
 
740
740
  // Do not handle expand if it's not being pasted into a table or expand
741
741
  // OR if it's nested within another node when being pasted into a table/expand
@@ -346,12 +346,12 @@ export var handlePasteNonNestableBlockNodesIntoListWithAnalytics = function hand
346
346
  }))(handlePasteNonNestableBlockNodesIntoList(slice));
347
347
  };
348
348
  };
349
- export var handleExpandWithAnalytics = function handleExpandWithAnalytics(editorAnalyticsAPI, isNestingExpandsSupported) {
349
+ export var handleExpandWithAnalytics = function handleExpandWithAnalytics(editorAnalyticsAPI) {
350
350
  return function (view, event, slice) {
351
351
  return injectAnalyticsPayloadBeforeCommand(editorAnalyticsAPI)(createPasteAnalyticsPayloadBySelection(event, slice, {
352
352
  type: PasteTypes.richText,
353
353
  pasteSplitList: true
354
- }))(handleExpandPaste(slice, isNestingExpandsSupported));
354
+ }))(handleExpandPaste(slice));
355
355
  };
356
356
  };
357
357
  export var handleNestedTablePasteWithAnalytics = function handleNestedTablePasteWithAnalytics(editorAnalyticsAPI, isNestingTablesSupported) {
@@ -15,6 +15,7 @@ import { Fragment, Slice } from '@atlaskit/editor-prosemirror/model';
15
15
  import { contains, hasParentNodeOfType } from '@atlaskit/editor-prosemirror/utils';
16
16
  import { handlePaste as handlePasteTable } from '@atlaskit/editor-tables/utils';
17
17
  import { fg } from '@atlaskit/platform-feature-flags';
18
+ import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
18
19
  import { PastePluginActionTypes } from '../editor-actions/actions';
19
20
  import { splitParagraphs, upgradeTextToLists } from '../editor-commands/commands';
20
21
  import { transformSliceForMedia, transformSliceToCorrectMediaWrapper, transformSliceToMediaSingleWithNewExperience, unwrapNestedMediaElements } from '../pm-plugins/media';
@@ -407,7 +408,7 @@ export function createPlugin(schema, dispatchAnalyticsEvent, dispatch, featureFl
407
408
 
408
409
  // finally, handle rich-text copy-paste
409
410
  if (isRichText || isNestedMarkdownTable) {
410
- var _pluginInjectionApi$c2, _pluginInjectionApi$e2, _pluginInjectionApi$f, _pluginInjectionApi$l;
411
+ var _pluginInjectionApi$c2, _pluginInjectionApi$e2, _pluginInjectionApi$l;
411
412
  // linkify the text where possible
412
413
  slice = linkifyContent(state.schema)(slice);
413
414
  if (handlePasteLinkOnSelectedTextWithAnalytics(editorAnalyticsAPI)(view, event, slice, PasteTypes.richText)(state, dispatch)) {
@@ -453,8 +454,7 @@ export function createPlugin(schema, dispatchAnalyticsEvent, dispatch, featureFl
453
454
  });
454
455
  slice = sliceCopy;
455
456
  }
456
- var isNestingExpandsSupported = (pluginInjectionApi === null || pluginInjectionApi === void 0 || (_pluginInjectionApi$f = pluginInjectionApi.featureFlags) === null || _pluginInjectionApi$f === void 0 || (_pluginInjectionApi$f = _pluginInjectionApi$f.sharedState.currentState()) === null || _pluginInjectionApi$f === void 0 ? void 0 : _pluginInjectionApi$f.nestedExpandInExpandEx) || fg('platform_editor_nest_nested_expand_in_expand_jira');
457
- if (handleExpandWithAnalytics(editorAnalyticsAPI, isNestingExpandsSupported)(view, event, slice)(state, dispatch)) {
457
+ if (handleExpandWithAnalytics(editorAnalyticsAPI)(view, event, slice)(state, dispatch)) {
458
458
  return true;
459
459
  }
460
460
  if (!insideTable(state)) {
@@ -502,7 +502,9 @@ export function createPlugin(schema, dispatchAnalyticsEvent, dispatch, featureFl
502
502
  if (slice.content.childCount && slice.content.lastChild.type === schema.nodes.codeBlock) {
503
503
  slice = new Slice(slice.content, 0, 0);
504
504
  }
505
- slice = transformSingleColumnLayout(slice, schema);
505
+ if (!editorExperiment('single_column_layouts', true)) {
506
+ slice = transformSingleColumnLayout(slice, schema);
507
+ }
506
508
  if (fg('platform_editor_macroid_reset_for_ext_on_paste')) {
507
509
  slice = transformSliceToRemoveMacroId(slice, schema);
508
510
  }
@@ -718,9 +718,9 @@ export function handleNestedTablePaste(slice, isNestingTablesSupported) {
718
718
  return false;
719
719
  };
720
720
  }
721
- export function handleExpandPaste(slice, isNestingExpandsSupported) {
721
+ export function handleExpandPaste(slice) {
722
722
  return function (state, dispatch) {
723
- var isInsideNestableExpand = isNestingExpandsSupported && !!insideExpand(state);
723
+ var isInsideNestableExpand = !!insideExpand(state);
724
724
 
725
725
  // Do not handle expand if it's not being pasted into a table or expand
726
726
  // OR if it's nested within another node when being pasted into a table/expand
@@ -31,7 +31,7 @@ export declare const handleMarkdownWithAnalytics: (view: EditorView, event: Clip
31
31
  export declare const handleRichTextWithAnalytics: (view: EditorView, event: ClipboardEvent, slice: Slice, pluginInjectionApi: ExtractInjectionAPI<PastePlugin> | undefined) => Command;
32
32
  export declare const handlePastePanelOrDecisionIntoListWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (view: EditorView, event: ClipboardEvent, slice: Slice, findRootParentListNode: FindRootParentListNode | undefined) => Command;
33
33
  export declare const handlePasteNonNestableBlockNodesIntoListWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (view: EditorView, event: ClipboardEvent, slice: Slice) => Command;
34
- export declare const handleExpandWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined, isNestingExpandsSupported: boolean) => (view: EditorView, event: ClipboardEvent, slice: Slice) => Command;
34
+ export declare const handleExpandWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (view: EditorView, event: ClipboardEvent, slice: Slice) => Command;
35
35
  export declare const handleNestedTablePasteWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined, isNestingTablesSupported: boolean) => (view: EditorView, event: ClipboardEvent, slice: Slice) => Command;
36
36
  export declare const handleSelectedTableWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (view: EditorView, event: ClipboardEvent, slice: Slice) => Command;
37
37
  export declare const handlePasteLinkOnSelectedTextWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (view: EditorView, event: ClipboardEvent, slice: Slice, type: PasteType) => Command;
@@ -21,7 +21,7 @@ export declare function handleCodeBlock(text: string): Command;
21
21
  export declare function handleMediaSingle(inputMethod: InputMethodInsertMedia, insertMediaAsMediaSingle: InsertMediaAsMediaSingle | undefined): (slice: Slice) => Command;
22
22
  export declare function handleTableContentPasteInBodiedExtension(slice: Slice): Command;
23
23
  export declare function handleNestedTablePaste(slice: Slice, isNestingTablesSupported?: boolean): Command;
24
- export declare function handleExpandPaste(slice: Slice, isNestingExpandsSupported?: boolean): Command;
24
+ export declare function handleExpandPaste(slice: Slice): Command;
25
25
  export declare function handleMarkdown(markdownSlice: Slice, queueCardsFromChangedTr: QueueCardsFromTransactionAction | undefined, from?: number, to?: number): Command;
26
26
  export declare function handleParagraphBlockMarks(state: EditorState, slice: Slice): Slice;
27
27
  /**
@@ -31,7 +31,7 @@ export declare const handleMarkdownWithAnalytics: (view: EditorView, event: Clip
31
31
  export declare const handleRichTextWithAnalytics: (view: EditorView, event: ClipboardEvent, slice: Slice, pluginInjectionApi: ExtractInjectionAPI<PastePlugin> | undefined) => Command;
32
32
  export declare const handlePastePanelOrDecisionIntoListWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (view: EditorView, event: ClipboardEvent, slice: Slice, findRootParentListNode: FindRootParentListNode | undefined) => Command;
33
33
  export declare const handlePasteNonNestableBlockNodesIntoListWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (view: EditorView, event: ClipboardEvent, slice: Slice) => Command;
34
- export declare const handleExpandWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined, isNestingExpandsSupported: boolean) => (view: EditorView, event: ClipboardEvent, slice: Slice) => Command;
34
+ export declare const handleExpandWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (view: EditorView, event: ClipboardEvent, slice: Slice) => Command;
35
35
  export declare const handleNestedTablePasteWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined, isNestingTablesSupported: boolean) => (view: EditorView, event: ClipboardEvent, slice: Slice) => Command;
36
36
  export declare const handleSelectedTableWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (view: EditorView, event: ClipboardEvent, slice: Slice) => Command;
37
37
  export declare const handlePasteLinkOnSelectedTextWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (view: EditorView, event: ClipboardEvent, slice: Slice, type: PasteType) => Command;
@@ -21,7 +21,7 @@ export declare function handleCodeBlock(text: string): Command;
21
21
  export declare function handleMediaSingle(inputMethod: InputMethodInsertMedia, insertMediaAsMediaSingle: InsertMediaAsMediaSingle | undefined): (slice: Slice) => Command;
22
22
  export declare function handleTableContentPasteInBodiedExtension(slice: Slice): Command;
23
23
  export declare function handleNestedTablePaste(slice: Slice, isNestingTablesSupported?: boolean): Command;
24
- export declare function handleExpandPaste(slice: Slice, isNestingExpandsSupported?: boolean): Command;
24
+ export declare function handleExpandPaste(slice: Slice): Command;
25
25
  export declare function handleMarkdown(markdownSlice: Slice, queueCardsFromChangedTr: QueueCardsFromTransactionAction | undefined, from?: number, to?: number): Command;
26
26
  export declare function handleParagraphBlockMarks(state: EditorState, slice: Slice): Slice;
27
27
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-paste",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "description": "Paste plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -33,22 +33,22 @@
33
33
  "dependencies": {
34
34
  "@atlaskit/adf-schema": "^47.6.0",
35
35
  "@atlaskit/code": "^17.0.0",
36
- "@atlaskit/editor-common": "^103.6.0",
36
+ "@atlaskit/editor-common": "^103.9.0",
37
37
  "@atlaskit/editor-markdown-transformer": "^5.16.0",
38
38
  "@atlaskit/editor-plugin-analytics": "^2.2.0",
39
- "@atlaskit/editor-plugin-annotation": "^2.5.0",
39
+ "@atlaskit/editor-plugin-annotation": "^2.6.0",
40
40
  "@atlaskit/editor-plugin-better-type-history": "^2.1.0",
41
41
  "@atlaskit/editor-plugin-card": "^5.4.0",
42
42
  "@atlaskit/editor-plugin-feature-flags": "^1.4.0",
43
43
  "@atlaskit/editor-plugin-list": "^4.2.0",
44
- "@atlaskit/editor-plugin-media": "^2.5.0",
44
+ "@atlaskit/editor-plugin-media": "^2.6.0",
45
45
  "@atlaskit/editor-plugin-mentions": "^4.4.0",
46
46
  "@atlaskit/editor-prosemirror": "7.0.0",
47
47
  "@atlaskit/editor-tables": "^2.9.0",
48
48
  "@atlaskit/media-client": "^32.0.0",
49
49
  "@atlaskit/media-common": "^12.0.0",
50
50
  "@atlaskit/platform-feature-flags": "^1.1.0",
51
- "@atlaskit/tmp-editor-statsig": "^4.6.0",
51
+ "@atlaskit/tmp-editor-statsig": "^4.12.0",
52
52
  "@babel/runtime": "^7.0.0",
53
53
  "lodash": "^4.17.21",
54
54
  "uuid": "^3.1.0"
@@ -61,7 +61,7 @@
61
61
  "@af/visual-regression": "^1.3.0",
62
62
  "@atlaskit/editor-plugin-block-type": "^5.1.0",
63
63
  "@atlaskit/editor-plugin-history": "^2.0.0",
64
- "@atlaskit/editor-plugin-type-ahead": "^2.4.0",
64
+ "@atlaskit/editor-plugin-type-ahead": "^2.5.0",
65
65
  "@atlaskit/ssr": "^0.4.0",
66
66
  "@atlaskit/visual-regression": "^0.10.0",
67
67
  "@testing-library/react": "^13.4.0",
@@ -108,9 +108,6 @@
108
108
  "editor_inline_comments_paste_insert_nodes": {
109
109
  "type": "boolean"
110
110
  },
111
- "platform_editor_nest_nested_expand_in_expand_jira": {
112
- "type": "boolean"
113
- },
114
111
  "platform_editor_use_nested_table_pm_nodes": {
115
112
  "type": "boolean"
116
113
  },