@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.
- package/CHANGELOG.md +18 -0
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/{plugin.js → layoutPlugin.js} +7 -7
- package/dist/cjs/layoutPluginType.js +12 -0
- package/dist/cjs/{actions.js → pm-plugins/actions.js} +23 -45
- package/dist/cjs/pm-plugins/main.js +2 -2
- package/dist/cjs/pm-plugins/resizing.js +2 -2
- package/dist/cjs/ui/global-styles.js +29 -14
- package/dist/cjs/{toolbar.js → ui/toolbar.js} +9 -9
- package/dist/es2019/index.js +1 -1
- package/dist/es2019/{plugin.js → layoutPlugin.js} +7 -7
- package/dist/es2019/layoutPluginType.js +2 -0
- package/dist/es2019/{actions.js → pm-plugins/actions.js} +23 -46
- package/dist/es2019/pm-plugins/main.js +2 -2
- package/dist/es2019/pm-plugins/resizing.js +1 -1
- package/dist/es2019/ui/global-styles.js +20 -6
- package/dist/es2019/{toolbar.js → ui/toolbar.js} +9 -9
- package/dist/esm/index.js +1 -1
- package/dist/esm/{plugin.js → layoutPlugin.js} +7 -7
- package/dist/esm/layoutPluginType.js +2 -0
- package/dist/esm/{actions.js → pm-plugins/actions.js} +23 -45
- package/dist/esm/pm-plugins/main.js +2 -2
- package/dist/esm/pm-plugins/resizing.js +1 -1
- package/dist/esm/ui/global-styles.js +27 -12
- package/dist/esm/{toolbar.js → ui/toolbar.js} +9 -9
- package/dist/types/index.d.ts +2 -2
- package/dist/types/layoutPlugin.d.ts +4 -0
- package/dist/types/{plugin.d.ts → layoutPluginType.d.ts} +1 -2
- package/dist/types/{node-views → nodeviews}/index.d.ts +1 -1
- package/dist/types/{actions.d.ts → pm-plugins/actions.d.ts} +6 -7
- package/dist/types/pm-plugins/resizing.d.ts +1 -1
- package/dist/types/ui/global-styles.d.ts +0 -4
- package/dist/types/{toolbar.d.ts → ui/toolbar.d.ts} +1 -1
- package/dist/types-ts4.5/index.d.ts +2 -2
- package/dist/types-ts4.5/layoutPlugin.d.ts +4 -0
- package/dist/types-ts4.5/{plugin.d.ts → layoutPluginType.d.ts} +1 -2
- package/dist/types-ts4.5/{node-views → nodeviews}/index.d.ts +1 -1
- package/dist/types-ts4.5/{actions.d.ts → pm-plugins/actions.d.ts} +6 -7
- package/dist/types-ts4.5/pm-plugins/resizing.d.ts +1 -1
- package/dist/types-ts4.5/ui/global-styles.d.ts +0 -4
- package/dist/types-ts4.5/{toolbar.d.ts → ui/toolbar.d.ts} +1 -1
- package/package.json +8 -5
- /package/dist/cjs/{node-views → nodeviews}/index.js +0 -0
- /package/dist/cjs/{consts.js → pm-plugins/consts.js} +0 -0
- /package/dist/cjs/{utils → pm-plugins/utils}/index.js +0 -0
- /package/dist/cjs/{utils → pm-plugins/utils}/preRelease.js +0 -0
- /package/dist/cjs/{types.js → types/index.js} +0 -0
- /package/dist/es2019/{node-views → nodeviews}/index.js +0 -0
- /package/dist/es2019/{consts.js → pm-plugins/consts.js} +0 -0
- /package/dist/es2019/{utils → pm-plugins/utils}/index.js +0 -0
- /package/dist/es2019/{utils → pm-plugins/utils}/preRelease.js +0 -0
- /package/dist/es2019/{types.js → types/index.js} +0 -0
- /package/dist/esm/{node-views → nodeviews}/index.js +0 -0
- /package/dist/esm/{consts.js → pm-plugins/consts.js} +0 -0
- /package/dist/esm/{utils → pm-plugins/utils}/index.js +0 -0
- /package/dist/esm/{utils → pm-plugins/utils}/preRelease.js +0 -0
- /package/dist/esm/{types.js → types/index.js} +0 -0
- /package/dist/types/{consts.d.ts → pm-plugins/consts.d.ts} +0 -0
- /package/dist/types/{utils → pm-plugins/utils}/index.d.ts +0 -0
- /package/dist/types/{utils → pm-plugins/utils}/preRelease.d.ts +0 -0
- /package/dist/types/{types.d.ts → types/index.d.ts} +0 -0
- /package/dist/types-ts4.5/{consts.d.ts → pm-plugins/consts.d.ts} +0 -0
- /package/dist/types-ts4.5/{utils → pm-plugins/utils}/index.d.ts +0 -0
- /package/dist/types-ts4.5/{utils → pm-plugins/utils}/preRelease.d.ts +0 -0
- /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 '
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
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
|
|
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'
|
|
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'
|
|
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'
|
|
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'
|
|
166
|
+
onClick: setPresetLayout(editorAnalyticsAPI)('five_equal'),
|
|
167
167
|
selected: numberOfColumns === 5
|
|
168
168
|
}];
|
|
169
169
|
return [{
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { layoutPlugin } from './
|
|
2
|
-
export type { LayoutPlugin } from './
|
|
1
|
+
export { layoutPlugin } from './layoutPlugin';
|
|
2
|
+
export type { LayoutPlugin } from './layoutPluginType';
|
|
3
3
|
export type { LayoutPluginOptions } from './types';
|
|
@@ -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 '../
|
|
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 '
|
|
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
|
|
17
|
-
export declare const createDefaultLayoutSection: (state: EditorState
|
|
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
|
|
20
|
-
export declare function forceSectionToPresetLayout(state: EditorState, node: Node, pos: number, presetLayout: PresetLayout
|
|
21
|
-
export declare const setPresetLayout: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (layout: PresetLayout
|
|
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 '../
|
|
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,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 '
|
|
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 './
|
|
2
|
-
export type { LayoutPlugin } from './
|
|
1
|
+
export { layoutPlugin } from './layoutPlugin';
|
|
2
|
+
export type { LayoutPlugin } from './layoutPluginType';
|
|
3
3
|
export type { LayoutPluginOptions } from './types';
|
|
@@ -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 '../
|
|
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 '
|
|
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
|
|
17
|
-
export declare const createDefaultLayoutSection: (state: EditorState
|
|
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
|
|
20
|
-
export declare function forceSectionToPresetLayout(state: EditorState, node: Node, pos: number, presetLayout: PresetLayout
|
|
21
|
-
export declare const setPresetLayout: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (layout: PresetLayout
|
|
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 '../
|
|
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,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 '
|
|
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.
|
|
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.
|
|
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.
|
|
41
|
-
"@atlaskit/icon": "^22.
|
|
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.
|
|
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
|
|
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
|