@atlaskit/editor-plugin-paste 3.2.3 → 3.3.0
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
|
+
## 3.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#145252](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/145252)
|
|
8
|
+
[`bd0fd2a956be7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bd0fd2a956be7) -
|
|
9
|
+
[https://product-fabric.atlassian.net/browse/ED-27653](ED-27653) move the `paste`, `hyperlink`,
|
|
10
|
+
`card` plugins configuration to `@atlassian/confluence-presets` package
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 3.2.3
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -29,7 +29,7 @@ export type LastContentPasted = {
|
|
|
29
29
|
pasteSource: PasteSource;
|
|
30
30
|
};
|
|
31
31
|
export type PastePluginOptions = {
|
|
32
|
-
cardOptions?: CardOptions
|
|
32
|
+
cardOptions?: Pick<CardOptions, 'provider' | 'allowBlockCards'>;
|
|
33
33
|
sanitizePrivateContent?: boolean;
|
|
34
34
|
isFullPage?: boolean;
|
|
35
35
|
};
|
|
@@ -29,7 +29,7 @@ export type LastContentPasted = {
|
|
|
29
29
|
pasteSource: PasteSource;
|
|
30
30
|
};
|
|
31
31
|
export type PastePluginOptions = {
|
|
32
|
-
cardOptions?: CardOptions
|
|
32
|
+
cardOptions?: Pick<CardOptions, 'provider' | 'allowBlockCards'>;
|
|
33
33
|
sanitizePrivateContent?: boolean;
|
|
34
34
|
isFullPage?: boolean;
|
|
35
35
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-paste",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "Paste plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@atlaskit/adf-schema": "^47.6.0",
|
|
35
35
|
"@atlaskit/code": "^17.0.0",
|
|
36
|
-
"@atlaskit/editor-common": "^103.
|
|
36
|
+
"@atlaskit/editor-common": "^103.15.0",
|
|
37
37
|
"@atlaskit/editor-markdown-transformer": "^5.16.0",
|
|
38
38
|
"@atlaskit/editor-plugin-analytics": "^2.2.0",
|
|
39
39
|
"@atlaskit/editor-plugin-annotation": "^2.7.0",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@atlaskit/media-client": "^32.0.0",
|
|
49
49
|
"@atlaskit/media-common": "^12.0.0",
|
|
50
50
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
51
|
-
"@atlaskit/tmp-editor-statsig": "^4.
|
|
51
|
+
"@atlaskit/tmp-editor-statsig": "^4.13.0",
|
|
52
52
|
"@babel/runtime": "^7.0.0",
|
|
53
53
|
"lodash": "^4.17.21",
|
|
54
54
|
"uuid": "^3.1.0"
|