@atlaskit/editor-plugin-paste 1.7.3 → 1.8.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 +22 -0
- package/dist/cjs/handlers.js +1 -2
- package/dist/cjs/plugins/media.js +2 -2
- package/dist/es2019/handlers.js +1 -2
- package/dist/es2019/plugins/media.js +3 -3
- package/dist/esm/handlers.js +1 -2
- package/dist/esm/plugins/media.js +3 -3
- package/package.json +12 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-paste
|
|
2
2
|
|
|
3
|
+
## 1.8.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#129252](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/129252)
|
|
8
|
+
[`d4ea158a91fde`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d4ea158a91fde) -
|
|
9
|
+
Cleaned up FF platform.editor.allow-action-in-list
|
|
10
|
+
|
|
11
|
+
## 1.8.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [#128347](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/128347)
|
|
16
|
+
[`e33566cebd5d1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e33566cebd5d1) -
|
|
17
|
+
[ED-24175] bump @atlaskit/adf-schema to 40.8.1 and @atlassian/adf-schema-json to 1.22.0 to
|
|
18
|
+
promotecodeblocks & media in quotes, and nested expands in expands to full schema, and allow
|
|
19
|
+
quotes in panels and decisions in lists in stage0 schema, and a validator spec change
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
|
|
3
25
|
## 1.7.3
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/dist/cjs/handlers.js
CHANGED
|
@@ -38,7 +38,6 @@ var _model = require("@atlaskit/editor-prosemirror/model");
|
|
|
38
38
|
var _state = require("@atlaskit/editor-prosemirror/state");
|
|
39
39
|
var _utils2 = require("@atlaskit/editor-prosemirror/utils");
|
|
40
40
|
var _utils3 = require("@atlaskit/editor-tables/utils");
|
|
41
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
42
41
|
var _commands = require("./commands");
|
|
43
42
|
var _edgeCases = require("./edge-cases");
|
|
44
43
|
var _lists = require("./edge-cases/lists");
|
|
@@ -1038,5 +1037,5 @@ var handleSelectedTable = exports.handleSelectedTable = function handleSelectedT
|
|
|
1038
1037
|
};
|
|
1039
1038
|
function checkTaskListInList(state, slice) {
|
|
1040
1039
|
var _slice$content$firstC4;
|
|
1041
|
-
return Boolean((0, _utils.isInListItem)(state) && ['taskList', 'taskItem'].includes(((_slice$content$firstC4 = slice.content.firstChild) === null || _slice$content$firstC4 === void 0 || (_slice$content$firstC4 = _slice$content$firstC4.type) === null || _slice$content$firstC4 === void 0 ? void 0 : _slice$content$firstC4.name) || '')
|
|
1040
|
+
return Boolean((0, _utils.isInListItem)(state) && ['taskList', 'taskItem'].includes(((_slice$content$firstC4 = slice.content.firstChild) === null || _slice$content$firstC4 === void 0 || (_slice$content$firstC4 = _slice$content$firstC4.type) === null || _slice$content$firstC4 === void 0 ? void 0 : _slice$content$firstC4.name) || ''));
|
|
1042
1041
|
}
|
|
@@ -33,7 +33,7 @@ function transformSliceForMedia(slice, schema) {
|
|
|
33
33
|
var newSlice = slice;
|
|
34
34
|
if ((0, _utils2.hasParentNodeOfType)([layoutSection, table, bulletList, orderedList, expand, nestedExpand])(selection)) {
|
|
35
35
|
newSlice = (0, _utils.mapSlice)(newSlice, function (node) {
|
|
36
|
-
var extendedOrLegacyAttrs = (0, _platformFeatureFlags.
|
|
36
|
+
var extendedOrLegacyAttrs = (0, _platformFeatureFlags.fg)('platform.editor.media.extended-resize-experience') ? {
|
|
37
37
|
layout: node.attrs.layout,
|
|
38
38
|
widthType: node.attrs.widthType,
|
|
39
39
|
width: node.attrs.width
|
|
@@ -96,7 +96,7 @@ var transformSliceToMediaSingleWithNewExperience = exports.transformSliceToMedia
|
|
|
96
96
|
// The duplication is in the following file:
|
|
97
97
|
// packages/editor/editor-plugin-ai/src/prebuilt/content-transformers/markdown-to-pm/markdown-transformer.ts
|
|
98
98
|
if (node.type === mediaSingle) {
|
|
99
|
-
return (0, _platformFeatureFlags.
|
|
99
|
+
return (0, _platformFeatureFlags.fg)('platform.editor.media.extended-resize-experience') ? mediaSingle.createChecked({
|
|
100
100
|
width: node.attrs.width || _mediaSingle.DEFAULT_IMAGE_WIDTH,
|
|
101
101
|
widthType: node.attrs.widthType || 'pixel',
|
|
102
102
|
layout: node.attrs.layout
|
package/dist/es2019/handlers.js
CHANGED
|
@@ -9,7 +9,6 @@ import { Fragment, Node as PMNode, Slice } from '@atlaskit/editor-prosemirror/mo
|
|
|
9
9
|
import { NodeSelection, TextSelection } from '@atlaskit/editor-prosemirror/state';
|
|
10
10
|
import { canInsert, contains, findParentNodeOfType, findParentNodeOfTypeClosestToPos, hasParentNode, hasParentNodeOfType, safeInsert } from '@atlaskit/editor-prosemirror/utils';
|
|
11
11
|
import { replaceSelectedTable } from '@atlaskit/editor-tables/utils';
|
|
12
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
13
12
|
// TODO: ED-20519 Needs Macro extraction
|
|
14
13
|
|
|
15
14
|
import { startTrackingPastedMacroPositions, stopTrackingPastedMacroPositions } from './commands';
|
|
@@ -1014,5 +1013,5 @@ export const handleSelectedTable = editorAnalyticsAPI => slice => (state, dispat
|
|
|
1014
1013
|
};
|
|
1015
1014
|
export function checkTaskListInList(state, slice) {
|
|
1016
1015
|
var _slice$content$firstC4, _slice$content$firstC5;
|
|
1017
|
-
return Boolean(isInListItem(state) && ['taskList', 'taskItem'].includes(((_slice$content$firstC4 = slice.content.firstChild) === null || _slice$content$firstC4 === void 0 ? void 0 : (_slice$content$firstC5 = _slice$content$firstC4.type) === null || _slice$content$firstC5 === void 0 ? void 0 : _slice$content$firstC5.name) || '')
|
|
1016
|
+
return Boolean(isInListItem(state) && ['taskList', 'taskItem'].includes(((_slice$content$firstC4 = slice.content.firstChild) === null || _slice$content$firstC4 === void 0 ? void 0 : (_slice$content$firstC5 = _slice$content$firstC4.type) === null || _slice$content$firstC5 === void 0 ? void 0 : _slice$content$firstC5.name) || ''));
|
|
1018
1017
|
}
|
|
@@ -2,7 +2,7 @@ import { DEFAULT_IMAGE_WIDTH } from '@atlaskit/editor-common/media-single';
|
|
|
2
2
|
import { mapSlice, removeNestedEmptyEls, unwrap, walkUpTreeUntil } from '@atlaskit/editor-common/utils';
|
|
3
3
|
import { hasParentNodeOfType } from '@atlaskit/editor-prosemirror/utils';
|
|
4
4
|
import { getRandomHex } from '@atlaskit/media-common';
|
|
5
|
-
import {
|
|
5
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* Ensure correct layout in nested mode
|
|
@@ -23,7 +23,7 @@ export function transformSliceForMedia(slice, schema) {
|
|
|
23
23
|
let newSlice = slice;
|
|
24
24
|
if (hasParentNodeOfType([layoutSection, table, bulletList, orderedList, expand, nestedExpand])(selection)) {
|
|
25
25
|
newSlice = mapSlice(newSlice, node => {
|
|
26
|
-
const extendedOrLegacyAttrs =
|
|
26
|
+
const extendedOrLegacyAttrs = fg('platform.editor.media.extended-resize-experience') ? {
|
|
27
27
|
layout: node.attrs.layout,
|
|
28
28
|
widthType: node.attrs.widthType,
|
|
29
29
|
width: node.attrs.width
|
|
@@ -91,7 +91,7 @@ export const transformSliceToMediaSingleWithNewExperience = (slice, schema) => {
|
|
|
91
91
|
// The duplication is in the following file:
|
|
92
92
|
// packages/editor/editor-plugin-ai/src/prebuilt/content-transformers/markdown-to-pm/markdown-transformer.ts
|
|
93
93
|
if (node.type === mediaSingle) {
|
|
94
|
-
return
|
|
94
|
+
return fg('platform.editor.media.extended-resize-experience') ? mediaSingle.createChecked({
|
|
95
95
|
width: node.attrs.width || DEFAULT_IMAGE_WIDTH,
|
|
96
96
|
widthType: node.attrs.widthType || 'pixel',
|
|
97
97
|
layout: node.attrs.layout
|
package/dist/esm/handlers.js
CHANGED
|
@@ -17,7 +17,6 @@ import { Fragment, Node as PMNode, Slice } from '@atlaskit/editor-prosemirror/mo
|
|
|
17
17
|
import { NodeSelection, TextSelection } from '@atlaskit/editor-prosemirror/state';
|
|
18
18
|
import { canInsert, contains, findParentNodeOfType, findParentNodeOfTypeClosestToPos, hasParentNode, hasParentNodeOfType, safeInsert } from '@atlaskit/editor-prosemirror/utils';
|
|
19
19
|
import { replaceSelectedTable } from '@atlaskit/editor-tables/utils';
|
|
20
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
21
20
|
// TODO: ED-20519 Needs Macro extraction
|
|
22
21
|
|
|
23
22
|
import { startTrackingPastedMacroPositions, stopTrackingPastedMacroPositions } from './commands';
|
|
@@ -1015,5 +1014,5 @@ export var handleSelectedTable = function handleSelectedTable(editorAnalyticsAPI
|
|
|
1015
1014
|
};
|
|
1016
1015
|
export function checkTaskListInList(state, slice) {
|
|
1017
1016
|
var _slice$content$firstC4;
|
|
1018
|
-
return Boolean(isInListItem(state) && ['taskList', 'taskItem'].includes(((_slice$content$firstC4 = slice.content.firstChild) === null || _slice$content$firstC4 === void 0 || (_slice$content$firstC4 = _slice$content$firstC4.type) === null || _slice$content$firstC4 === void 0 ? void 0 : _slice$content$firstC4.name) || '')
|
|
1017
|
+
return Boolean(isInListItem(state) && ['taskList', 'taskItem'].includes(((_slice$content$firstC4 = slice.content.firstChild) === null || _slice$content$firstC4 === void 0 || (_slice$content$firstC4 = _slice$content$firstC4.type) === null || _slice$content$firstC4 === void 0 ? void 0 : _slice$content$firstC4.name) || ''));
|
|
1019
1018
|
}
|
|
@@ -5,7 +5,7 @@ import { DEFAULT_IMAGE_WIDTH } from '@atlaskit/editor-common/media-single';
|
|
|
5
5
|
import { mapSlice, removeNestedEmptyEls, unwrap, walkUpTreeUntil } from '@atlaskit/editor-common/utils';
|
|
6
6
|
import { hasParentNodeOfType } from '@atlaskit/editor-prosemirror/utils';
|
|
7
7
|
import { getRandomHex } from '@atlaskit/media-common';
|
|
8
|
-
import {
|
|
8
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
11
|
* Ensure correct layout in nested mode
|
|
@@ -25,7 +25,7 @@ export function transformSliceForMedia(slice, schema) {
|
|
|
25
25
|
var newSlice = slice;
|
|
26
26
|
if (hasParentNodeOfType([layoutSection, table, bulletList, orderedList, expand, nestedExpand])(selection)) {
|
|
27
27
|
newSlice = mapSlice(newSlice, function (node) {
|
|
28
|
-
var extendedOrLegacyAttrs =
|
|
28
|
+
var extendedOrLegacyAttrs = fg('platform.editor.media.extended-resize-experience') ? {
|
|
29
29
|
layout: node.attrs.layout,
|
|
30
30
|
widthType: node.attrs.widthType,
|
|
31
31
|
width: node.attrs.width
|
|
@@ -88,7 +88,7 @@ export var transformSliceToMediaSingleWithNewExperience = function transformSlic
|
|
|
88
88
|
// The duplication is in the following file:
|
|
89
89
|
// packages/editor/editor-plugin-ai/src/prebuilt/content-transformers/markdown-to-pm/markdown-transformer.ts
|
|
90
90
|
if (node.type === mediaSingle) {
|
|
91
|
-
return
|
|
91
|
+
return fg('platform.editor.media.extended-resize-experience') ? mediaSingle.createChecked({
|
|
92
92
|
width: node.attrs.width || DEFAULT_IMAGE_WIDTH,
|
|
93
93
|
widthType: node.attrs.widthType || 'pixel',
|
|
94
94
|
layout: node.attrs.layout
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-paste",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.1",
|
|
4
4
|
"description": "Paste plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
".": "./src/index.ts"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@atlaskit/editor-common": "^87.
|
|
37
|
-
"@atlaskit/editor-markdown-transformer": "^5.
|
|
38
|
-
"@atlaskit/editor-plugin-analytics": "^1.
|
|
39
|
-
"@atlaskit/editor-plugin-annotation": "^1.
|
|
40
|
-
"@atlaskit/editor-plugin-better-type-history": "^1.
|
|
41
|
-
"@atlaskit/editor-plugin-card": "^2.
|
|
36
|
+
"@atlaskit/editor-common": "^87.10.0",
|
|
37
|
+
"@atlaskit/editor-markdown-transformer": "^5.11.0",
|
|
38
|
+
"@atlaskit/editor-plugin-analytics": "^1.7.0",
|
|
39
|
+
"@atlaskit/editor-plugin-annotation": "^1.19.0",
|
|
40
|
+
"@atlaskit/editor-plugin-better-type-history": "^1.7.0",
|
|
41
|
+
"@atlaskit/editor-plugin-card": "^2.13.0",
|
|
42
42
|
"@atlaskit/editor-plugin-feature-flags": "^1.2.0",
|
|
43
|
-
"@atlaskit/editor-plugin-list": "^3.
|
|
44
|
-
"@atlaskit/editor-plugin-media": "^1.
|
|
43
|
+
"@atlaskit/editor-plugin-list": "^3.8.0",
|
|
44
|
+
"@atlaskit/editor-plugin-media": "^1.28.0",
|
|
45
45
|
"@atlaskit/editor-prosemirror": "5.0.1",
|
|
46
46
|
"@atlaskit/editor-tables": "^2.8.0",
|
|
47
47
|
"@atlaskit/media-client": "^27.3.0",
|
|
@@ -56,10 +56,10 @@
|
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@af/visual-regression": "*",
|
|
59
|
-
"@atlaskit/adf-schema": "^40.
|
|
60
|
-
"@atlaskit/editor-plugin-block-type": "^3.
|
|
59
|
+
"@atlaskit/adf-schema": "^40.8.1",
|
|
60
|
+
"@atlaskit/editor-plugin-block-type": "^3.12.0",
|
|
61
61
|
"@atlaskit/editor-plugin-history": "^1.2.0",
|
|
62
|
-
"@atlaskit/editor-plugin-type-ahead": "^1.
|
|
62
|
+
"@atlaskit/editor-plugin-type-ahead": "^1.7.0",
|
|
63
63
|
"@atlaskit/ssr": "*",
|
|
64
64
|
"@atlaskit/visual-regression": "*",
|
|
65
65
|
"@testing-library/react": "^12.1.5",
|
|
@@ -112,9 +112,6 @@
|
|
|
112
112
|
"platform.editor.media.extended-resize-experience": {
|
|
113
113
|
"type": "boolean"
|
|
114
114
|
},
|
|
115
|
-
"platform.editor.allow-action-in-list": {
|
|
116
|
-
"type": "boolean"
|
|
117
|
-
},
|
|
118
115
|
"platform.editor.media.fix-copy-paste-excel_62g4s": {
|
|
119
116
|
"type": "boolean"
|
|
120
117
|
},
|