@atlaskit/editor-plugin-card 4.3.11 → 4.4.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 +30 -0
- package/dist/cjs/toolbar.js +4 -4
- package/dist/cjs/ui/EditToolbarButton/index.js +22 -25
- package/dist/es2019/toolbar.js +4 -4
- package/dist/es2019/ui/EditToolbarButton/index.js +22 -25
- package/dist/esm/toolbar.js +4 -4
- package/dist/esm/ui/EditToolbarButton/index.js +22 -25
- package/dist/types/toolbar.d.ts +1 -1
- package/dist/types-ts4.5/toolbar.d.ts +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-card
|
|
2
2
|
|
|
3
|
+
## 4.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#163012](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/163012)
|
|
8
|
+
[`3b6b07774a436`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3b6b07774a436) -
|
|
9
|
+
Removes window.open call within link preferences button on click handler in toolbar to prevent
|
|
10
|
+
duplicate opening of link
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
13
|
+
## 4.4.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [#161054](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/161054)
|
|
18
|
+
[`20f069140338e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/20f069140338e) -
|
|
19
|
+
Remove enable_datasource_nourl_edit_dropdown_datafetch FF
|
|
20
|
+
|
|
21
|
+
## 4.4.0
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- [#159018](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/159018)
|
|
26
|
+
[`14d5e189df870`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/14d5e189df870) -
|
|
27
|
+
[ux] ED-25367-remove-copy-button-from-view-mode-when-its-the-only-item
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies
|
|
32
|
+
|
|
3
33
|
## 4.3.11
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
package/dist/cjs/toolbar.js
CHANGED
|
@@ -26,6 +26,7 @@ var _remove = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/remove
|
|
|
26
26
|
var _settings2 = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/settings"));
|
|
27
27
|
var _unlink = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/unlink"));
|
|
28
28
|
var _shortcut = _interopRequireDefault(require("@atlaskit/icon/glyph/shortcut"));
|
|
29
|
+
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
29
30
|
var _doc = require("./pm-plugins/doc");
|
|
30
31
|
var _main = require("./pm-plugins/main");
|
|
31
32
|
var _DatasourceAppearanceButton = require("./ui/DatasourceAppearanceButton");
|
|
@@ -86,12 +87,11 @@ var visitCardLink = exports.visitCardLink = function visitCardLink(editorAnalyti
|
|
|
86
87
|
return true;
|
|
87
88
|
};
|
|
88
89
|
};
|
|
89
|
-
var openLinkSettings = exports.openLinkSettings = function openLinkSettings(editorAnalyticsApi
|
|
90
|
+
var openLinkSettings = exports.openLinkSettings = function openLinkSettings(editorAnalyticsApi) {
|
|
90
91
|
return function (state, dispatch) {
|
|
91
92
|
if (!(state.selection instanceof _state.NodeSelection)) {
|
|
92
93
|
return false;
|
|
93
94
|
}
|
|
94
|
-
window.open(userPreferencesLink || (0, _link.getLinkPreferencesURLFromENV)());
|
|
95
95
|
if (dispatch) {
|
|
96
96
|
var tr = state.tr,
|
|
97
97
|
type = state.selection.node.type;
|
|
@@ -262,7 +262,7 @@ var generateToolbarItems = function generateToolbarItems(state, intl, providerFa
|
|
|
262
262
|
type: 'separator'
|
|
263
263
|
}], (0, _toConsumableArray2.default)(getUnlinkButtonGroup(state, intl, node, inlineCard, editorAnalyticsApi)), [{
|
|
264
264
|
type: 'copy-button',
|
|
265
|
-
supportsViewMode:
|
|
265
|
+
supportsViewMode: !(0, _platformFeatureFlags.fg)('platform_editor_remove_copy_button_from_view_mode'),
|
|
266
266
|
items: [{
|
|
267
267
|
state: state,
|
|
268
268
|
formatMessage: intl.formatMessage,
|
|
@@ -362,7 +362,7 @@ var getSettingsButton = exports.getSettingsButton = function getSettingsButton(i
|
|
|
362
362
|
icon: _settings.default,
|
|
363
363
|
iconFallback: _settings2.default,
|
|
364
364
|
title: intl.formatMessage(_messages.linkToolbarMessages.settingsLink),
|
|
365
|
-
onClick: openLinkSettings(editorAnalyticsApi
|
|
365
|
+
onClick: openLinkSettings(editorAnalyticsApi),
|
|
366
366
|
href: userPreferencesLink || (0, _link.getLinkPreferencesURLFromENV)(),
|
|
367
367
|
target: '_blank'
|
|
368
368
|
};
|
|
@@ -15,7 +15,6 @@ var _ui = require("@atlaskit/editor-common/ui");
|
|
|
15
15
|
var _uiMenu = require("@atlaskit/editor-common/ui-menu");
|
|
16
16
|
var _chevronDown = _interopRequireDefault(require("@atlaskit/icon/glyph/chevron-down"));
|
|
17
17
|
var _menu = require("@atlaskit/menu");
|
|
18
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
19
18
|
var _primitives = require("@atlaskit/primitives");
|
|
20
19
|
var _utils = require("../../utils");
|
|
21
20
|
var _CardContextProvider = require("../CardContextProvider");
|
|
@@ -253,30 +252,28 @@ var EditToolbarButton = exports.EditToolbarButton = function EditToolbarButton(p
|
|
|
253
252
|
url = props.url;
|
|
254
253
|
return (0, _react2.jsx)(_CardContextProvider.CardContextProvider, null, function (_ref) {
|
|
255
254
|
var cardContext = _ref.cardContext;
|
|
256
|
-
if (
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
});
|
|
279
|
-
}
|
|
255
|
+
if (props.url) {
|
|
256
|
+
return (0, _react2.jsx)(EditToolbarButtonWithUrl, {
|
|
257
|
+
datasourceId: datasourceId,
|
|
258
|
+
url: props.url,
|
|
259
|
+
intl: intl,
|
|
260
|
+
editorAnalyticsApi: editorAnalyticsApi,
|
|
261
|
+
editorView: editorView,
|
|
262
|
+
cardContext: cardContext,
|
|
263
|
+
onLinkEditClick: onLinkEditClick,
|
|
264
|
+
currentAppearance: currentAppearance
|
|
265
|
+
});
|
|
266
|
+
}
|
|
267
|
+
if (props.datasourceId && props.node) {
|
|
268
|
+
return (0, _react2.jsx)(EditToolbarButtonWithDatasourceId, {
|
|
269
|
+
datasourceId: props.datasourceId,
|
|
270
|
+
node: props.node,
|
|
271
|
+
intl: intl,
|
|
272
|
+
editorAnalyticsApi: editorAnalyticsApi,
|
|
273
|
+
editorView: editorView,
|
|
274
|
+
onLinkEditClick: onLinkEditClick,
|
|
275
|
+
currentAppearance: currentAppearance
|
|
276
|
+
});
|
|
280
277
|
}
|
|
281
278
|
return (0, _react2.jsx)(EditToolbarButtonWithCardContext, {
|
|
282
279
|
datasourceId: datasourceId,
|
package/dist/es2019/toolbar.js
CHANGED
|
@@ -16,6 +16,7 @@ import RemoveIcon from '@atlaskit/icon/glyph/editor/remove';
|
|
|
16
16
|
import CogIcon from '@atlaskit/icon/glyph/editor/settings';
|
|
17
17
|
import UnlinkIcon from '@atlaskit/icon/glyph/editor/unlink';
|
|
18
18
|
import OpenIcon from '@atlaskit/icon/glyph/shortcut';
|
|
19
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
19
20
|
import { changeSelectedCardToText } from './pm-plugins/doc';
|
|
20
21
|
import { pluginKey } from './pm-plugins/main';
|
|
21
22
|
import { DatasourceAppearanceButton } from './ui/DatasourceAppearanceButton';
|
|
@@ -75,11 +76,10 @@ export const visitCardLink = editorAnalyticsApi => (state, dispatch) => {
|
|
|
75
76
|
}
|
|
76
77
|
return true;
|
|
77
78
|
};
|
|
78
|
-
export const openLinkSettings =
|
|
79
|
+
export const openLinkSettings = editorAnalyticsApi => (state, dispatch) => {
|
|
79
80
|
if (!(state.selection instanceof NodeSelection)) {
|
|
80
81
|
return false;
|
|
81
82
|
}
|
|
82
|
-
window.open(userPreferencesLink || getLinkPreferencesURLFromENV());
|
|
83
83
|
if (dispatch) {
|
|
84
84
|
const {
|
|
85
85
|
tr,
|
|
@@ -254,7 +254,7 @@ const generateToolbarItems = (state, intl, providerFactory, cardOptions, lpLinkP
|
|
|
254
254
|
type: 'separator'
|
|
255
255
|
}, ...getUnlinkButtonGroup(state, intl, node, inlineCard, editorAnalyticsApi), {
|
|
256
256
|
type: 'copy-button',
|
|
257
|
-
supportsViewMode:
|
|
257
|
+
supportsViewMode: !fg('platform_editor_remove_copy_button_from_view_mode'),
|
|
258
258
|
items: [{
|
|
259
259
|
state,
|
|
260
260
|
formatMessage: intl.formatMessage,
|
|
@@ -351,7 +351,7 @@ export const getSettingsButton = (intl, editorAnalyticsApi, userPreferencesLink)
|
|
|
351
351
|
icon: SettingsIcon,
|
|
352
352
|
iconFallback: CogIcon,
|
|
353
353
|
title: intl.formatMessage(linkToolbarMessages.settingsLink),
|
|
354
|
-
onClick: openLinkSettings(editorAnalyticsApi
|
|
354
|
+
onClick: openLinkSettings(editorAnalyticsApi),
|
|
355
355
|
href: userPreferencesLink || getLinkPreferencesURLFromENV(),
|
|
356
356
|
target: '_blank'
|
|
357
357
|
};
|
|
@@ -12,7 +12,6 @@ import { FloatingToolbarButton as Button, FloatingToolbarSeparator as Separator
|
|
|
12
12
|
import { ArrowKeyNavigationType, DropdownContainer as UiDropdown } from '@atlaskit/editor-common/ui-menu';
|
|
13
13
|
import ExpandIcon from '@atlaskit/icon/glyph/chevron-down';
|
|
14
14
|
import { ButtonItem } from '@atlaskit/menu';
|
|
15
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
16
15
|
import { Flex } from '@atlaskit/primitives';
|
|
17
16
|
import { focusEditorView, isDatasourceConfigEditable } from '../../utils';
|
|
18
17
|
import { CardContextProvider } from '../CardContextProvider';
|
|
@@ -245,30 +244,28 @@ export const EditToolbarButton = props => {
|
|
|
245
244
|
return jsx(CardContextProvider, null, ({
|
|
246
245
|
cardContext
|
|
247
246
|
}) => {
|
|
248
|
-
if (
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
});
|
|
271
|
-
}
|
|
247
|
+
if (props.url) {
|
|
248
|
+
return jsx(EditToolbarButtonWithUrl, {
|
|
249
|
+
datasourceId: datasourceId,
|
|
250
|
+
url: props.url,
|
|
251
|
+
intl: intl,
|
|
252
|
+
editorAnalyticsApi: editorAnalyticsApi,
|
|
253
|
+
editorView: editorView,
|
|
254
|
+
cardContext: cardContext,
|
|
255
|
+
onLinkEditClick: onLinkEditClick,
|
|
256
|
+
currentAppearance: currentAppearance
|
|
257
|
+
});
|
|
258
|
+
}
|
|
259
|
+
if (props.datasourceId && props.node) {
|
|
260
|
+
return jsx(EditToolbarButtonWithDatasourceId, {
|
|
261
|
+
datasourceId: props.datasourceId,
|
|
262
|
+
node: props.node,
|
|
263
|
+
intl: intl,
|
|
264
|
+
editorAnalyticsApi: editorAnalyticsApi,
|
|
265
|
+
editorView: editorView,
|
|
266
|
+
onLinkEditClick: onLinkEditClick,
|
|
267
|
+
currentAppearance: currentAppearance
|
|
268
|
+
});
|
|
272
269
|
}
|
|
273
270
|
return jsx(EditToolbarButtonWithCardContext, {
|
|
274
271
|
datasourceId: datasourceId,
|
package/dist/esm/toolbar.js
CHANGED
|
@@ -20,6 +20,7 @@ import RemoveIcon from '@atlaskit/icon/glyph/editor/remove';
|
|
|
20
20
|
import CogIcon from '@atlaskit/icon/glyph/editor/settings';
|
|
21
21
|
import UnlinkIcon from '@atlaskit/icon/glyph/editor/unlink';
|
|
22
22
|
import OpenIcon from '@atlaskit/icon/glyph/shortcut';
|
|
23
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
23
24
|
import { changeSelectedCardToText } from './pm-plugins/doc';
|
|
24
25
|
import { pluginKey } from './pm-plugins/main';
|
|
25
26
|
import { DatasourceAppearanceButton } from './ui/DatasourceAppearanceButton';
|
|
@@ -76,12 +77,11 @@ export var visitCardLink = function visitCardLink(editorAnalyticsApi) {
|
|
|
76
77
|
return true;
|
|
77
78
|
};
|
|
78
79
|
};
|
|
79
|
-
export var openLinkSettings = function openLinkSettings(editorAnalyticsApi
|
|
80
|
+
export var openLinkSettings = function openLinkSettings(editorAnalyticsApi) {
|
|
80
81
|
return function (state, dispatch) {
|
|
81
82
|
if (!(state.selection instanceof NodeSelection)) {
|
|
82
83
|
return false;
|
|
83
84
|
}
|
|
84
|
-
window.open(userPreferencesLink || getLinkPreferencesURLFromENV());
|
|
85
85
|
if (dispatch) {
|
|
86
86
|
var tr = state.tr,
|
|
87
87
|
type = state.selection.node.type;
|
|
@@ -252,7 +252,7 @@ var generateToolbarItems = function generateToolbarItems(state, intl, providerFa
|
|
|
252
252
|
type: 'separator'
|
|
253
253
|
}], _toConsumableArray(getUnlinkButtonGroup(state, intl, node, inlineCard, editorAnalyticsApi)), [{
|
|
254
254
|
type: 'copy-button',
|
|
255
|
-
supportsViewMode:
|
|
255
|
+
supportsViewMode: !fg('platform_editor_remove_copy_button_from_view_mode'),
|
|
256
256
|
items: [{
|
|
257
257
|
state: state,
|
|
258
258
|
formatMessage: intl.formatMessage,
|
|
@@ -352,7 +352,7 @@ export var getSettingsButton = function getSettingsButton(intl, editorAnalyticsA
|
|
|
352
352
|
icon: SettingsIcon,
|
|
353
353
|
iconFallback: CogIcon,
|
|
354
354
|
title: intl.formatMessage(linkToolbarMessages.settingsLink),
|
|
355
|
-
onClick: openLinkSettings(editorAnalyticsApi
|
|
355
|
+
onClick: openLinkSettings(editorAnalyticsApi),
|
|
356
356
|
href: userPreferencesLink || getLinkPreferencesURLFromENV(),
|
|
357
357
|
target: '_blank'
|
|
358
358
|
};
|
|
@@ -15,7 +15,6 @@ import { FloatingToolbarButton as Button, FloatingToolbarSeparator as Separator
|
|
|
15
15
|
import { ArrowKeyNavigationType, DropdownContainer as UiDropdown } from '@atlaskit/editor-common/ui-menu';
|
|
16
16
|
import ExpandIcon from '@atlaskit/icon/glyph/chevron-down';
|
|
17
17
|
import { ButtonItem } from '@atlaskit/menu';
|
|
18
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
19
18
|
import { Flex } from '@atlaskit/primitives';
|
|
20
19
|
import { focusEditorView, isDatasourceConfigEditable } from '../../utils';
|
|
21
20
|
import { CardContextProvider } from '../CardContextProvider';
|
|
@@ -247,30 +246,28 @@ export var EditToolbarButton = function EditToolbarButton(props) {
|
|
|
247
246
|
url = props.url;
|
|
248
247
|
return jsx(CardContextProvider, null, function (_ref) {
|
|
249
248
|
var cardContext = _ref.cardContext;
|
|
250
|
-
if (
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
});
|
|
273
|
-
}
|
|
249
|
+
if (props.url) {
|
|
250
|
+
return jsx(EditToolbarButtonWithUrl, {
|
|
251
|
+
datasourceId: datasourceId,
|
|
252
|
+
url: props.url,
|
|
253
|
+
intl: intl,
|
|
254
|
+
editorAnalyticsApi: editorAnalyticsApi,
|
|
255
|
+
editorView: editorView,
|
|
256
|
+
cardContext: cardContext,
|
|
257
|
+
onLinkEditClick: onLinkEditClick,
|
|
258
|
+
currentAppearance: currentAppearance
|
|
259
|
+
});
|
|
260
|
+
}
|
|
261
|
+
if (props.datasourceId && props.node) {
|
|
262
|
+
return jsx(EditToolbarButtonWithDatasourceId, {
|
|
263
|
+
datasourceId: props.datasourceId,
|
|
264
|
+
node: props.node,
|
|
265
|
+
intl: intl,
|
|
266
|
+
editorAnalyticsApi: editorAnalyticsApi,
|
|
267
|
+
editorView: editorView,
|
|
268
|
+
onLinkEditClick: onLinkEditClick,
|
|
269
|
+
currentAppearance: currentAppearance
|
|
270
|
+
});
|
|
274
271
|
}
|
|
275
272
|
return jsx(EditToolbarButtonWithCardContext, {
|
|
276
273
|
datasourceId: datasourceId,
|
package/dist/types/toolbar.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import type { CardPluginOptions } from './types';
|
|
|
6
6
|
import type { cardPlugin } from './index';
|
|
7
7
|
export declare const removeCard: (editorAnalyticsApi: EditorAnalyticsAPI | undefined) => Command;
|
|
8
8
|
export declare const visitCardLink: (editorAnalyticsApi: EditorAnalyticsAPI | undefined) => Command;
|
|
9
|
-
export declare const openLinkSettings: (editorAnalyticsApi: EditorAnalyticsAPI | undefined
|
|
9
|
+
export declare const openLinkSettings: (editorAnalyticsApi: EditorAnalyticsAPI | undefined) => Command;
|
|
10
10
|
export declare const floatingToolbar: (cardOptions: CardOptions, lpLinkPicker: boolean, linkPickerOptions?: LinkPickerOptions, pluginInjectionApi?: ExtractInjectionAPI<typeof cardPlugin>, disableFloatingToolbar?: boolean) => FloatingToolbarHandler;
|
|
11
11
|
export declare const getSettingsButton: (intl: IntlShape, editorAnalyticsApi: EditorAnalyticsAPI | undefined, userPreferencesLink?: string) => FloatingToolbarItem<Command>;
|
|
12
12
|
export declare const shouldRenderToolbarPulse: (embedEnabled: boolean, appearance: string, status: string, isDiscoverabilityEnabled: boolean) => boolean;
|
|
@@ -6,7 +6,7 @@ import type { CardPluginOptions } from './types';
|
|
|
6
6
|
import type { cardPlugin } from './index';
|
|
7
7
|
export declare const removeCard: (editorAnalyticsApi: EditorAnalyticsAPI | undefined) => Command;
|
|
8
8
|
export declare const visitCardLink: (editorAnalyticsApi: EditorAnalyticsAPI | undefined) => Command;
|
|
9
|
-
export declare const openLinkSettings: (editorAnalyticsApi: EditorAnalyticsAPI | undefined
|
|
9
|
+
export declare const openLinkSettings: (editorAnalyticsApi: EditorAnalyticsAPI | undefined) => Command;
|
|
10
10
|
export declare const floatingToolbar: (cardOptions: CardOptions, lpLinkPicker: boolean, linkPickerOptions?: LinkPickerOptions, pluginInjectionApi?: ExtractInjectionAPI<typeof cardPlugin>, disableFloatingToolbar?: boolean) => FloatingToolbarHandler;
|
|
11
11
|
export declare const getSettingsButton: (intl: IntlShape, editorAnalyticsApi: EditorAnalyticsAPI | undefined, userPreferencesLink?: string) => FloatingToolbarItem<Command>;
|
|
12
12
|
export declare const shouldRenderToolbarPulse: (embedEnabled: boolean, appearance: string, status: string, isDiscoverabilityEnabled: boolean) => boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-card",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.2",
|
|
4
4
|
"description": "Card plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@atlaskit/adf-schema": "^44.2.0",
|
|
35
35
|
"@atlaskit/analytics-next": "^10.1.0",
|
|
36
36
|
"@atlaskit/custom-steps": "^0.8.0",
|
|
37
|
-
"@atlaskit/editor-common": "^94.
|
|
37
|
+
"@atlaskit/editor-common": "^94.19.0",
|
|
38
38
|
"@atlaskit/editor-plugin-analytics": "^1.10.0",
|
|
39
39
|
"@atlaskit/editor-plugin-decorations": "^1.3.0",
|
|
40
40
|
"@atlaskit/editor-plugin-editor-disabled": "^1.3.0",
|
|
@@ -49,16 +49,16 @@
|
|
|
49
49
|
"@atlaskit/icon": "^22.24.0",
|
|
50
50
|
"@atlaskit/link-analytics": "^8.5.0",
|
|
51
51
|
"@atlaskit/link-client-extension": "^2.4.0",
|
|
52
|
-
"@atlaskit/link-datasource": "^3.
|
|
52
|
+
"@atlaskit/link-datasource": "^3.8.0",
|
|
53
53
|
"@atlaskit/linking-common": "^6.0.0",
|
|
54
|
-
"@atlaskit/linking-types": "^9.
|
|
54
|
+
"@atlaskit/linking-types": "^9.5.0",
|
|
55
55
|
"@atlaskit/menu": "2.13.2",
|
|
56
56
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
57
|
-
"@atlaskit/primitives": "^13.
|
|
57
|
+
"@atlaskit/primitives": "^13.1.0",
|
|
58
58
|
"@atlaskit/smart-card": "^30.2.0",
|
|
59
59
|
"@atlaskit/theme": "^14.0.0",
|
|
60
|
-
"@atlaskit/tmp-editor-statsig": "^2.
|
|
61
|
-
"@atlaskit/tokens": "^2.
|
|
60
|
+
"@atlaskit/tmp-editor-statsig": "^2.14.0",
|
|
61
|
+
"@atlaskit/tokens": "^2.2.0",
|
|
62
62
|
"@babel/runtime": "^7.0.0",
|
|
63
63
|
"@emotion/react": "^11.7.1",
|
|
64
64
|
"lodash": "^4.17.21",
|
|
@@ -108,9 +108,6 @@
|
|
|
108
108
|
"type": "boolean",
|
|
109
109
|
"referenceOnly": true
|
|
110
110
|
},
|
|
111
|
-
"enable_datasource_nourl_edit_dropdown_datafetch": {
|
|
112
|
-
"type": "boolean"
|
|
113
|
-
},
|
|
114
111
|
"platform-datasources-enable-two-way-sync": {
|
|
115
112
|
"type": "boolean"
|
|
116
113
|
},
|
|
@@ -131,6 +128,9 @@
|
|
|
131
128
|
},
|
|
132
129
|
"platform_editor_ssr_fix_smartlinks": {
|
|
133
130
|
"type": "boolean"
|
|
131
|
+
},
|
|
132
|
+
"platform_editor_remove_copy_button_from_view_mode": {
|
|
133
|
+
"type": "boolean"
|
|
134
134
|
}
|
|
135
135
|
},
|
|
136
136
|
"stricter": {
|