@atlaskit/editor-plugin-paste 0.1.20 → 0.1.22

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,18 @@
1
1
  # @atlaskit/editor-plugin-paste
2
2
 
3
+ ## 0.1.22
4
+
5
+ ### Patch Changes
6
+
7
+ - [#63348](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63348) [`2d6eebf2ed74`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2d6eebf2ed74) - Extract annotation plugin from editor-core to @atlaskit/editor-plugin-annotation.
8
+ - Updated dependencies
9
+
10
+ ## 0.1.21
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies
15
+
3
16
  ## 0.1.20
4
17
 
5
18
  ### Patch Changes
@@ -2,6 +2,7 @@ import type { PasteSource } from '@atlaskit/editor-common/analytics';
2
2
  import type { CardOptions } from '@atlaskit/editor-common/card';
3
3
  import type { NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
4
4
  import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
5
+ import type { AnnotationPlugin } from '@atlaskit/editor-plugin-annotation';
5
6
  import type { BetterTypeHistoryPlugin } from '@atlaskit/editor-plugin-better-type-history';
6
7
  import type { CardPlugin } from '@atlaskit/editor-plugin-card';
7
8
  import type { ExtensionPlugin } from '@atlaskit/editor-plugin-extension';
@@ -39,7 +40,8 @@ export type PastePlugin = NextEditorPlugin<'paste', {
39
40
  OptionalPlugin<CardPlugin>,
40
41
  OptionalPlugin<AnalyticsPlugin>,
41
42
  OptionalPlugin<MediaPlugin>,
42
- OptionalPlugin<ExtensionPlugin>
43
+ OptionalPlugin<ExtensionPlugin>,
44
+ OptionalPlugin<AnnotationPlugin>
43
45
  ];
44
46
  sharedState: {
45
47
  lastContentPasted: LastContentPasted | null;
@@ -2,6 +2,7 @@ import type { PasteSource } from '@atlaskit/editor-common/analytics';
2
2
  import type { CardOptions } from '@atlaskit/editor-common/card';
3
3
  import type { NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
4
4
  import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
5
+ import type { AnnotationPlugin } from '@atlaskit/editor-plugin-annotation';
5
6
  import type { BetterTypeHistoryPlugin } from '@atlaskit/editor-plugin-better-type-history';
6
7
  import type { CardPlugin } from '@atlaskit/editor-plugin-card';
7
8
  import type { ExtensionPlugin } from '@atlaskit/editor-plugin-extension';
@@ -39,7 +40,8 @@ export type PastePlugin = NextEditorPlugin<'paste', {
39
40
  OptionalPlugin<CardPlugin>,
40
41
  OptionalPlugin<AnalyticsPlugin>,
41
42
  OptionalPlugin<MediaPlugin>,
42
- OptionalPlugin<ExtensionPlugin>
43
+ OptionalPlugin<ExtensionPlugin>,
44
+ OptionalPlugin<AnnotationPlugin>
43
45
  ];
44
46
  sharedState: {
45
47
  lastContentPasted: LastContentPasted | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-paste",
3
- "version": "0.1.20",
3
+ "version": "0.1.22",
4
4
  "description": "Paste plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -10,7 +10,8 @@
10
10
  "atlassian": {
11
11
  "team": "Editor: Lego",
12
12
  "inPublicMirror": false,
13
- "releaseModel": "continuous"
13
+ "releaseModel": "continuous",
14
+ "runReact18": false
14
15
  },
15
16
  "repository": "https://bitbucket.org/atlassian/atlassian-frontend",
16
17
  "main": "dist/cjs/index.js",
@@ -31,13 +32,14 @@
31
32
  ".": "./src/index.ts"
32
33
  },
33
34
  "dependencies": {
34
- "@atlaskit/editor-common": "^76.28.0",
35
+ "@atlaskit/editor-common": "^76.29.0",
35
36
  "@atlaskit/editor-plugin-analytics": "^0.4.0",
37
+ "@atlaskit/editor-plugin-annotation": "^0.1.0",
36
38
  "@atlaskit/editor-plugin-better-type-history": "^0.1.0",
37
39
  "@atlaskit/editor-plugin-card": "^0.14.0",
38
40
  "@atlaskit/editor-plugin-feature-flags": "^1.0.0",
39
41
  "@atlaskit/editor-plugin-list": "^3.0.0",
40
- "@atlaskit/editor-plugin-media": "^0.7.0",
42
+ "@atlaskit/editor-plugin-media": "^0.8.0",
41
43
  "@babel/runtime": "^7.0.0"
42
44
  },
43
45
  "peerDependencies": {