@atlaskit/editor-core 187.40.0 → 187.40.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,11 @@
1
1
  # @atlaskit/editor-core
2
2
 
3
+ ## 187.40.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`da6dac74c66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/da6dac74c66) - Fix libra testing.
8
+
3
9
  ## 187.40.0
4
10
 
5
11
  ### Minor Changes
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.version = exports.nextMajorVersion = exports.name = void 0;
7
7
  var name = "@atlaskit/editor-core";
8
8
  exports.name = name;
9
- var version = "187.40.0";
9
+ var version = "187.40.1";
10
10
  exports.version = version;
11
11
  var nextMajorVersion = function nextMajorVersion() {
12
12
  return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
@@ -1,5 +1,5 @@
1
1
  export const name = "@atlaskit/editor-core";
2
- export const version = "187.40.0";
2
+ export const version = "187.40.1";
3
3
  export const nextMajorVersion = () => {
4
4
  return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
5
5
  };
@@ -1,5 +1,5 @@
1
1
  export var name = "@atlaskit/editor-core";
2
- export var version = "187.40.0";
2
+ export var version = "187.40.1";
3
3
  export var nextMajorVersion = function nextMajorVersion() {
4
4
  return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
5
5
  };
@@ -1,14 +1,12 @@
1
1
  import type { NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
2
2
  import { pluginKey } from './pm-plugins/plugin-key';
3
3
  import type { LayoutPluginOptions } from './types';
4
- import type { decorationsPlugin } from '@atlaskit/editor-plugin-decorations';
5
- import type { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
4
+ import type { DecorationsPlugin } from '@atlaskit/editor-plugin-decorations';
5
+ import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
6
6
  export { pluginKey };
7
- declare const layoutPlugin: NextEditorPlugin<'layout', {
7
+ export type LayoutPlugin = NextEditorPlugin<'layout', {
8
8
  pluginConfiguration: LayoutPluginOptions | undefined;
9
- dependencies: [
10
- typeof decorationsPlugin,
11
- OptionalPlugin<typeof analyticsPlugin>
12
- ];
9
+ dependencies: [DecorationsPlugin, OptionalPlugin<AnalyticsPlugin>];
13
10
  }>;
11
+ declare const layoutPlugin: LayoutPlugin;
14
12
  export default layoutPlugin;
@@ -1,14 +1,15 @@
1
1
  import type { NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
2
2
  import { pluginKey } from './pm-plugins/plugin-key';
3
3
  import type { LayoutPluginOptions } from './types';
4
- import type { decorationsPlugin } from '@atlaskit/editor-plugin-decorations';
5
- import type { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
4
+ import type { DecorationsPlugin } from '@atlaskit/editor-plugin-decorations';
5
+ import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
6
6
  export { pluginKey };
7
- declare const layoutPlugin: NextEditorPlugin<'layout', {
7
+ export type LayoutPlugin = NextEditorPlugin<'layout', {
8
8
  pluginConfiguration: LayoutPluginOptions | undefined;
9
9
  dependencies: [
10
- typeof decorationsPlugin,
11
- OptionalPlugin<typeof analyticsPlugin>
10
+ DecorationsPlugin,
11
+ OptionalPlugin<AnalyticsPlugin>
12
12
  ];
13
13
  }>;
14
+ declare const layoutPlugin: LayoutPlugin;
14
15
  export default layoutPlugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "187.40.0",
3
+ "version": "187.40.1",
4
4
  "description": "A package contains Atlassian editor core functionality",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"