@atlaskit/editor-plugin-layout 1.12.7 → 1.12.9

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.
Files changed (65) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/cjs/index.js +2 -2
  3. package/dist/cjs/{plugin.js → layoutPlugin.js} +7 -7
  4. package/dist/cjs/layoutPluginType.js +12 -0
  5. package/dist/cjs/{actions.js → pm-plugins/actions.js} +23 -45
  6. package/dist/cjs/pm-plugins/main.js +2 -2
  7. package/dist/cjs/pm-plugins/resizing.js +2 -2
  8. package/dist/cjs/ui/global-styles.js +29 -14
  9. package/dist/cjs/{toolbar.js → ui/toolbar.js} +9 -9
  10. package/dist/es2019/index.js +1 -1
  11. package/dist/es2019/{plugin.js → layoutPlugin.js} +7 -7
  12. package/dist/es2019/layoutPluginType.js +2 -0
  13. package/dist/es2019/{actions.js → pm-plugins/actions.js} +23 -46
  14. package/dist/es2019/pm-plugins/main.js +2 -2
  15. package/dist/es2019/pm-plugins/resizing.js +1 -1
  16. package/dist/es2019/ui/global-styles.js +20 -6
  17. package/dist/es2019/{toolbar.js → ui/toolbar.js} +9 -9
  18. package/dist/esm/index.js +1 -1
  19. package/dist/esm/{plugin.js → layoutPlugin.js} +7 -7
  20. package/dist/esm/layoutPluginType.js +2 -0
  21. package/dist/esm/{actions.js → pm-plugins/actions.js} +23 -45
  22. package/dist/esm/pm-plugins/main.js +2 -2
  23. package/dist/esm/pm-plugins/resizing.js +1 -1
  24. package/dist/esm/ui/global-styles.js +27 -12
  25. package/dist/esm/{toolbar.js → ui/toolbar.js} +9 -9
  26. package/dist/types/index.d.ts +2 -2
  27. package/dist/types/layoutPlugin.d.ts +4 -0
  28. package/dist/types/{plugin.d.ts → layoutPluginType.d.ts} +1 -2
  29. package/dist/types/{node-views → nodeviews}/index.d.ts +1 -1
  30. package/dist/types/{actions.d.ts → pm-plugins/actions.d.ts} +6 -7
  31. package/dist/types/pm-plugins/resizing.d.ts +1 -1
  32. package/dist/types/ui/global-styles.d.ts +0 -4
  33. package/dist/types/{toolbar.d.ts → ui/toolbar.d.ts} +1 -1
  34. package/dist/types-ts4.5/index.d.ts +2 -2
  35. package/dist/types-ts4.5/layoutPlugin.d.ts +4 -0
  36. package/dist/types-ts4.5/{plugin.d.ts → layoutPluginType.d.ts} +1 -2
  37. package/dist/types-ts4.5/{node-views → nodeviews}/index.d.ts +1 -1
  38. package/dist/types-ts4.5/{actions.d.ts → pm-plugins/actions.d.ts} +6 -7
  39. package/dist/types-ts4.5/pm-plugins/resizing.d.ts +1 -1
  40. package/dist/types-ts4.5/ui/global-styles.d.ts +0 -4
  41. package/dist/types-ts4.5/{toolbar.d.ts → ui/toolbar.d.ts} +1 -1
  42. package/package.json +8 -5
  43. /package/dist/cjs/{node-views → nodeviews}/index.js +0 -0
  44. /package/dist/cjs/{consts.js → pm-plugins/consts.js} +0 -0
  45. /package/dist/cjs/{utils → pm-plugins/utils}/index.js +0 -0
  46. /package/dist/cjs/{utils → pm-plugins/utils}/preRelease.js +0 -0
  47. /package/dist/cjs/{types.js → types/index.js} +0 -0
  48. /package/dist/es2019/{node-views → nodeviews}/index.js +0 -0
  49. /package/dist/es2019/{consts.js → pm-plugins/consts.js} +0 -0
  50. /package/dist/es2019/{utils → pm-plugins/utils}/index.js +0 -0
  51. /package/dist/es2019/{utils → pm-plugins/utils}/preRelease.js +0 -0
  52. /package/dist/es2019/{types.js → types/index.js} +0 -0
  53. /package/dist/esm/{node-views → nodeviews}/index.js +0 -0
  54. /package/dist/esm/{consts.js → pm-plugins/consts.js} +0 -0
  55. /package/dist/esm/{utils → pm-plugins/utils}/index.js +0 -0
  56. /package/dist/esm/{utils → pm-plugins/utils}/preRelease.js +0 -0
  57. /package/dist/esm/{types.js → types/index.js} +0 -0
  58. /package/dist/types/{consts.d.ts → pm-plugins/consts.d.ts} +0 -0
  59. /package/dist/types/{utils → pm-plugins/utils}/index.d.ts +0 -0
  60. /package/dist/types/{utils → pm-plugins/utils}/preRelease.d.ts +0 -0
  61. /package/dist/types/{types.d.ts → types/index.d.ts} +0 -0
  62. /package/dist/types-ts4.5/{consts.d.ts → pm-plugins/consts.d.ts} +0 -0
  63. /package/dist/types-ts4.5/{utils → pm-plugins/utils}/index.d.ts +0 -0
  64. /package/dist/types-ts4.5/{utils → pm-plugins/utils}/preRelease.d.ts +0 -0
  65. /package/dist/types-ts4.5/{types.d.ts → types/index.d.ts} +0 -0
