@atlaskit/editor-plugin-clipboard 7.1.1 → 8.0.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,19 @@
1
1
  # @atlaskit/editor-plugin-clipboard
2
2
 
3
+ ## 8.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`5892e575833a1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5892e575833a1) -
8
+ Internal changes to remove unnecessary token fallbacks and imports from `@atlaskit/theme`
9
+ - Updated dependencies
10
+
11
+ ## 8.0.0
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies
16
+
3
17
  ## 7.1.1
4
18
 
5
19
  ### Patch Changes
@@ -9,7 +9,7 @@ export declare enum ClipboardEventType {
9
9
  CUT = "CUT",
10
10
  COPY = "COPY"
11
11
  }
12
- export declare const createPlugin: ({ dispatchAnalyticsEvent, schema }: PMPluginFactoryParams) => SafePlugin<any>;
12
+ export declare const createPlugin: ({ dispatchAnalyticsEvent, schema, }: PMPluginFactoryParams) => SafePlugin;
13
13
  /**
14
14
  * Overrides Prosemirror's default clipboardSerializer, in order to fix table row copy/paste bug raised in ED-13003.
15
15
  * This allows us to store the original table’s attributes on the new table that the row is wrapped with when it is being copied.
@@ -1,2 +1,2 @@
1
1
  import { PluginKey } from '@atlaskit/editor-prosemirror/state';
2
- export declare const clipboardPluginKey: PluginKey<any>;
2
+ export declare const clipboardPluginKey: PluginKey;
@@ -9,7 +9,7 @@ export declare enum ClipboardEventType {
9
9
  CUT = "CUT",
10
10
  COPY = "COPY"
11
11
  }
12
- export declare const createPlugin: ({ dispatchAnalyticsEvent, schema }: PMPluginFactoryParams) => SafePlugin<any>;
12
+ export declare const createPlugin: ({ dispatchAnalyticsEvent, schema, }: PMPluginFactoryParams) => SafePlugin;
13
13
  /**
14
14
  * Overrides Prosemirror's default clipboardSerializer, in order to fix table row copy/paste bug raised in ED-13003.
15
15
  * This allows us to store the original table’s attributes on the new table that the row is wrapped with when it is being copied.
@@ -1,2 +1,2 @@
1
1
  import { PluginKey } from '@atlaskit/editor-prosemirror/state';
2
- export declare const clipboardPluginKey: PluginKey<any>;
2
+ export declare const clipboardPluginKey: PluginKey;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-clipboard",
3
- "version": "7.1.1",
3
+ "version": "8.0.1",
4
4
  "description": "Clipboard plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -32,7 +32,7 @@
32
32
  "@babel/runtime": "^7.0.0"
33
33
  },
34
34
  "peerDependencies": {
35
- "@atlaskit/editor-common": "^111.24.0",
35
+ "@atlaskit/editor-common": "^112.10.0",
36
36
  "react": "^18.2.0",
37
37
  "react-dom": "^18.2.0"
38
38
  },