@atlaskit/editor-core 195.4.10 → 195.5.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 +20 -0
- package/dist/cjs/create-editor/ErrorBoundary.js +13 -26
- package/dist/cjs/ui/Appearance/FullPage/FullPage.js +8 -3
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/create-editor/ErrorBoundary.js +15 -8
- package/dist/es2019/ui/Appearance/FullPage/FullPage.js +8 -3
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/create-editor/ErrorBoundary.js +14 -27
- package/dist/esm/ui/Appearance/FullPage/FullPage.js +8 -3
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/create-editor/ErrorBoundary.d.ts +0 -1
- package/dist/types-ts4.5/create-editor/ErrorBoundary.d.ts +0 -1
- package/package.json +12 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 195.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#131033](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/131033)
|
|
8
|
+
[`725d9e6250c83`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/725d9e6250c83) -
|
|
9
|
+
Add feature flag to show or hide editor toolbar in SSR
|
|
10
|
+
|
|
11
|
+
## 195.5.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [#130806](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/130806)
|
|
16
|
+
[`0354a6dc7bfb9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0354a6dc7bfb9) -
|
|
17
|
+
ENGHEALTH-9888 : Bumps React 18 in Editor
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
|
|
3
23
|
## 195.4.10
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
|
@@ -179,32 +179,19 @@ var ErrorBoundaryWithEditorView = exports.ErrorBoundaryWithEditorView = /*#__PUR
|
|
|
179
179
|
}
|
|
180
180
|
});
|
|
181
181
|
}
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
case 2:
|
|
196
|
-
this.browserExtensions = _context3.sent;
|
|
197
|
-
case 3:
|
|
198
|
-
case "end":
|
|
199
|
-
return _context3.stop();
|
|
200
|
-
}
|
|
201
|
-
}, _callee3, this);
|
|
202
|
-
}));
|
|
203
|
-
function componentDidMount() {
|
|
204
|
-
return _componentDidMount.apply(this, arguments);
|
|
205
|
-
}
|
|
206
|
-
return componentDidMount;
|
|
207
|
-
}()
|
|
182
|
+
|
|
183
|
+
// FIXME: This is causing more problems then it's solving. The async check to sniff the browser extensions is block some
|
|
184
|
+
// react unit tests. Essentially jest never completes and just hangs. This was code was added 3yrs ago so that errors
|
|
185
|
+
// would detail if the browser had grammarly extension installed or not. I'm not sure if anyone has every inspecting this
|
|
186
|
+
// as it doesn't look like any dashboards exist for it.
|
|
187
|
+
// You can see the open handles that are block tests if you run unit tests with --detectOpenHandles
|
|
188
|
+
// async componentDidMount() {
|
|
189
|
+
// this.browserExtensions = await sniffUserBrowserExtensions({
|
|
190
|
+
// extensions: ['grammarly'],
|
|
191
|
+
// async: true,
|
|
192
|
+
// asyncTimeoutMs: 20000,
|
|
193
|
+
// });
|
|
194
|
+
// }
|
|
208
195
|
}, {
|
|
209
196
|
key: "render",
|
|
210
197
|
value: function render() {
|
|
@@ -12,6 +12,7 @@ var _react2 = require("@emotion/react");
|
|
|
12
12
|
var _hooks = require("@atlaskit/editor-common/hooks");
|
|
13
13
|
var _ui = require("@atlaskit/editor-common/ui");
|
|
14
14
|
var _utils = require("@atlaskit/editor-common/utils");
|
|
15
|
+
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
15
16
|
var _FullPageContentArea = require("./FullPageContentArea");
|
|
16
17
|
var _FullPageToolbar = require("./FullPageToolbar");
|
|
17
18
|
var _StyledComponents = require("./StyledComponents");
|
|
@@ -54,7 +55,7 @@ var useShowKeyline = function useShowKeyline(contentAreaRef) {
|
|
|
54
55
|
return showKeyline;
|
|
55
56
|
};
|
|
56
57
|
var FullPageEditor = exports.FullPageEditor = function FullPageEditor(props) {
|
|
57
|
-
var _scrollContentContain, _scrollContentContain2, _scrollContentContain3, _wrapperElementRef$cu;
|
|
58
|
+
var _editorAPI$primaryToo, _scrollContentContain, _scrollContentContain2, _scrollContentContain3, _wrapperElementRef$cu;
|
|
58
59
|
var wrapperElementRef = (0, _react.useMemo)(function () {
|
|
59
60
|
return props.innerRef;
|
|
60
61
|
}, [props.innerRef]);
|
|
@@ -65,10 +66,14 @@ var FullPageEditor = exports.FullPageEditor = function FullPageEditor(props) {
|
|
|
65
66
|
editorViewModeState = _useSharedPluginState.editorViewModeState,
|
|
66
67
|
primaryToolbarState = _useSharedPluginState.primaryToolbarState;
|
|
67
68
|
var primaryToolbarComponents = props.primaryToolbarComponents;
|
|
69
|
+
var toolbarComponentsSSR = (0, _platformFeatureFlags.fg)('platform_editor_toolbar_ssr') ? editorAPI === null || editorAPI === void 0 || (_editorAPI$primaryToo = editorAPI.primaryToolbar) === null || _editorAPI$primaryToo === void 0 || (_editorAPI$primaryToo = _editorAPI$primaryToo.sharedState.currentState()) === null || _editorAPI$primaryToo === void 0 ? void 0 : _editorAPI$primaryToo.components : [];
|
|
68
70
|
if (Array.isArray(primaryToolbarComponents)) {
|
|
69
|
-
var
|
|
71
|
+
var _primaryToolbarState$;
|
|
72
|
+
var additionalComponents = (_primaryToolbarState$ = primaryToolbarState === null || primaryToolbarState === void 0 ? void 0 : primaryToolbarState.components) !== null && _primaryToolbarState$ !== void 0 ? _primaryToolbarState$ : [];
|
|
70
73
|
// The primary toolbar state may be undefined if we are in SSR environment - in which case fallback to the current state (useLayoutEffect doesn't work in SSR)
|
|
71
|
-
|
|
74
|
+
if (additionalComponents.length === 0) {
|
|
75
|
+
additionalComponents = toolbarComponentsSSR !== null && toolbarComponentsSSR !== void 0 ? toolbarComponentsSSR : [];
|
|
76
|
+
}
|
|
72
77
|
primaryToolbarComponents = additionalComponents.concat(primaryToolbarComponents);
|
|
73
78
|
}
|
|
74
79
|
var isEditorToolbarHidden = (editorViewModeState === null || editorViewModeState === void 0 ? void 0 : editorViewModeState.mode) === 'view';
|
|
@@ -6,7 +6,7 @@ import { getDocStructure } from '@atlaskit/editor-common/core-utils';
|
|
|
6
6
|
import { logException } from '@atlaskit/editor-common/monitoring';
|
|
7
7
|
import { ExperienceStore } from '@atlaskit/editor-common/ufo';
|
|
8
8
|
import { IntlErrorBoundary } from '@atlaskit/editor-common/ui';
|
|
9
|
-
import { isOutdatedBrowser
|
|
9
|
+
import { isOutdatedBrowser } from '@atlaskit/editor-common/utils';
|
|
10
10
|
import { WithEditorView } from './WithEditorView';
|
|
11
11
|
export class ErrorBoundaryWithEditorView extends React.Component {
|
|
12
12
|
constructor(props) {
|
|
@@ -126,13 +126,20 @@ export class ErrorBoundaryWithEditorView extends React.Component {
|
|
|
126
126
|
}
|
|
127
127
|
});
|
|
128
128
|
}
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
129
|
+
|
|
130
|
+
// FIXME: This is causing more problems then it's solving. The async check to sniff the browser extensions is block some
|
|
131
|
+
// react unit tests. Essentially jest never completes and just hangs. This was code was added 3yrs ago so that errors
|
|
132
|
+
// would detail if the browser had grammarly extension installed or not. I'm not sure if anyone has every inspecting this
|
|
133
|
+
// as it doesn't look like any dashboards exist for it.
|
|
134
|
+
// You can see the open handles that are block tests if you run unit tests with --detectOpenHandles
|
|
135
|
+
// async componentDidMount() {
|
|
136
|
+
// this.browserExtensions = await sniffUserBrowserExtensions({
|
|
137
|
+
// extensions: ['grammarly'],
|
|
138
|
+
// async: true,
|
|
139
|
+
// asyncTimeoutMs: 20000,
|
|
140
|
+
// });
|
|
141
|
+
// }
|
|
142
|
+
|
|
136
143
|
render() {
|
|
137
144
|
return /*#__PURE__*/React.createElement(IntlErrorBoundary, null, this.props.children);
|
|
138
145
|
}
|
|
@@ -9,6 +9,7 @@ import { jsx } from '@emotion/react';
|
|
|
9
9
|
import { useSharedPluginState } from '@atlaskit/editor-common/hooks';
|
|
10
10
|
import { ContextPanelWidthProvider } from '@atlaskit/editor-common/ui';
|
|
11
11
|
import { browser } from '@atlaskit/editor-common/utils';
|
|
12
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
12
13
|
import { FullPageContentArea } from './FullPageContentArea';
|
|
13
14
|
import { FullPageToolbar } from './FullPageToolbar';
|
|
14
15
|
import { fullPageEditorWrapper } from './StyledComponents';
|
|
@@ -37,7 +38,7 @@ const useShowKeyline = contentAreaRef => {
|
|
|
37
38
|
return showKeyline;
|
|
38
39
|
};
|
|
39
40
|
export const FullPageEditor = props => {
|
|
40
|
-
var _scrollContentContain, _scrollContentContain2, _scrollContentContain3, _wrapperElementRef$cu;
|
|
41
|
+
var _editorAPI$primaryToo, _editorAPI$primaryToo2, _scrollContentContain, _scrollContentContain2, _scrollContentContain3, _wrapperElementRef$cu;
|
|
41
42
|
const wrapperElementRef = useMemo(() => props.innerRef, [props.innerRef]);
|
|
42
43
|
const scrollContentContainerRef = useRef(null);
|
|
43
44
|
const showKeyline = useShowKeyline(scrollContentContainerRef);
|
|
@@ -47,10 +48,14 @@ export const FullPageEditor = props => {
|
|
|
47
48
|
primaryToolbarState
|
|
48
49
|
} = useSharedPluginState(editorAPI, ['editorViewMode', 'primaryToolbar']);
|
|
49
50
|
let primaryToolbarComponents = props.primaryToolbarComponents;
|
|
51
|
+
const toolbarComponentsSSR = fg('platform_editor_toolbar_ssr') ? editorAPI === null || editorAPI === void 0 ? void 0 : (_editorAPI$primaryToo = editorAPI.primaryToolbar) === null || _editorAPI$primaryToo === void 0 ? void 0 : (_editorAPI$primaryToo2 = _editorAPI$primaryToo.sharedState.currentState()) === null || _editorAPI$primaryToo2 === void 0 ? void 0 : _editorAPI$primaryToo2.components : [];
|
|
50
52
|
if (Array.isArray(primaryToolbarComponents)) {
|
|
51
|
-
var
|
|
53
|
+
var _primaryToolbarState$;
|
|
54
|
+
let additionalComponents = (_primaryToolbarState$ = primaryToolbarState === null || primaryToolbarState === void 0 ? void 0 : primaryToolbarState.components) !== null && _primaryToolbarState$ !== void 0 ? _primaryToolbarState$ : [];
|
|
52
55
|
// The primary toolbar state may be undefined if we are in SSR environment - in which case fallback to the current state (useLayoutEffect doesn't work in SSR)
|
|
53
|
-
|
|
56
|
+
if (additionalComponents.length === 0) {
|
|
57
|
+
additionalComponents = toolbarComponentsSSR !== null && toolbarComponentsSSR !== void 0 ? toolbarComponentsSSR : [];
|
|
58
|
+
}
|
|
54
59
|
primaryToolbarComponents = additionalComponents.concat(primaryToolbarComponents);
|
|
55
60
|
}
|
|
56
61
|
const isEditorToolbarHidden = (editorViewModeState === null || editorViewModeState === void 0 ? void 0 : editorViewModeState.mode) === 'view';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "195.
|
|
2
|
+
export const version = "195.5.1";
|
|
@@ -18,7 +18,7 @@ import { getDocStructure } from '@atlaskit/editor-common/core-utils';
|
|
|
18
18
|
import { logException } from '@atlaskit/editor-common/monitoring';
|
|
19
19
|
import { ExperienceStore } from '@atlaskit/editor-common/ufo';
|
|
20
20
|
import { IntlErrorBoundary } from '@atlaskit/editor-common/ui';
|
|
21
|
-
import { isOutdatedBrowser
|
|
21
|
+
import { isOutdatedBrowser } from '@atlaskit/editor-common/utils';
|
|
22
22
|
import { WithEditorView } from './WithEditorView';
|
|
23
23
|
export var ErrorBoundaryWithEditorView = /*#__PURE__*/function (_React$Component) {
|
|
24
24
|
_inherits(ErrorBoundaryWithEditorView, _React$Component);
|
|
@@ -172,32 +172,19 @@ export var ErrorBoundaryWithEditorView = /*#__PURE__*/function (_React$Component
|
|
|
172
172
|
}
|
|
173
173
|
});
|
|
174
174
|
}
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
case 2:
|
|
189
|
-
this.browserExtensions = _context3.sent;
|
|
190
|
-
case 3:
|
|
191
|
-
case "end":
|
|
192
|
-
return _context3.stop();
|
|
193
|
-
}
|
|
194
|
-
}, _callee3, this);
|
|
195
|
-
}));
|
|
196
|
-
function componentDidMount() {
|
|
197
|
-
return _componentDidMount.apply(this, arguments);
|
|
198
|
-
}
|
|
199
|
-
return componentDidMount;
|
|
200
|
-
}()
|
|
175
|
+
|
|
176
|
+
// FIXME: This is causing more problems then it's solving. The async check to sniff the browser extensions is block some
|
|
177
|
+
// react unit tests. Essentially jest never completes and just hangs. This was code was added 3yrs ago so that errors
|
|
178
|
+
// would detail if the browser had grammarly extension installed or not. I'm not sure if anyone has every inspecting this
|
|
179
|
+
// as it doesn't look like any dashboards exist for it.
|
|
180
|
+
// You can see the open handles that are block tests if you run unit tests with --detectOpenHandles
|
|
181
|
+
// async componentDidMount() {
|
|
182
|
+
// this.browserExtensions = await sniffUserBrowserExtensions({
|
|
183
|
+
// extensions: ['grammarly'],
|
|
184
|
+
// async: true,
|
|
185
|
+
// asyncTimeoutMs: 20000,
|
|
186
|
+
// });
|
|
187
|
+
// }
|
|
201
188
|
}, {
|
|
202
189
|
key: "render",
|
|
203
190
|
value: function render() {
|
|
@@ -10,6 +10,7 @@ import { jsx } from '@emotion/react';
|
|
|
10
10
|
import { useSharedPluginState } from '@atlaskit/editor-common/hooks';
|
|
11
11
|
import { ContextPanelWidthProvider } from '@atlaskit/editor-common/ui';
|
|
12
12
|
import { browser } from '@atlaskit/editor-common/utils';
|
|
13
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
13
14
|
import { FullPageContentArea } from './FullPageContentArea';
|
|
14
15
|
import { FullPageToolbar } from './FullPageToolbar';
|
|
15
16
|
import { fullPageEditorWrapper } from './StyledComponents';
|
|
@@ -43,7 +44,7 @@ var useShowKeyline = function useShowKeyline(contentAreaRef) {
|
|
|
43
44
|
return showKeyline;
|
|
44
45
|
};
|
|
45
46
|
export var FullPageEditor = function FullPageEditor(props) {
|
|
46
|
-
var _scrollContentContain, _scrollContentContain2, _scrollContentContain3, _wrapperElementRef$cu;
|
|
47
|
+
var _editorAPI$primaryToo, _scrollContentContain, _scrollContentContain2, _scrollContentContain3, _wrapperElementRef$cu;
|
|
47
48
|
var wrapperElementRef = useMemo(function () {
|
|
48
49
|
return props.innerRef;
|
|
49
50
|
}, [props.innerRef]);
|
|
@@ -54,10 +55,14 @@ export var FullPageEditor = function FullPageEditor(props) {
|
|
|
54
55
|
editorViewModeState = _useSharedPluginState.editorViewModeState,
|
|
55
56
|
primaryToolbarState = _useSharedPluginState.primaryToolbarState;
|
|
56
57
|
var primaryToolbarComponents = props.primaryToolbarComponents;
|
|
58
|
+
var toolbarComponentsSSR = fg('platform_editor_toolbar_ssr') ? editorAPI === null || editorAPI === void 0 || (_editorAPI$primaryToo = editorAPI.primaryToolbar) === null || _editorAPI$primaryToo === void 0 || (_editorAPI$primaryToo = _editorAPI$primaryToo.sharedState.currentState()) === null || _editorAPI$primaryToo === void 0 ? void 0 : _editorAPI$primaryToo.components : [];
|
|
57
59
|
if (Array.isArray(primaryToolbarComponents)) {
|
|
58
|
-
var
|
|
60
|
+
var _primaryToolbarState$;
|
|
61
|
+
var additionalComponents = (_primaryToolbarState$ = primaryToolbarState === null || primaryToolbarState === void 0 ? void 0 : primaryToolbarState.components) !== null && _primaryToolbarState$ !== void 0 ? _primaryToolbarState$ : [];
|
|
59
62
|
// The primary toolbar state may be undefined if we are in SSR environment - in which case fallback to the current state (useLayoutEffect doesn't work in SSR)
|
|
60
|
-
|
|
63
|
+
if (additionalComponents.length === 0) {
|
|
64
|
+
additionalComponents = toolbarComponentsSSR !== null && toolbarComponentsSSR !== void 0 ? toolbarComponentsSSR : [];
|
|
65
|
+
}
|
|
61
66
|
primaryToolbarComponents = additionalComponents.concat(primaryToolbarComponents);
|
|
62
67
|
}
|
|
63
68
|
var isEditorToolbarHidden = (editorViewModeState === null || editorViewModeState === void 0 ? void 0 : editorViewModeState.mode) === 'view';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "195.
|
|
2
|
+
export var version = "195.5.1";
|
|
@@ -34,7 +34,6 @@ export declare class ErrorBoundaryWithEditorView extends React.Component<ErrorBo
|
|
|
34
34
|
private fireAnalyticsEvent;
|
|
35
35
|
private getExperienceMetadata;
|
|
36
36
|
componentDidCatch(error: Error, errorInfo: ErrorInfo): void;
|
|
37
|
-
componentDidMount(): Promise<void>;
|
|
38
37
|
render(): JSX.Element;
|
|
39
38
|
}
|
|
40
39
|
declare const _default: (props: React.PropsWithChildren<Omit<ErrorBoundaryProps, "editorView">>) => JSX.Element;
|
|
@@ -34,7 +34,6 @@ export declare class ErrorBoundaryWithEditorView extends React.Component<ErrorBo
|
|
|
34
34
|
private fireAnalyticsEvent;
|
|
35
35
|
private getExperienceMetadata;
|
|
36
36
|
componentDidCatch(error: Error, errorInfo: ErrorInfo): void;
|
|
37
|
-
componentDidMount(): Promise<void>;
|
|
38
37
|
render(): JSX.Element;
|
|
39
38
|
}
|
|
40
39
|
declare const _default: (props: React.PropsWithChildren<Omit<ErrorBoundaryProps, "editorView">>) => JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "195.
|
|
3
|
+
"version": "195.5.1",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"@atlaskit/analytics-namespaced-context": "^6.11.0",
|
|
45
45
|
"@atlaskit/analytics-next": "^10.1.0",
|
|
46
46
|
"@atlaskit/analytics-next-stable-react-context": "1.0.1",
|
|
47
|
-
"@atlaskit/button": "^20.
|
|
48
|
-
"@atlaskit/editor-common": "^87.
|
|
49
|
-
"@atlaskit/editor-plugins": "^4.
|
|
47
|
+
"@atlaskit/button": "^20.1.0",
|
|
48
|
+
"@atlaskit/editor-common": "^87.13.0",
|
|
49
|
+
"@atlaskit/editor-plugins": "^4.1.0",
|
|
50
50
|
"@atlaskit/editor-prosemirror": "5.0.1",
|
|
51
51
|
"@atlaskit/editor-shared-styles": "^2.13.0",
|
|
52
52
|
"@atlaskit/emoji": "^67.7.0",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"@atlaskit/spinner": "^16.3.0",
|
|
58
58
|
"@atlaskit/task-decision": "^17.10.0",
|
|
59
59
|
"@atlaskit/theme": "^13.0.0",
|
|
60
|
-
"@atlaskit/tokens": "^1.
|
|
60
|
+
"@atlaskit/tokens": "^1.59.0",
|
|
61
61
|
"@atlaskit/tooltip": "^18.7.0",
|
|
62
62
|
"@atlaskit/width-detector": "^4.3.0",
|
|
63
63
|
"@babel/runtime": "^7.0.0",
|
|
@@ -75,8 +75,8 @@
|
|
|
75
75
|
"peerDependencies": {
|
|
76
76
|
"@atlaskit/link-provider": "^1.12.0",
|
|
77
77
|
"@atlaskit/media-core": "^34.3.0",
|
|
78
|
-
"react": "^16.8.0",
|
|
79
|
-
"react-dom": "^16.8.0",
|
|
78
|
+
"react": "^16.8.0 || ^17.0.0 || ~18.2.0",
|
|
79
|
+
"react-dom": "^16.8.0 || ^17.0.0 || ~18.2.0",
|
|
80
80
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"@atlaskit/editor-plugin-card": "^2.13.0",
|
|
92
92
|
"@atlaskit/editor-plugin-editor-viewmode": "^2.1.0",
|
|
93
93
|
"@atlaskit/editor-plugin-list": "^3.8.0",
|
|
94
|
-
"@atlaskit/editor-plugin-paste": "^1.
|
|
94
|
+
"@atlaskit/editor-plugin-paste": "^1.9.0",
|
|
95
95
|
"@atlaskit/editor-test-helpers": "*",
|
|
96
96
|
"@atlaskit/link-provider": "^1.14.0",
|
|
97
97
|
"@atlaskit/logo": "^14.2.0",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"@atlaskit/media-test-helpers": "^34.0.0",
|
|
101
101
|
"@atlaskit/modal-dialog": "^12.15.0",
|
|
102
102
|
"@atlaskit/primitives": "^12.0.0",
|
|
103
|
-
"@atlaskit/renderer": "^109.
|
|
103
|
+
"@atlaskit/renderer": "^109.50.0",
|
|
104
104
|
"@atlaskit/smart-card": "^27.16.0",
|
|
105
105
|
"@atlaskit/synchrony-test-helpers": "^2.5.0",
|
|
106
106
|
"@atlaskit/toggle": "^13.3.0",
|
|
@@ -185,10 +185,6 @@
|
|
|
185
185
|
"type": "boolean",
|
|
186
186
|
"referenceOnly": "true"
|
|
187
187
|
},
|
|
188
|
-
"platform.editor.media.fix-copy-paste-excel_62g4s": {
|
|
189
|
-
"type": "boolean",
|
|
190
|
-
"referenceOnly": "true"
|
|
191
|
-
},
|
|
192
188
|
"platform.editor.media.preview-in-full-page": {
|
|
193
189
|
"type": "boolean"
|
|
194
190
|
},
|
|
@@ -290,6 +286,9 @@
|
|
|
290
286
|
},
|
|
291
287
|
"platform_editor_element_padding_changes_gate": {
|
|
292
288
|
"type": "boolean"
|
|
289
|
+
},
|
|
290
|
+
"platform_editor_toolbar_ssr": {
|
|
291
|
+
"type": "boolean"
|
|
293
292
|
}
|
|
294
293
|
},
|
|
295
294
|
"stricter": {
|