@atlaskit/editor-core 191.7.12 → 192.0.2

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,19 @@
1
1
  # @atlaskit/editor-core
2
2
 
3
+ ## 192.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#72701](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72701) [`607dd9ee70a7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/607dd9ee70a7) - Remove reference to base plugin in composable editor
8
+
9
+ ## 191.7.15
10
+
11
+ ### Patch Changes
12
+
13
+ - [#69825](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69825) [`e2363da4f6a1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e2363da4f6a1) - [No Issue] Replace View Mode API for annotations
14
+ - [#69825](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69825) [`e2363da4f6a1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e2363da4f6a1) - [No Issue] Replace View Mode API for annotations
15
+ - [#69825](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69825) [`e2363da4f6a1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e2363da4f6a1) - [No Issue] Replace View Mode API for annotations
16
+
3
17
  ## 191.7.12
4
18
 
5
19
  ### Patch Changes
@@ -16,7 +16,6 @@ var _analytics = require("@atlaskit/editor-common/analytics");
16
16
  var _hooks = require("@atlaskit/editor-common/hooks");
17
17
  var _ufo = require("@atlaskit/editor-common/ufo");
18
18
  var _utils = require("@atlaskit/editor-common/utils");
19
- var _base = require("@atlaskit/editor-plugins/base");
20
19
  var _actions = _interopRequireDefault(require("../actions"));
21
20
  var _featureFlagsFromProps = require("../create-editor/feature-flags-from-props");
22
21
  var _EditorContext = require("../ui/EditorContext");
@@ -147,12 +146,5 @@ ComposableEditor.propTypes = {
147
146
  return new Error('minHeight only supports editor appearance chromeless and comment for Editor');
148
147
  }
149
148
  return null;
150
- },
151
- preset: function preset(_ref2) {
152
- var _preset = _ref2.preset;
153
- if (!_preset.has(_base.basePlugin)) {
154
- return new Error('Presets must contain the base plugin');
155
- }
156
- return null;
157
149
  }
158
150
  };
@@ -5,4 +5,4 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.version = exports.name = void 0;
7
7
  var name = exports.name = "@atlaskit/editor-core";
8
- var version = exports.version = "191.7.12";
8
+ var version = exports.version = "192.0.2";
@@ -10,7 +10,6 @@ import { ACTION, fireAnalyticsEvent } from '@atlaskit/editor-common/analytics';
10
10
  import { useConstructor } from '@atlaskit/editor-common/hooks';
11
11
  import { EditorExperience, ExperienceStore } from '@atlaskit/editor-common/ufo';
12
12
  import { getAnalyticsAppearance, startMeasure, stopMeasure } from '@atlaskit/editor-common/utils';
13
- import { basePlugin } from '@atlaskit/editor-plugins/base';
14
13
  import EditorActions from '../actions';
15
14
  import { createFeatureFlagsFromProps } from '../create-editor/feature-flags-from-props';
16
15
  import { useEditorContext } from '../ui/EditorContext';
@@ -143,13 +142,5 @@ ComposableEditor.propTypes = {
143
142
  return new Error('minHeight only supports editor appearance chromeless and comment for Editor');
144
143
  }
145
144
  return null;
146
- },
147
- preset: ({
148
- preset
149
- }) => {
150
- if (!preset.has(basePlugin)) {
151
- return new Error('Presets must contain the base plugin');
152
- }
153
- return null;
154
145
  }
155
146
  };
@@ -1,2 +1,2 @@
1
1
  export const name = "@atlaskit/editor-core";
2
- export const version = "191.7.12";
2
+ export const version = "192.0.2";
@@ -10,7 +10,6 @@ import { ACTION, fireAnalyticsEvent } from '@atlaskit/editor-common/analytics';
10
10
  import { useConstructor } from '@atlaskit/editor-common/hooks';
11
11
  import { EditorExperience, ExperienceStore } from '@atlaskit/editor-common/ufo';
12
12
  import { getAnalyticsAppearance, startMeasure, stopMeasure } from '@atlaskit/editor-common/utils';
13
- import { basePlugin } from '@atlaskit/editor-plugins/base';
14
13
  import EditorActions from '../actions';
15
14
  import { createFeatureFlagsFromProps } from '../create-editor/feature-flags-from-props';
16
15
  import { useEditorContext } from '../ui/EditorContext';
@@ -140,12 +139,5 @@ ComposableEditor.propTypes = {
140
139
  return new Error('minHeight only supports editor appearance chromeless and comment for Editor');
141
140
  }
142
141
  return null;
143
- },
144
- preset: function preset(_ref2) {
145
- var _preset = _ref2.preset;
146
- if (!_preset.has(basePlugin)) {
147
- return new Error('Presets must contain the base plugin');
148
- }
149
- return null;
150
142
  }
151
143
  };
@@ -1,2 +1,2 @@
1
1
  export var name = "@atlaskit/editor-core";
2
- export var version = "191.7.12";
2
+ export var version = "192.0.2";
@@ -4,6 +4,5 @@ export declare function ComposableEditor(props: EditorNextProps): jsx.JSX.Elemen
4
4
  export declare namespace ComposableEditor {
5
5
  var propTypes: {
6
6
  minHeight: ({ appearance, minHeight, }: Pick<EditorNextProps, "appearance" | "minHeight">) => Error | null;
7
- preset: ({ preset }: Pick<EditorNextProps, "preset">) => Error | null;
8
7
  };
9
8
  }