@@ -16,10 +16,10 @@ import LayoutTwoLeftSidebarIcon from '@atlaskit/icon/glyph/editor/layout-two-lef
16
16
  import LayoutTwoRightSidebarIcon from '@atlaskit/icon/glyph/editor/layout-two-right-sidebar';
17
17
  import RemoveIcon from '@atlaskit/icon/glyph/editor/remove';
18
18
  import { fg } from '@atlaskit/platform-feature-flags';
19
- import { deleteActiveLayoutNode, getPresetLayout, setPresetLayout } from './actions';
20
- import { LayoutThreeWithLeftSidebarsIcon } from './ui/icons/LayoutThreeWithLeftSidebars';
21
- import { LayoutThreeWithRightSidebarsIcon } from './ui/icons/LayoutThreeWithRightSidebars';
22
- import { isPreRelease2 } from './utils/preRelease';
19
+ import { deleteActiveLayoutNode, getPresetLayout, setPresetLayout } from '../pm-plugins/actions';
20
+ import { isPreRelease2 } from '../pm-plugins/utils/preRelease';
21
+ import { LayoutThreeWithLeftSidebarsIcon } from './icons/LayoutThreeWithLeftSidebars';
22
+ import { LayoutThreeWithRightSidebarsIcon } from './icons/LayoutThreeWithRightSidebars';
23
23
  var LAYOUT_TYPES = [{
24
24
  id: 'editor.layout.twoEquals',
25
25
  type: 'two_equal',
@@ -113,7 +113,7 @@ var buildLayoutButton = function buildLayoutButton(intl, item, currentLayout, ed
113
113
  iconFallback: item.iconFallback,
114
114
  testId: item.title.id ? "".concat(item.title.id) : undefined,
115
115
  title: intl.formatMessage(item.title),
116
- onClick: setPresetLayout(editorAnalyticsAPI)(item.type, intl.formatMessage),
116
+ onClick: setPresetLayout(editorAnalyticsAPI)(item.type),
117
117
  selected: !!currentLayout && currentLayout === item.type,
118
118
  tabIndex: null
119
119
  };
@@ -139,7 +139,7 @@ var getAdvancedLayoutItems = function getAdvancedLayoutItems(_ref) {
139
139
  }),
140
140
  //'2-columns',
141
141
  icon: iconPlaceholder,
142
- onClick: setPresetLayout(editorAnalyticsAPI)('two_equal', intl.formatMessage),
142
+ onClick: setPresetLayout(editorAnalyticsAPI)('two_equal'),
143
143
  selected: numberOfColumns === 2
144
144
  }, {
145
145
  title: intl.formatMessage(layoutMessages.columnOption, {
@@ -147,7 +147,7 @@ var getAdvancedLayoutItems = function getAdvancedLayoutItems(_ref) {
147
147
  }),
148
148
  //'3-columns'
149
149
  icon: iconPlaceholder,
150
- onClick: setPresetLayout(editorAnalyticsAPI)('three_equal', intl.formatMessage),
150
+ onClick: setPresetLayout(editorAnalyticsAPI)('three_equal'),
151
151
  selected: numberOfColumns === 3
152
152
  }, {
153
153
  title: intl.formatMessage(layoutMessages.columnOption, {
@@ -155,7 +155,7 @@ var getAdvancedLayoutItems = function getAdvancedLayoutItems(_ref) {
155
155
  }),
156
156
  //'4-columns'
157
157
  icon: iconPlaceholder,
158
- onClick: setPresetLayout(editorAnalyticsAPI)('four_equal', intl.formatMessage),
158
+ onClick: setPresetLayout(editorAnalyticsAPI)('four_equal'),
159
159
  selected: numberOfColumns === 4
160
160
  }, {
161
161
  title: intl.formatMessage(layoutMessages.columnOption, {
@@ -163,7 +163,7 @@ var getAdvancedLayoutItems = function getAdvancedLayoutItems(_ref) {
163
163
  }),
164
164
  //'5-columns'
165
165
  icon: iconPlaceholder,
166
- onClick: setPresetLayout(editorAnalyticsAPI)('five_equal', intl.formatMessage),
166
+ onClick: setPresetLayout(editorAnalyticsAPI)('five_equal'),
167
167
  selected: numberOfColumns === 5
168
168
  }];
169
169
  return [{
@@ -1,3 +1,3 @@
1
- export { layoutPlugin } from './plugin';
2
- export type { LayoutPlugin } from './plugin';
1
+ export { layoutPlugin } from './layoutPlugin';
2
+ export type { LayoutPlugin } from './layoutPluginType';
3
3
  export type { LayoutPluginOptions } from './types';
@@ -0,0 +1,4 @@
1
+ import type { LayoutPlugin } from './layoutPluginType';
2
+ import { pluginKey } from './pm-plugins/plugin-key';
3
+ export { pluginKey };
4
+ export declare const layoutPlugin: LayoutPlugin;
@@ -3,7 +3,7 @@ import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
3
3
  import type { DecorationsPlugin } from '@atlaskit/editor-plugin-decorations';
4
4
  import type { EditorDisabledPlugin } from '@atlaskit/editor-plugin-editor-disabled';
5
5
  import type { WidthPlugin } from '@atlaskit/editor-plugin-width';
6
- import { insertLayoutColumnsWithAnalytics } from './actions';
6
+ import type { insertLayoutColumnsWithAnalytics } from './pm-plugins/actions';
7
7
  import { pluginKey } from './pm-plugins/plugin-key';
8
8
  import type { LayoutPluginOptions } from './types';
9
9
  export { pluginKey };
@@ -19,4 +19,3 @@ export type LayoutPlugin = NextEditorPlugin<'layout', {
19
19
  insertLayoutColumns: ReturnType<typeof insertLayoutColumnsWithAnalytics>;
20
20
  };
21
21
  }>;
22
- export declare const layoutPlugin: LayoutPlugin;
@@ -5,7 +5,7 @@ import ReactNodeView from '@atlaskit/editor-common/react-node-view';
5
5
  import { type ExtractInjectionAPI, type getPosHandlerNode } from '@atlaskit/editor-common/types';
6
6
  import { type Node as PMNode } from '@atlaskit/editor-prosemirror/model';
7
7
  import { type EditorView } from '@atlaskit/editor-prosemirror/view';
8
- import { type LayoutPlugin } from '../plugin';
8
+ import { type LayoutPlugin } from '../layoutPluginType';
9
9
  import { type LayoutPluginOptions } from '../types';
10
10
  type LayoutSectionViewProps = {
11
11
  node: PMNode;
@@ -1,9 +1,8 @@
1
- import { type IntlShape } from 'react-intl-next';
2
1
  import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
3
2
  import type { Command, TOOLBAR_MENU_TYPE } from '@atlaskit/editor-common/types';
4
3
  import type { Node } from '@atlaskit/editor-prosemirror/model';
5
4
  import type { EditorState, Transaction } from '@atlaskit/editor-prosemirror/state';
6
- import type { Change, PresetLayout } from './types';
5
+ import type { Change, PresetLayout } from '../types';
7
6
  export declare const ONE_COL_LAYOUTS: PresetLayout[];
8
7
  export declare const TWO_COL_LAYOUTS: PresetLayout[];
9
8
  export declare const THREE_COL_LAYOUTS: PresetLayout[];
@@ -13,12 +12,12 @@ export declare const THREE_COL_LAYOUTS: PresetLayout[];
13
12
  */
14
13
  export declare const getPresetLayout: (section: Node) => PresetLayout | undefined;
15
14
  export declare const getSelectedLayout: (maybeLayoutSection: Node | undefined, current: PresetLayout) => PresetLayout;
16
- export declare const createMultiColumnLayoutSection: (state: EditorState, numberOfColumns: number, formatMessage: IntlShape['formatMessage']) => Node;
17
- export declare const createDefaultLayoutSection: (state: EditorState, formatMessage?: IntlShape['formatMessage']) => Node;
15
+ export declare const createMultiColumnLayoutSection: (state: EditorState, numberOfColumns?: number) => Node;
16
+ export declare const createDefaultLayoutSection: (state: EditorState) => Node;
18
17
  export declare const insertLayoutColumns: Command;
19
- export declare const insertLayoutColumnsWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (inputMethod: TOOLBAR_MENU_TYPE, formatMessage?: IntlShape['formatMessage']) => Command;
20
- export declare function forceSectionToPresetLayout(state: EditorState, node: Node, pos: number, presetLayout: PresetLayout, formatMessage?: IntlShape['formatMessage']): Transaction;
21
- export declare const setPresetLayout: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (layout: PresetLayout, formatMessage?: IntlShape['formatMessage']) => Command;
18
+ export declare const insertLayoutColumnsWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (inputMethod: TOOLBAR_MENU_TYPE) => Command;
19
+ export declare function forceSectionToPresetLayout(state: EditorState, node: Node, pos: number, presetLayout: PresetLayout): Transaction;
20
+ export declare const setPresetLayout: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (layout: PresetLayout) => Command;
22
21
  export declare const fixColumnSizes: (changedTr: Transaction, state: EditorState) => Change | undefined;
23
22
  export declare const fixColumnStructure: (state: EditorState) => Transaction | undefined;
24
23
  export declare const deleteActiveLayoutNode: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => Command;
@@ -3,7 +3,7 @@ import { type PortalProviderAPI } from '@atlaskit/editor-common/portal';
3
3
  import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
4
4
  import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
5
5
  import { PluginKey } from '@atlaskit/editor-prosemirror/state';
6
- import { type LayoutPlugin } from '../plugin';
6
+ import { type LayoutPlugin } from '../layoutPluginType';
7
7
  import type { LayoutPluginOptions } from '../types';
8
8
  export declare const pluginKey: PluginKey<any>;
9
9
  declare const _default: (options: LayoutPluginOptions, pluginInjectionApi: ExtractInjectionAPI<LayoutPlugin>, portalProviderAPI: PortalProviderAPI, eventDispatcher: EventDispatcher) => SafePlugin<undefined>;
@@ -1,6 +1,2 @@
1
- /**
2
- * @jsxRuntime classic
3
- * @jsx jsx
4
- */
5
1
  import { jsx } from '@emotion/react';
6
2
  export declare const GlobalStylesWrapper: () => jsx.JSX.Element;
@@ -1,6 +1,6 @@
1
1
  import type { IntlShape } from 'react-intl-next';
2
2
  import type { ExtractInjectionAPI, FloatingToolbarConfig } from '@atlaskit/editor-common/types';
3
3
  import type { EditorState } from '@atlaskit/editor-prosemirror/state';
4
- import type { LayoutPlugin } from './index';
4
+ import type { LayoutPlugin } from '../index';
5
5
  export declare const layoutToolbarTitle = "Layout floating controls";
6
6
  export declare const buildToolbar: (state: EditorState, intl: IntlShape, pos: number, _allowBreakout: boolean, addSidebarLayouts: boolean, allowSingleColumnLayout: boolean, api: ExtractInjectionAPI<LayoutPlugin> | undefined) => FloatingToolbarConfig | undefined;
@@ -1,3 +1,3 @@
1
- export { layoutPlugin } from './plugin';
2
- export type { LayoutPlugin } from './plugin';
1
+ export { layoutPlugin } from './layoutPlugin';
2
+ export type { LayoutPlugin } from './layoutPluginType';
3
3
  export type { LayoutPluginOptions } from './types';
@@ -0,0 +1,4 @@
1
+ import type { LayoutPlugin } from './layoutPluginType';
2
+ import { pluginKey } from './pm-plugins/plugin-key';
3
+ export { pluginKey };
4
+ export declare const layoutPlugin: LayoutPlugin;
@@ -3,7 +3,7 @@ import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
3
3
  import type { DecorationsPlugin } from '@atlaskit/editor-plugin-decorations';
4
4
  import type { EditorDisabledPlugin } from '@atlaskit/editor-plugin-editor-disabled';
5
5
  import type { WidthPlugin } from '@atlaskit/editor-plugin-width';
6
- import { insertLayoutColumnsWithAnalytics } from './actions';
6
+ import type { insertLayoutColumnsWithAnalytics } from './pm-plugins/actions';
7
7
  import { pluginKey } from './pm-plugins/plugin-key';
8
8
  import type { LayoutPluginOptions } from './types';
9
9
  export { pluginKey };
@@ -19,4 +19,3 @@ export type LayoutPlugin = NextEditorPlugin<'layout', {
19
19
  insertLayoutColumns: ReturnType<typeof insertLayoutColumnsWithAnalytics>;
20
20
  };
21
21
  }>;
22
- export declare const layoutPlugin: LayoutPlugin;
@@ -5,7 +5,7 @@ import ReactNodeView from '@atlaskit/editor-common/react-node-view';
5
5
  import { type ExtractInjectionAPI, type getPosHandlerNode } from '@atlaskit/editor-common/types';
6
6
  import { type Node as PMNode } from '@atlaskit/editor-prosemirror/model';
7
7
  import { type EditorView } from '@atlaskit/editor-prosemirror/view';
8
- import { type LayoutPlugin } from '../plugin';
8
+ import { type LayoutPlugin } from '../layoutPluginType';
9
9
  import { type LayoutPluginOptions } from '../types';
10
10
  type LayoutSectionViewProps = {
11
11
  node: PMNode;
@@ -1,9 +1,8 @@
1
- import { type IntlShape } from 'react-intl-next';
2
1
  import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
3
2
  import type { Command, TOOLBAR_MENU_TYPE } from '@atlaskit/editor-common/types';
4
3
  import type { Node } from '@atlaskit/editor-prosemirror/model';
5
4
  import type { EditorState, Transaction } from '@atlaskit/editor-prosemirror/state';
6
- import type { Change, PresetLayout } from './types';
5
+ import type { Change, PresetLayout } from '../types';
7
6
  export declare const ONE_COL_LAYOUTS: PresetLayout[];
8
7
  export declare const TWO_COL_LAYOUTS: PresetLayout[];
9
8
  export declare const THREE_COL_LAYOUTS: PresetLayout[];
@@ -13,12 +12,12 @@ export declare const THREE_COL_LAYOUTS: PresetLayout[];
13
12
  */
14
13
  export declare const getPresetLayout: (section: Node) => PresetLayout | undefined;
15
14
  export declare const getSelectedLayout: (maybeLayoutSection: Node | undefined, current: PresetLayout) => PresetLayout;
16
- export declare const createMultiColumnLayoutSection: (state: EditorState, numberOfColumns: number, formatMessage: IntlShape['formatMessage']) => Node;
17
- export declare const createDefaultLayoutSection: (state: EditorState, formatMessage?: IntlShape['formatMessage']) => Node;
15
+ export declare const createMultiColumnLayoutSection: (state: EditorState, numberOfColumns?: number) => Node;
16
+ export declare const createDefaultLayoutSection: (state: EditorState) => Node;
18
17
  export declare const insertLayoutColumns: Command;
19
- export declare const insertLayoutColumnsWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (inputMethod: TOOLBAR_MENU_TYPE, formatMessage?: IntlShape['formatMessage']) => Command;
20
- export declare function forceSectionToPresetLayout(state: EditorState, node: Node, pos: number, presetLayout: PresetLayout, formatMessage?: IntlShape['formatMessage']): Transaction;
21
- export declare const setPresetLayout: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (layout: PresetLayout, formatMessage?: IntlShape['formatMessage']) => Command;
18
+ export declare const insertLayoutColumnsWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (inputMethod: TOOLBAR_MENU_TYPE) => Command;
19
+ export declare function forceSectionToPresetLayout(state: EditorState, node: Node, pos: number, presetLayout: PresetLayout): Transaction;
20
+ export declare const setPresetLayout: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (layout: PresetLayout) => Command;
22
21
  export declare const fixColumnSizes: (changedTr: Transaction, state: EditorState) => Change | undefined;
23
22
  export declare const fixColumnStructure: (state: EditorState) => Transaction | undefined;
24
23
  export declare const deleteActiveLayoutNode: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => Command;
@@ -3,7 +3,7 @@ import { type PortalProviderAPI } from '@atlaskit/editor-common/portal';
3
3
  import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
4
4
  import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
5
5
  import { PluginKey } from '@atlaskit/editor-prosemirror/state';
6
- import { type LayoutPlugin } from '../plugin';
6
+ import { type LayoutPlugin } from '../layoutPluginType';
7
7
  import type { LayoutPluginOptions } from '../types';
8
8
  export declare const pluginKey: PluginKey<any>;
9
9
  declare const _default: (options: LayoutPluginOptions, pluginInjectionApi: ExtractInjectionAPI<LayoutPlugin>, portalProviderAPI: PortalProviderAPI, eventDispatcher: EventDispatcher) => SafePlugin<undefined>;
@@ -1,6 +1,2 @@
1
- /**
2
- * @jsxRuntime classic
3
- * @jsx jsx
4
- */
5
1
  import { jsx } from '@emotion/react';
6
2
  export declare const GlobalStylesWrapper: () => jsx.JSX.Element;
@@ -1,6 +1,6 @@
1
1
  import type { IntlShape } from 'react-intl-next';
2
2
  import type { ExtractInjectionAPI, FloatingToolbarConfig } from '@atlaskit/editor-common/types';
3
3
  import type { EditorState } from '@atlaskit/editor-prosemirror/state';
4
- import type { LayoutPlugin } from './index';
4
+ import type { LayoutPlugin } from '../index';
5
5
  export declare const layoutToolbarTitle = "Layout floating controls";
6
6
  export declare const buildToolbar: (state: EditorState, intl: IntlShape, pos: number, _allowBreakout: boolean, addSidebarLayouts: boolean, allowSingleColumnLayout: boolean, api: ExtractInjectionAPI<LayoutPlugin> | undefined) => FloatingToolbarConfig | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-layout",
3
- "version": "1.12.7",
3
+ "version": "1.12.9",
4
4
  "description": "Layout plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -32,16 +32,16 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "@atlaskit/adf-schema": "^46.1.0",
35
- "@atlaskit/editor-common": "^95.7.0",
35
+ "@atlaskit/editor-common": "^95.10.0",
36
36
  "@atlaskit/editor-plugin-analytics": "^1.10.0",
37
37
  "@atlaskit/editor-plugin-decorations": "^1.3.0",
38
38
  "@atlaskit/editor-plugin-editor-disabled": "^1.3.0",
39
39
  "@atlaskit/editor-plugin-width": "^1.3.0",
40
- "@atlaskit/editor-prosemirror": "6.0.0",
41
- "@atlaskit/icon": "^22.26.0",
40
+ "@atlaskit/editor-prosemirror": "6.2.1",
41
+ "@atlaskit/icon": "^22.28.0",
42
42
  "@atlaskit/platform-feature-flags": "^0.3.0",
43
43
  "@atlaskit/tmp-editor-statsig": "^2.21.0",
44
- "@atlaskit/tokens": "^2.3.0",
44
+ "@atlaskit/tokens": "^2.4.0",
45
45
  "@babel/runtime": "^7.0.0",
46
46
  "@emotion/react": "^11.7.1"
47
47
  },
@@ -54,6 +54,9 @@
54
54
  },
55
55
  "techstack": {
56
56
  "@atlassian/frontend": {
57
+ "code-structure": [
58
+ "editor-plugin"
59
+ ],
57
60
  "import-structure": [
58
61
  "atlassian-conventions"
59
62
  ],
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes