@atlaskit/editor-plugin-annotation 1.14.3 → 1.15.0
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,17 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-annotation
|
|
2
2
|
|
|
3
|
+
## 1.15.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#119966](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/119966)
|
|
8
|
+
[`596ad24e38929`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/596ad24e38929) -
|
|
9
|
+
Clean up typescript references to LegacyPortalProviderAPI
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 1.14.3
|
|
4
16
|
|
|
5
17
|
### 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:
|
|
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:
|
|
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.
|
|
3
|
+
"version": "1.15.0",
|
|
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": "^
|
|
36
|
+
"@atlaskit/editor-common": "^85.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",
|