@atlaskit/editor-plugin-clipboard 1.3.13 → 1.3.14

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,11 @@
1
1
  # @atlaskit/editor-plugin-clipboard
2
2
 
3
+ ## 1.3.14
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 1.3.13
4
10
 
5
11
  ### Patch Changes
@@ -52,7 +52,10 @@ export const createClipboardSerializer = (schema, getEditorView) => {
52
52
  const oldSerializer = DOMSerializer.fromSchema(schema);
53
53
  const newSerializer = new DOMSerializer(oldSerializer.nodes, oldSerializer.marks);
54
54
  const originalSerializeFragment = newSerializer.serializeFragment.bind(newSerializer);
55
- newSerializer.serializeFragment = (content, options = {}, target) => {
55
+ newSerializer.serializeFragment = (content,
56
+ // Ignored via go/ees005
57
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
58
+ options = {}, target) => {
56
59
  var _content$firstChild, _content$firstChild2;
57
60
  const editorView = getEditorView();
58
61
  const selection = editorView.state.selection;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-clipboard",
3
- "version": "1.3.13",
3
+ "version": "1.3.14",
4
4
  "description": "Clipboard plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -31,7 +31,7 @@
31
31
  ".": "./src/index.ts"
32
32
  },
33
33
  "dependencies": {
34
- "@atlaskit/editor-common": "^97.0.0",
34
+ "@atlaskit/editor-common": "^98.0.0",
35
35
  "@atlaskit/editor-prosemirror": "6.2.1",
36
36
  "@babel/runtime": "^7.0.0"
37
37
  },