@atlaskit/editor-plugin-paste 0.1.4 → 0.1.6

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-paste
2
2
 
3
+ ## 0.1.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 0.1.5
10
+
11
+ ### Patch Changes
12
+
13
+ - [#43042](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43042) [`fd547efa4e5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd547efa4e5) - Remove `macro` editor plugin and migrate functionality into extension plugin.
14
+
3
15
  ## 0.1.4
4
16
 
5
17
  ### Patch Changes
@@ -4,6 +4,7 @@ import type { NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/t
4
4
  import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
5
5
  import type { BetterTypeHistoryPlugin } from '@atlaskit/editor-plugin-better-type-history';
6
6
  import type { CardPlugin } from '@atlaskit/editor-plugin-card';
7
+ import type { ExtensionPlugin } from '@atlaskit/editor-plugin-extension';
7
8
  import type { FeatureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
8
9
  import type { ListPlugin } from '@atlaskit/editor-plugin-list';
9
10
  import type { MediaPlugin } from '@atlaskit/editor-plugin-media';
@@ -37,7 +38,8 @@ export type PastePlugin = NextEditorPlugin<'paste', {
37
38
  BetterTypeHistoryPlugin,
38
39
  OptionalPlugin<CardPlugin>,
39
40
  OptionalPlugin<AnalyticsPlugin>,
40
- OptionalPlugin<MediaPlugin>
41
+ OptionalPlugin<MediaPlugin>,
42
+ OptionalPlugin<ExtensionPlugin>
41
43
  ];
42
44
  sharedState: {
43
45
  lastContentPasted: LastContentPasted | null;
@@ -4,6 +4,7 @@ import type { NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/t
4
4
  import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
5
5
  import type { BetterTypeHistoryPlugin } from '@atlaskit/editor-plugin-better-type-history';
6
6
  import type { CardPlugin } from '@atlaskit/editor-plugin-card';
7
+ import type { ExtensionPlugin } from '@atlaskit/editor-plugin-extension';
7
8
  import type { FeatureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
8
9
  import type { ListPlugin } from '@atlaskit/editor-plugin-list';
9
10
  import type { MediaPlugin } from '@atlaskit/editor-plugin-media';
@@ -37,7 +38,8 @@ export type PastePlugin = NextEditorPlugin<'paste', {
37
38
  BetterTypeHistoryPlugin,
38
39
  OptionalPlugin<CardPlugin>,
39
40
  OptionalPlugin<AnalyticsPlugin>,
40
- OptionalPlugin<MediaPlugin>
41
+ OptionalPlugin<MediaPlugin>,
42
+ OptionalPlugin<ExtensionPlugin>
41
43
  ];
42
44
  sharedState: {
43
45
  lastContentPasted: LastContentPasted | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-paste",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "Paste plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -31,10 +31,10 @@
31
31
  ".": "./src/index.ts"
32
32
  },
33
33
  "dependencies": {
34
- "@atlaskit/editor-common": "^76.18.0",
34
+ "@atlaskit/editor-common": "^76.19.0",
35
35
  "@atlaskit/editor-plugin-analytics": "^0.3.0",
36
36
  "@atlaskit/editor-plugin-better-type-history": "^0.1.0",
37
- "@atlaskit/editor-plugin-card": "^0.12.0",
37
+ "@atlaskit/editor-plugin-card": "^0.13.0",
38
38
  "@atlaskit/editor-plugin-feature-flags": "^1.0.0",
39
39
  "@atlaskit/editor-plugin-list": "^1.3.0",
40
40
  "@atlaskit/editor-plugin-media": "^0.3.0",
package/report.api.md CHANGED
@@ -19,6 +19,7 @@ import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
19
19
  import type { BetterTypeHistoryPlugin } from '@atlaskit/editor-plugin-better-type-history';
20
20
  import type { CardOptions } from '@atlaskit/editor-common/card';
21
21
  import type { CardPlugin } from '@atlaskit/editor-plugin-card';
22
+ import type { ExtensionPlugin } from '@atlaskit/editor-plugin-extension';
22
23
  import type { FeatureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
23
24
  import type { ListPlugin } from '@atlaskit/editor-plugin-list';
24
25
  import type { MediaPlugin } from '@atlaskit/editor-plugin-media';
@@ -51,6 +52,7 @@ export type PastePlugin = NextEditorPlugin<
51
52
  OptionalPlugin<CardPlugin>,
52
53
  OptionalPlugin<AnalyticsPlugin>,
53
54
  OptionalPlugin<MediaPlugin>,
55
+ OptionalPlugin<ExtensionPlugin>,
54
56
  ];
55
57
  sharedState: {
56
58
  lastContentPasted: LastContentPasted | null;
@@ -8,6 +8,7 @@ import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
8
8
  import type { BetterTypeHistoryPlugin } from '@atlaskit/editor-plugin-better-type-history';
9
9
  import type { CardOptions } from '@atlaskit/editor-common/card';
10
10
  import type { CardPlugin } from '@atlaskit/editor-plugin-card';
11
+ import type { ExtensionPlugin } from '@atlaskit/editor-plugin-extension';
11
12
  import type { FeatureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
12
13
  import type { ListPlugin } from '@atlaskit/editor-plugin-list';
13
14
  import type { MediaPlugin } from '@atlaskit/editor-plugin-media';
@@ -37,7 +38,8 @@ export type PastePlugin = NextEditorPlugin<'paste', {
37
38
  BetterTypeHistoryPlugin,
38
39
  OptionalPlugin<CardPlugin>,
39
40
  OptionalPlugin<AnalyticsPlugin>,
40
- OptionalPlugin<MediaPlugin>
41
+ OptionalPlugin<MediaPlugin>,
42
+ OptionalPlugin<ExtensionPlugin>
41
43
  ];
42
44
  sharedState: {
43
45
  lastContentPasted: LastContentPasted | null;