@atlaskit/editor-plugin-media 8.1.0 → 8.1.2
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 +18 -0
- package/dist/cjs/nodeviews/mediaSingleNext.js +1 -1
- package/dist/cjs/ui/CaptionPlaceholder/index.js +1 -1
- package/dist/cjs/ui/MediaViewer/MediaViewerContainer.js +2 -2
- package/dist/cjs/ui/toolbar/index.js +3 -3
- package/dist/es2019/nodeviews/mediaSingleNext.js +1 -1
- package/dist/es2019/ui/CaptionPlaceholder/index.js +1 -1
- package/dist/es2019/ui/MediaViewer/MediaViewerContainer.js +2 -2
- package/dist/es2019/ui/toolbar/index.js +3 -3
- package/dist/esm/nodeviews/mediaSingleNext.js +1 -1
- package/dist/esm/ui/CaptionPlaceholder/index.js +1 -1
- package/dist/esm/ui/MediaViewer/MediaViewerContainer.js +2 -2
- package/dist/esm/ui/toolbar/index.js +3 -3
- package/package.json +13 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-media
|
|
2
2
|
|
|
3
|
+
## 8.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`ef001bf65d48f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ef001bf65d48f) -
|
|
8
|
+
Remove usage of `platform_editor_toolbar_aifc` inside editor packages - instead rely on checking
|
|
9
|
+
for new toolbar plugin option, make `enableNewToolbarExperience` mandatory for consumers to opt in
|
|
10
|
+
to new toolbar experience
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
13
|
+
## 8.1.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [`bb3c94399895a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bb3c94399895a) -
|
|
18
|
+
[CONFCLOUD-82847] Fixes a bug where users cannot delete the last media card in a filmstrip using
|
|
19
|
+
the delete button in the floating toolbar
|
|
20
|
+
|
|
3
21
|
## 8.1.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -466,7 +466,7 @@ var MediaSingleNodeNext = exports.MediaSingleNodeNext = function MediaSingleNode
|
|
|
466
466
|
};
|
|
467
467
|
}, [widthType, mediaSingleWidthAttribute]);
|
|
468
468
|
var MediaChildren =
|
|
469
|
-
// eslint-disable-next-line
|
|
469
|
+
// eslint-disable-next-line @atlassian/a11y/no-noninteractive-element-interactions, @atlassian/a11y/click-events-have-key-events
|
|
470
470
|
(0, _react2.jsx)("figure", {
|
|
471
471
|
ref: mediaSingleWrapperRef,
|
|
472
472
|
css: figureWrapperStyles
|
|
@@ -42,7 +42,7 @@ var CaptionPlaceholder = exports.CaptionPlaceholder = /*#__PURE__*/_react.defaul
|
|
|
42
42
|
// This issue is a temporary fix for users being able to edit captions on edge browsers. This will be removed
|
|
43
43
|
// replaced with CaptionPlaceholderButton in the near future and this code can be removed.
|
|
44
44
|
return (
|
|
45
|
-
// eslint-disable-next-line @atlaskit/design-system/use-primitives-text,
|
|
45
|
+
// eslint-disable-next-line @atlaskit/design-system/use-primitives-text, @atlassian/a11y/click-events-have-key-events, @atlassian/a11y/no-static-element-interactions
|
|
46
46
|
(0, _react2.jsx)("span", {
|
|
47
47
|
ref: ref,
|
|
48
48
|
css: placeholder,
|
|
@@ -54,13 +54,13 @@ var MediaViewerContainer = exports.MediaViewerContainer = function MediaViewerCo
|
|
|
54
54
|
var isVideoMedia = (0, _isType.isVideo)((_mediaNode$firstChild = mediaNode.firstChild) === null || _mediaNode$firstChild === void 0 ? void 0 : _mediaNode$firstChild.attrs.__fileMimeType);
|
|
55
55
|
var shouldShowViewer = isEditorViewMode && showViewer && selectedNodeAttrs && mediaClientConfig && !isVideoMedia && (0, _experiments.editorExperiment)('platform_editor_controls', 'control');
|
|
56
56
|
return (0, _react2.jsx)(_react.Fragment, null, isEditorViewMode ? (0, _react2.jsx)(_react.Fragment, null, isInline ?
|
|
57
|
-
// eslint-disable-next-line
|
|
57
|
+
// eslint-disable-next-line @atlassian/a11y/click-events-have-key-events, @atlassian/a11y/interactive-element-not-keyboard-focusable, @atlassian/a11y/no-static-element-interactions
|
|
58
58
|
(0, _react2.jsx)("span", {
|
|
59
59
|
onClick: showMediaViewer,
|
|
60
60
|
css: interactiveStyles,
|
|
61
61
|
"data-testid": mediaViewerContainerTestID
|
|
62
62
|
}, children) :
|
|
63
|
-
// eslint-disable-next-line
|
|
63
|
+
// eslint-disable-next-line @atlassian/a11y/click-events-have-key-events, @atlassian/a11y/interactive-element-not-keyboard-focusable, @atlassian/a11y/no-static-element-interactions
|
|
64
64
|
(0, _react2.jsx)("div", {
|
|
65
65
|
onClick: showMediaViewer,
|
|
66
66
|
css: interactiveStyles,
|
|
@@ -441,7 +441,7 @@ var generateMediaSingleFloatingToolbar = function generateMediaSingleFloatingToo
|
|
|
441
441
|
}
|
|
442
442
|
|
|
443
443
|
// A separator is needed regardless switcher is enabled or not
|
|
444
|
-
if (Boolean(pluginInjectionApi === null || pluginInjectionApi === void 0 ? void 0 : pluginInjectionApi.toolbar)
|
|
444
|
+
if (Boolean(pluginInjectionApi === null || pluginInjectionApi === void 0 ? void 0 : pluginInjectionApi.toolbar)) {
|
|
445
445
|
toolbarButtons.push({
|
|
446
446
|
type: 'separator',
|
|
447
447
|
fullHeight: true
|
|
@@ -814,7 +814,7 @@ var floatingToolbar = exports.floatingToolbar = function floatingToolbar(state,
|
|
|
814
814
|
items = generateMediaSingleFloatingToolbar(state, intl, options, mediaPluginState, mediaLinkingState, pluginInjectionApi);
|
|
815
815
|
}
|
|
816
816
|
if (!mediaPluginState.isResizing && (0, _toolbarFlagCheck.areToolbarFlagsEnabled)(Boolean(pluginInjectionApi === null || pluginInjectionApi === void 0 ? void 0 : pluginInjectionApi.toolbar))) {
|
|
817
|
-
var _pluginInjectionApi$a0, _pluginInjectionApi$a1;
|
|
817
|
+
var _pluginInjectionApi$a0, _pluginInjectionApi$a1, _pluginInjectionApi$a10;
|
|
818
818
|
(0, _utils2.updateToFullHeightSeparator)(items);
|
|
819
819
|
var customOptions = [].concat((0, _toConsumableArray2.default)((0, _linking3.getLinkingDropdownOptions)(state, intl, mediaLinkingState, allowMediaInline && selectedNodeType && selectedNodeType === mediaInline, allowLinking, isViewOnly)), (0, _toConsumableArray2.default)((0, _altText2.getAltTextDropdownOption)(state, intl.formatMessage, allowAltTextOnImages, selectedNodeType, pluginInjectionApi === null || pluginInjectionApi === void 0 || (_pluginInjectionApi$a0 = pluginInjectionApi.analytics) === null || _pluginInjectionApi$a0 === void 0 ? void 0 : _pluginInjectionApi$a0.actions)), (0, _toConsumableArray2.default)((0, _pixelResizing2.getResizeDropdownOption)(options, state, intl.formatMessage, selectedNodeType)));
|
|
820
820
|
if (customOptions.length) {
|
|
@@ -847,7 +847,7 @@ var floatingToolbar = exports.floatingToolbar = function floatingToolbar(state,
|
|
|
847
847
|
})
|
|
848
848
|
}, hoverDecorationProps(nodeType, _editorSharedStyles.akEditorSelectedNodeClassName)), _objectSpread({
|
|
849
849
|
title: intl === null || intl === void 0 ? void 0 : intl.formatMessage(_messages.default.delete),
|
|
850
|
-
onClick:
|
|
850
|
+
onClick: (parentMediaGroupNode === null || parentMediaGroupNode === void 0 ? void 0 : parentMediaGroupNode.node.type) === mediaGroup && (0, _platformFeatureFlags.fg)('platform_editor_fix_media_card_removal') ? handleRemoveMediaGroupWithAnalytics(pluginInjectionApi === null || pluginInjectionApi === void 0 || (_pluginInjectionApi$a1 = pluginInjectionApi.analytics) === null || _pluginInjectionApi$a1 === void 0 ? void 0 : _pluginInjectionApi$a1.actions) : removeWithAnalytics(pluginInjectionApi === null || pluginInjectionApi === void 0 || (_pluginInjectionApi$a10 = pluginInjectionApi.analytics) === null || _pluginInjectionApi$a10 === void 0 ? void 0 : _pluginInjectionApi$a10.actions, selectedNodeType),
|
|
851
851
|
icon: /*#__PURE__*/_react.default.createElement(_delete.default, {
|
|
852
852
|
label: ""
|
|
853
853
|
})
|
|
@@ -428,7 +428,7 @@ export const MediaSingleNodeNext = mediaSingleNodeNextProps => {
|
|
|
428
428
|
};
|
|
429
429
|
}, [widthType, mediaSingleWidthAttribute]);
|
|
430
430
|
const MediaChildren =
|
|
431
|
-
// eslint-disable-next-line
|
|
431
|
+
// eslint-disable-next-line @atlassian/a11y/no-noninteractive-element-interactions, @atlassian/a11y/click-events-have-key-events
|
|
432
432
|
jsx("figure", {
|
|
433
433
|
ref: mediaSingleWrapperRef,
|
|
434
434
|
css: figureWrapperStyles
|
|
@@ -39,7 +39,7 @@ export const CaptionPlaceholder = /*#__PURE__*/React.forwardRef(({
|
|
|
39
39
|
// This issue is a temporary fix for users being able to edit captions on edge browsers. This will be removed
|
|
40
40
|
// replaced with CaptionPlaceholderButton in the near future and this code can be removed.
|
|
41
41
|
return (
|
|
42
|
-
// eslint-disable-next-line @atlaskit/design-system/use-primitives-text,
|
|
42
|
+
// eslint-disable-next-line @atlaskit/design-system/use-primitives-text, @atlassian/a11y/click-events-have-key-events, @atlassian/a11y/no-static-element-interactions
|
|
43
43
|
jsx("span", {
|
|
44
44
|
ref: ref,
|
|
45
45
|
css: placeholder,
|
|
@@ -38,13 +38,13 @@ export const MediaViewerContainer = ({
|
|
|
38
38
|
const isVideoMedia = isVideo((_mediaNode$firstChild = mediaNode.firstChild) === null || _mediaNode$firstChild === void 0 ? void 0 : _mediaNode$firstChild.attrs.__fileMimeType);
|
|
39
39
|
const shouldShowViewer = isEditorViewMode && showViewer && selectedNodeAttrs && mediaClientConfig && !isVideoMedia && editorExperiment('platform_editor_controls', 'control');
|
|
40
40
|
return jsx(Fragment, null, isEditorViewMode ? jsx(Fragment, null, isInline ?
|
|
41
|
-
// eslint-disable-next-line
|
|
41
|
+
// eslint-disable-next-line @atlassian/a11y/click-events-have-key-events, @atlassian/a11y/interactive-element-not-keyboard-focusable, @atlassian/a11y/no-static-element-interactions
|
|
42
42
|
jsx("span", {
|
|
43
43
|
onClick: showMediaViewer,
|
|
44
44
|
css: interactiveStyles,
|
|
45
45
|
"data-testid": mediaViewerContainerTestID
|
|
46
46
|
}, children) :
|
|
47
|
-
// eslint-disable-next-line
|
|
47
|
+
// eslint-disable-next-line @atlassian/a11y/click-events-have-key-events, @atlassian/a11y/interactive-element-not-keyboard-focusable, @atlassian/a11y/no-static-element-interactions
|
|
48
48
|
jsx("div", {
|
|
49
49
|
onClick: showMediaViewer,
|
|
50
50
|
css: interactiveStyles,
|
|
@@ -429,7 +429,7 @@ const generateMediaSingleFloatingToolbar = (state, intl, options, pluginState, m
|
|
|
429
429
|
}
|
|
430
430
|
|
|
431
431
|
// A separator is needed regardless switcher is enabled or not
|
|
432
|
-
if (Boolean(pluginInjectionApi === null || pluginInjectionApi === void 0 ? void 0 : pluginInjectionApi.toolbar)
|
|
432
|
+
if (Boolean(pluginInjectionApi === null || pluginInjectionApi === void 0 ? void 0 : pluginInjectionApi.toolbar)) {
|
|
433
433
|
toolbarButtons.push({
|
|
434
434
|
type: 'separator',
|
|
435
435
|
fullHeight: true
|
|
@@ -816,7 +816,7 @@ export const floatingToolbar = (state, intl, options = {}, pluginInjectionApi) =
|
|
|
816
816
|
items = generateMediaSingleFloatingToolbar(state, intl, options, mediaPluginState, mediaLinkingState, pluginInjectionApi);
|
|
817
817
|
}
|
|
818
818
|
if (!mediaPluginState.isResizing && areToolbarFlagsEnabled(Boolean(pluginInjectionApi === null || pluginInjectionApi === void 0 ? void 0 : pluginInjectionApi.toolbar))) {
|
|
819
|
-
var _pluginInjectionApi$a0, _pluginInjectionApi$a1;
|
|
819
|
+
var _pluginInjectionApi$a0, _pluginInjectionApi$a1, _pluginInjectionApi$a10;
|
|
820
820
|
updateToFullHeightSeparator(items);
|
|
821
821
|
const customOptions = [...getLinkingDropdownOptions(state, intl, mediaLinkingState, allowMediaInline && selectedNodeType && selectedNodeType === mediaInline, allowLinking, isViewOnly), ...getAltTextDropdownOption(state, intl.formatMessage, allowAltTextOnImages, selectedNodeType, pluginInjectionApi === null || pluginInjectionApi === void 0 ? void 0 : (_pluginInjectionApi$a0 = pluginInjectionApi.analytics) === null || _pluginInjectionApi$a0 === void 0 ? void 0 : _pluginInjectionApi$a0.actions), ...getResizeDropdownOption(options, state, intl.formatMessage, selectedNodeType)];
|
|
822
822
|
if (customOptions.length) {
|
|
@@ -848,7 +848,7 @@ export const floatingToolbar = (state, intl, options = {}, pluginInjectionApi) =
|
|
|
848
848
|
...hoverDecorationProps(nodeType, akEditorSelectedNodeClassName)
|
|
849
849
|
}, {
|
|
850
850
|
title: intl === null || intl === void 0 ? void 0 : intl.formatMessage(commonMessages.delete),
|
|
851
|
-
onClick:
|
|
851
|
+
onClick: (parentMediaGroupNode === null || parentMediaGroupNode === void 0 ? void 0 : parentMediaGroupNode.node.type) === mediaGroup && fg('platform_editor_fix_media_card_removal') ? handleRemoveMediaGroupWithAnalytics(pluginInjectionApi === null || pluginInjectionApi === void 0 ? void 0 : (_pluginInjectionApi$a1 = pluginInjectionApi.analytics) === null || _pluginInjectionApi$a1 === void 0 ? void 0 : _pluginInjectionApi$a1.actions) : removeWithAnalytics(pluginInjectionApi === null || pluginInjectionApi === void 0 ? void 0 : (_pluginInjectionApi$a10 = pluginInjectionApi.analytics) === null || _pluginInjectionApi$a10 === void 0 ? void 0 : _pluginInjectionApi$a10.actions, selectedNodeType),
|
|
852
852
|
icon: /*#__PURE__*/React.createElement(DeleteIcon, {
|
|
853
853
|
label: ""
|
|
854
854
|
}),
|
|
@@ -460,7 +460,7 @@ export var MediaSingleNodeNext = function MediaSingleNodeNext(mediaSingleNodeNex
|
|
|
460
460
|
};
|
|
461
461
|
}, [widthType, mediaSingleWidthAttribute]);
|
|
462
462
|
var MediaChildren =
|
|
463
|
-
// eslint-disable-next-line
|
|
463
|
+
// eslint-disable-next-line @atlassian/a11y/no-noninteractive-element-interactions, @atlassian/a11y/click-events-have-key-events
|
|
464
464
|
jsx("figure", {
|
|
465
465
|
ref: mediaSingleWrapperRef,
|
|
466
466
|
css: figureWrapperStyles
|
|
@@ -34,7 +34,7 @@ export var CaptionPlaceholder = /*#__PURE__*/React.forwardRef(function (_ref, re
|
|
|
34
34
|
// This issue is a temporary fix for users being able to edit captions on edge browsers. This will be removed
|
|
35
35
|
// replaced with CaptionPlaceholderButton in the near future and this code can be removed.
|
|
36
36
|
return (
|
|
37
|
-
// eslint-disable-next-line @atlaskit/design-system/use-primitives-text,
|
|
37
|
+
// eslint-disable-next-line @atlaskit/design-system/use-primitives-text, @atlassian/a11y/click-events-have-key-events, @atlassian/a11y/no-static-element-interactions
|
|
38
38
|
jsx("span", {
|
|
39
39
|
ref: ref,
|
|
40
40
|
css: placeholder,
|
|
@@ -44,13 +44,13 @@ export var MediaViewerContainer = function MediaViewerContainer(_ref) {
|
|
|
44
44
|
var isVideoMedia = isVideo((_mediaNode$firstChild = mediaNode.firstChild) === null || _mediaNode$firstChild === void 0 ? void 0 : _mediaNode$firstChild.attrs.__fileMimeType);
|
|
45
45
|
var shouldShowViewer = isEditorViewMode && showViewer && selectedNodeAttrs && mediaClientConfig && !isVideoMedia && editorExperiment('platform_editor_controls', 'control');
|
|
46
46
|
return jsx(Fragment, null, isEditorViewMode ? jsx(Fragment, null, isInline ?
|
|
47
|
-
// eslint-disable-next-line
|
|
47
|
+
// eslint-disable-next-line @atlassian/a11y/click-events-have-key-events, @atlassian/a11y/interactive-element-not-keyboard-focusable, @atlassian/a11y/no-static-element-interactions
|
|
48
48
|
jsx("span", {
|
|
49
49
|
onClick: showMediaViewer,
|
|
50
50
|
css: interactiveStyles,
|
|
51
51
|
"data-testid": mediaViewerContainerTestID
|
|
52
52
|
}, children) :
|
|
53
|
-
// eslint-disable-next-line
|
|
53
|
+
// eslint-disable-next-line @atlassian/a11y/click-events-have-key-events, @atlassian/a11y/interactive-element-not-keyboard-focusable, @atlassian/a11y/no-static-element-interactions
|
|
54
54
|
jsx("div", {
|
|
55
55
|
onClick: showMediaViewer,
|
|
56
56
|
css: interactiveStyles,
|
|
@@ -432,7 +432,7 @@ var generateMediaSingleFloatingToolbar = function generateMediaSingleFloatingToo
|
|
|
432
432
|
}
|
|
433
433
|
|
|
434
434
|
// A separator is needed regardless switcher is enabled or not
|
|
435
|
-
if (Boolean(pluginInjectionApi === null || pluginInjectionApi === void 0 ? void 0 : pluginInjectionApi.toolbar)
|
|
435
|
+
if (Boolean(pluginInjectionApi === null || pluginInjectionApi === void 0 ? void 0 : pluginInjectionApi.toolbar)) {
|
|
436
436
|
toolbarButtons.push({
|
|
437
437
|
type: 'separator',
|
|
438
438
|
fullHeight: true
|
|
@@ -805,7 +805,7 @@ export var floatingToolbar = function floatingToolbar(state, intl) {
|
|
|
805
805
|
items = generateMediaSingleFloatingToolbar(state, intl, options, mediaPluginState, mediaLinkingState, pluginInjectionApi);
|
|
806
806
|
}
|
|
807
807
|
if (!mediaPluginState.isResizing && areToolbarFlagsEnabled(Boolean(pluginInjectionApi === null || pluginInjectionApi === void 0 ? void 0 : pluginInjectionApi.toolbar))) {
|
|
808
|
-
var _pluginInjectionApi$a0, _pluginInjectionApi$a1;
|
|
808
|
+
var _pluginInjectionApi$a0, _pluginInjectionApi$a1, _pluginInjectionApi$a10;
|
|
809
809
|
updateToFullHeightSeparator(items);
|
|
810
810
|
var customOptions = [].concat(_toConsumableArray(getLinkingDropdownOptions(state, intl, mediaLinkingState, allowMediaInline && selectedNodeType && selectedNodeType === mediaInline, allowLinking, isViewOnly)), _toConsumableArray(getAltTextDropdownOption(state, intl.formatMessage, allowAltTextOnImages, selectedNodeType, pluginInjectionApi === null || pluginInjectionApi === void 0 || (_pluginInjectionApi$a0 = pluginInjectionApi.analytics) === null || _pluginInjectionApi$a0 === void 0 ? void 0 : _pluginInjectionApi$a0.actions)), _toConsumableArray(getResizeDropdownOption(options, state, intl.formatMessage, selectedNodeType)));
|
|
811
811
|
if (customOptions.length) {
|
|
@@ -838,7 +838,7 @@ export var floatingToolbar = function floatingToolbar(state, intl) {
|
|
|
838
838
|
})
|
|
839
839
|
}, hoverDecorationProps(nodeType, akEditorSelectedNodeClassName)), _objectSpread({
|
|
840
840
|
title: intl === null || intl === void 0 ? void 0 : intl.formatMessage(commonMessages.delete),
|
|
841
|
-
onClick:
|
|
841
|
+
onClick: (parentMediaGroupNode === null || parentMediaGroupNode === void 0 ? void 0 : parentMediaGroupNode.node.type) === mediaGroup && fg('platform_editor_fix_media_card_removal') ? handleRemoveMediaGroupWithAnalytics(pluginInjectionApi === null || pluginInjectionApi === void 0 || (_pluginInjectionApi$a1 = pluginInjectionApi.analytics) === null || _pluginInjectionApi$a1 === void 0 ? void 0 : _pluginInjectionApi$a1.actions) : removeWithAnalytics(pluginInjectionApi === null || pluginInjectionApi === void 0 || (_pluginInjectionApi$a10 = pluginInjectionApi.analytics) === null || _pluginInjectionApi$a10 === void 0 ? void 0 : _pluginInjectionApi$a10.actions, selectedNodeType),
|
|
842
842
|
icon: /*#__PURE__*/React.createElement(DeleteIcon, {
|
|
843
843
|
label: ""
|
|
844
844
|
})
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-media",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.2",
|
|
4
4
|
"description": "Media plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -38,24 +38,24 @@
|
|
|
38
38
|
"@atlaskit/editor-plugin-annotation": "^6.1.0",
|
|
39
39
|
"@atlaskit/editor-plugin-connectivity": "^6.0.0",
|
|
40
40
|
"@atlaskit/editor-plugin-decorations": "^6.1.0",
|
|
41
|
-
"@atlaskit/editor-plugin-editor-disabled": "^6.
|
|
41
|
+
"@atlaskit/editor-plugin-editor-disabled": "^6.1.0",
|
|
42
42
|
"@atlaskit/editor-plugin-editor-viewmode": "^8.0.0",
|
|
43
43
|
"@atlaskit/editor-plugin-floating-toolbar": "^8.2.0",
|
|
44
44
|
"@atlaskit/editor-plugin-focus": "^5.0.0",
|
|
45
45
|
"@atlaskit/editor-plugin-grid": "^6.0.0",
|
|
46
46
|
"@atlaskit/editor-plugin-guideline": "^6.0.0",
|
|
47
47
|
"@atlaskit/editor-plugin-interaction": "^8.0.0",
|
|
48
|
-
"@atlaskit/editor-plugin-selection": "^6.
|
|
49
|
-
"@atlaskit/editor-plugin-toolbar": "^3.
|
|
48
|
+
"@atlaskit/editor-plugin-selection": "^6.1.0",
|
|
49
|
+
"@atlaskit/editor-plugin-toolbar": "^3.2.0",
|
|
50
50
|
"@atlaskit/editor-plugin-width": "^7.0.0",
|
|
51
51
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
52
|
-
"@atlaskit/editor-shared-styles": "^3.
|
|
52
|
+
"@atlaskit/editor-shared-styles": "^3.7.0",
|
|
53
53
|
"@atlaskit/editor-tables": "^2.9.0",
|
|
54
54
|
"@atlaskit/form": "^14.2.0",
|
|
55
|
-
"@atlaskit/icon": "^28.
|
|
56
|
-
"@atlaskit/icon-lab": "^5.
|
|
55
|
+
"@atlaskit/icon": "^28.5.0",
|
|
56
|
+
"@atlaskit/icon-lab": "^5.10.0",
|
|
57
57
|
"@atlaskit/media-card": "^79.5.0",
|
|
58
|
-
"@atlaskit/media-client": "^35.
|
|
58
|
+
"@atlaskit/media-client": "^35.5.0",
|
|
59
59
|
"@atlaskit/media-client-react": "^4.1.0",
|
|
60
60
|
"@atlaskit/media-common": "^12.3.0",
|
|
61
61
|
"@atlaskit/media-filmstrip": "^51.0.0",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"@atlaskit/primitives": "^14.15.0",
|
|
67
67
|
"@atlaskit/textfield": "^8.0.0",
|
|
68
68
|
"@atlaskit/theme": "^21.0.0",
|
|
69
|
-
"@atlaskit/tmp-editor-statsig": "^13.
|
|
69
|
+
"@atlaskit/tmp-editor-statsig": "^13.10.0",
|
|
70
70
|
"@atlaskit/tokens": "^6.4.0",
|
|
71
71
|
"@atlaskit/tooltip": "^20.5.0",
|
|
72
72
|
"@babel/runtime": "^7.0.0",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"uuid": "^3.1.0"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|
|
81
|
-
"@atlaskit/editor-common": "^110.
|
|
81
|
+
"@atlaskit/editor-common": "^110.10.0",
|
|
82
82
|
"@atlaskit/media-core": "^37.0.0",
|
|
83
83
|
"react": "^18.2.0",
|
|
84
84
|
"react-dom": "^18.2.0",
|
|
@@ -162,6 +162,9 @@
|
|
|
162
162
|
},
|
|
163
163
|
"platform_media_video_captions": {
|
|
164
164
|
"type": "boolean"
|
|
165
|
+
},
|
|
166
|
+
"platform_editor_fix_media_card_removal": {
|
|
167
|
+
"type": "boolean"
|
|
165
168
|
}
|
|
166
169
|
},
|
|
167
170
|
"stricter": {
|