@atlaskit/editor-plugin-annotation 1.14.3 → 1.15.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,23 @@
1
1
  # @atlaskit/editor-plugin-annotation
2
2
 
3
+ ## 1.15.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 1.15.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#119966](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/119966)
14
+ [`596ad24e38929`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/596ad24e38929) -
15
+ Clean up typescript references to LegacyPortalProviderAPI
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 1.14.3
4
22
 
5
23
  ### Patch Changes
@@ -1,6 +1,5 @@
1
1
  import type { EditorAnalyticsAPI, VIEW_METHOD } from '@atlaskit/editor-common/analytics';
2
2
  import type { Dispatch, EventDispatcher } from '@atlaskit/editor-common/event-dispatcher';
3
- import type { LegacyPortalProviderAPI } from '@atlaskit/editor-common/portal-provider';
4
3
  import { type PortalProviderAPI } from '@atlaskit/editor-common/src/portal';
5
4
  import type { FeatureFlags } from '@atlaskit/editor-common/types';
6
5
  import type { EditorState, SelectionBookmark } from '@atlaskit/editor-prosemirror/state';
@@ -19,7 +18,7 @@ export declare enum ACTIONS {
19
18
  export interface InlineCommentPluginOptions {
20
19
  dispatch: Dispatch;
21
20
  eventDispatcher: EventDispatcher;
22
- portalProviderAPI: LegacyPortalProviderAPI | PortalProviderAPI;
21
+ portalProviderAPI: PortalProviderAPI;
23
22
  provider: InlineCommentAnnotationProvider;
24
23
  editorAnalyticsAPI: EditorAnalyticsAPI | undefined;
25
24
  featureFlagsPluginState?: FeatureFlags;
@@ -1,6 +1,5 @@
1
1
  import type { EditorAnalyticsAPI, VIEW_METHOD } from '@atlaskit/editor-common/analytics';
2
2
  import type { Dispatch, EventDispatcher } from '@atlaskit/editor-common/event-dispatcher';
3
- import type { LegacyPortalProviderAPI } from '@atlaskit/editor-common/portal-provider';
4
3
  import { type PortalProviderAPI } from '@atlaskit/editor-common/src/portal';
5
4
  import type { FeatureFlags } from '@atlaskit/editor-common/types';
6
5
  import type { EditorState, SelectionBookmark } from '@atlaskit/editor-prosemirror/state';
@@ -19,7 +18,7 @@ export declare enum ACTIONS {
19
18
  export interface InlineCommentPluginOptions {
20
19
  dispatch: Dispatch;
21
20
  eventDispatcher: EventDispatcher;
22
- portalProviderAPI: LegacyPortalProviderAPI | PortalProviderAPI;
21
+ portalProviderAPI: PortalProviderAPI;
23
22
  provider: InlineCommentAnnotationProvider;
24
23
  editorAnalyticsAPI: EditorAnalyticsAPI | undefined;
25
24
  featureFlagsPluginState?: FeatureFlags;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-annotation",
3
- "version": "1.14.3",
3
+ "version": "1.15.1",
4
4
  "description": "Annotation plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@atlaskit/adf-schema": "^39.0.3",
36
- "@atlaskit/editor-common": "^84.5.0",
36
+ "@atlaskit/editor-common": "^86.0.0",
37
37
  "@atlaskit/editor-plugin-analytics": "^1.4.0",
38
38
  "@atlaskit/editor-plugin-editor-viewmode-effects": "^1.0.0",
39
39
  "@atlaskit/editor-plugin-feature-flags": "^1.1.0",