@atlaskit/editor-plugin-paste 3.3.5 → 3.3.7
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
|
@@ -205,7 +205,8 @@ function createPasteAnalyticsPayloadBySelection(event, slice, pasteContext, plug
|
|
|
205
205
|
mentionsInserted.push({
|
|
206
206
|
type: 'added',
|
|
207
207
|
id: node.attrs.id,
|
|
208
|
-
localId: node.attrs.localId
|
|
208
|
+
localId: node.attrs.localId,
|
|
209
|
+
method: 'pasted'
|
|
209
210
|
});
|
|
210
211
|
}
|
|
211
212
|
if (node.type.name === 'taskItem') {
|
|
@@ -215,7 +216,8 @@ function createPasteAnalyticsPayloadBySelection(event, slice, pasteContext, plug
|
|
|
215
216
|
type: 'added',
|
|
216
217
|
localId: nodeContent.attrs.localId,
|
|
217
218
|
id: nodeContent.attrs.id,
|
|
218
|
-
taskLocalId: node.attrs.localId
|
|
219
|
+
taskLocalId: node.attrs.localId,
|
|
220
|
+
method: 'pasted'
|
|
219
221
|
});
|
|
220
222
|
}
|
|
221
223
|
});
|
|
@@ -200,7 +200,8 @@ function createPasteAnalyticsPayloadBySelection(event, slice, pasteContext, plug
|
|
|
200
200
|
mentionsInserted.push({
|
|
201
201
|
type: 'added',
|
|
202
202
|
id: node.attrs.id,
|
|
203
|
-
localId: node.attrs.localId
|
|
203
|
+
localId: node.attrs.localId,
|
|
204
|
+
method: 'pasted'
|
|
204
205
|
});
|
|
205
206
|
}
|
|
206
207
|
if (node.type.name === 'taskItem') {
|
|
@@ -210,7 +211,8 @@ function createPasteAnalyticsPayloadBySelection(event, slice, pasteContext, plug
|
|
|
210
211
|
type: 'added',
|
|
211
212
|
localId: nodeContent.attrs.localId,
|
|
212
213
|
id: nodeContent.attrs.id,
|
|
213
|
-
taskLocalId: node.attrs.localId
|
|
214
|
+
taskLocalId: node.attrs.localId,
|
|
215
|
+
method: 'pasted'
|
|
214
216
|
});
|
|
215
217
|
}
|
|
216
218
|
});
|
|
@@ -193,7 +193,8 @@ function createPasteAnalyticsPayloadBySelection(event, slice, pasteContext, plug
|
|
|
193
193
|
mentionsInserted.push({
|
|
194
194
|
type: 'added',
|
|
195
195
|
id: node.attrs.id,
|
|
196
|
-
localId: node.attrs.localId
|
|
196
|
+
localId: node.attrs.localId,
|
|
197
|
+
method: 'pasted'
|
|
197
198
|
});
|
|
198
199
|
}
|
|
199
200
|
if (node.type.name === 'taskItem') {
|
|
@@ -203,7 +204,8 @@ function createPasteAnalyticsPayloadBySelection(event, slice, pasteContext, plug
|
|
|
203
204
|
type: 'added',
|
|
204
205
|
localId: nodeContent.attrs.localId,
|
|
205
206
|
id: nodeContent.attrs.id,
|
|
206
|
-
taskLocalId: node.attrs.localId
|
|
207
|
+
taskLocalId: node.attrs.localId,
|
|
208
|
+
method: 'pasted'
|
|
207
209
|
});
|
|
208
210
|
}
|
|
209
211
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-paste",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.7",
|
|
4
4
|
"description": "Paste plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -32,23 +32,23 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@atlaskit/adf-schema": "^47.6.0",
|
|
35
|
-
"@atlaskit/code": "^17.
|
|
36
|
-
"@atlaskit/editor-common": "^
|
|
35
|
+
"@atlaskit/code": "^17.2.0",
|
|
36
|
+
"@atlaskit/editor-common": "^106.0.0",
|
|
37
37
|
"@atlaskit/editor-markdown-transformer": "^5.16.0",
|
|
38
38
|
"@atlaskit/editor-plugin-analytics": "^2.3.0",
|
|
39
|
-
"@atlaskit/editor-plugin-annotation": "^2.
|
|
39
|
+
"@atlaskit/editor-plugin-annotation": "^2.9.0",
|
|
40
40
|
"@atlaskit/editor-plugin-better-type-history": "^2.1.0",
|
|
41
|
-
"@atlaskit/editor-plugin-card": "^6.
|
|
41
|
+
"@atlaskit/editor-plugin-card": "^6.4.0",
|
|
42
42
|
"@atlaskit/editor-plugin-feature-flags": "^1.4.0",
|
|
43
43
|
"@atlaskit/editor-plugin-list": "^4.2.0",
|
|
44
44
|
"@atlaskit/editor-plugin-media": "^3.0.0",
|
|
45
|
-
"@atlaskit/editor-plugin-mentions": "^4.
|
|
45
|
+
"@atlaskit/editor-plugin-mentions": "^4.7.0",
|
|
46
46
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
47
47
|
"@atlaskit/editor-tables": "^2.9.0",
|
|
48
|
-
"@atlaskit/media-client": "^33.
|
|
49
|
-
"@atlaskit/media-common": "^12.
|
|
48
|
+
"@atlaskit/media-client": "^33.3.0",
|
|
49
|
+
"@atlaskit/media-common": "^12.1.0",
|
|
50
50
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
51
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
51
|
+
"@atlaskit/tmp-editor-statsig": "^5.2.0",
|
|
52
52
|
"@babel/runtime": "^7.0.0",
|
|
53
53
|
"lodash": "^4.17.21",
|
|
54
54
|
"uuid": "^3.1.0"
|