@atlaskit/editor-plugin-layout 1.12.16 → 1.12.17
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 +6 -0
- package/dist/cjs/layoutPlugin.js +0 -6
- package/dist/cjs/layoutPluginType.js +1 -8
- package/dist/es2019/layoutPlugin.js +0 -1
- package/dist/es2019/layoutPluginType.js +1 -2
- package/dist/esm/layoutPlugin.js +0 -1
- package/dist/esm/layoutPluginType.js +1 -2
- package/dist/types/layoutPlugin.d.ts +0 -2
- package/dist/types/layoutPluginType.d.ts +0 -2
- package/dist/types-ts4.5/layoutPlugin.d.ts +0 -2
- package/dist/types-ts4.5/layoutPluginType.d.ts +0 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/dist/cjs/layoutPlugin.js
CHANGED
|
@@ -5,12 +5,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
7
|
exports.layoutPlugin = void 0;
|
|
8
|
-
Object.defineProperty(exports, "pluginKey", {
|
|
9
|
-
enumerable: true,
|
|
10
|
-
get: function get() {
|
|
11
|
-
return _pluginKey.pluginKey;
|
|
12
|
-
}
|
|
13
|
-
});
|
|
14
8
|
var _react = _interopRequireDefault(require("react"));
|
|
15
9
|
var _adfSchema = require("@atlaskit/adf-schema");
|
|
16
10
|
var _schema = require("@atlaskit/adf-schema/schema");
|
|
@@ -2,11 +2,4 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
|
-
});
|
|
6
|
-
Object.defineProperty(exports, "pluginKey", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function get() {
|
|
9
|
-
return _pluginKey.pluginKey;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
var _pluginKey = require("./pm-plugins/plugin-key");
|
|
5
|
+
});
|
|
@@ -12,7 +12,6 @@ import { pluginKey } from './pm-plugins/plugin-key';
|
|
|
12
12
|
import { default as createLayoutResizingPlugin } from './pm-plugins/resizing';
|
|
13
13
|
import { GlobalStylesWrapper } from './ui/global-styles';
|
|
14
14
|
import { buildToolbar } from './ui/toolbar';
|
|
15
|
-
export { pluginKey };
|
|
16
15
|
export const layoutPlugin = ({
|
|
17
16
|
config: options = {},
|
|
18
17
|
api
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export { pluginKey };
|
|
1
|
+
export {};
|
package/dist/esm/layoutPlugin.js
CHANGED
|
@@ -12,7 +12,6 @@ import { pluginKey } from './pm-plugins/plugin-key';
|
|
|
12
12
|
import { default as createLayoutResizingPlugin } from './pm-plugins/resizing';
|
|
13
13
|
import { GlobalStylesWrapper } from './ui/global-styles';
|
|
14
14
|
import { buildToolbar } from './ui/toolbar';
|
|
15
|
-
export { pluginKey };
|
|
16
15
|
export var layoutPlugin = function layoutPlugin(_ref) {
|
|
17
16
|
var _api$analytics;
|
|
18
17
|
var _ref$config = _ref.config,
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export { pluginKey };
|
|
1
|
+
export {};
|
|
@@ -5,9 +5,7 @@ import type { EditorDisabledPlugin } from '@atlaskit/editor-plugin-editor-disabl
|
|
|
5
5
|
import type { SelectionPlugin } from '@atlaskit/editor-plugin-selection';
|
|
6
6
|
import type { WidthPlugin } from '@atlaskit/editor-plugin-width';
|
|
7
7
|
import type { insertLayoutColumnsWithAnalytics } from './pm-plugins/actions';
|
|
8
|
-
import { pluginKey } from './pm-plugins/plugin-key';
|
|
9
8
|
import type { LayoutPluginOptions } from './types';
|
|
10
|
-
export { pluginKey };
|
|
11
9
|
export type LayoutPlugin = NextEditorPlugin<'layout', {
|
|
12
10
|
pluginConfiguration: LayoutPluginOptions | undefined;
|
|
13
11
|
dependencies: [
|
|
@@ -5,9 +5,7 @@ import type { EditorDisabledPlugin } from '@atlaskit/editor-plugin-editor-disabl
|
|
|
5
5
|
import type { SelectionPlugin } from '@atlaskit/editor-plugin-selection';
|
|
6
6
|
import type { WidthPlugin } from '@atlaskit/editor-plugin-width';
|
|
7
7
|
import type { insertLayoutColumnsWithAnalytics } from './pm-plugins/actions';
|
|
8
|
-
import { pluginKey } from './pm-plugins/plugin-key';
|
|
9
8
|
import type { LayoutPluginOptions } from './types';
|
|
10
|
-
export { pluginKey };
|
|
11
9
|
export type LayoutPlugin = NextEditorPlugin<'layout', {
|
|
12
10
|
pluginConfiguration: LayoutPluginOptions | undefined;
|
|
13
11
|
dependencies: [
|
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.17",
|
|
4
4
|
"description": "Layout plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@atlaskit/adf-schema": "^46.1.0",
|
|
35
|
-
"@atlaskit/editor-common": "^
|
|
35
|
+
"@atlaskit/editor-common": "^97.0.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",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"@atlaskit/editor-prosemirror": "6.2.1",
|
|
42
42
|
"@atlaskit/icon": "^23.1.0",
|
|
43
43
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
44
|
-
"@atlaskit/tmp-editor-statsig": "^2.
|
|
45
|
-
"@atlaskit/tokens": "^2.
|
|
44
|
+
"@atlaskit/tmp-editor-statsig": "^2.29.0",
|
|
45
|
+
"@atlaskit/tokens": "^2.5.0",
|
|
46
46
|
"@babel/runtime": "^7.0.0",
|
|
47
47
|
"@emotion/react": "^11.7.1"
|
|
48
48
|
},
|