@atlaskit/editor-presets 0.1.3 → 0.1.5
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 +16 -0
- package/dist/cjs/confluence-full-page-base/pluginOptions/placeholderPluginOptions/i18n.js +0 -25
- package/dist/cjs/confluence-full-page-base/pluginOptions/placeholderPluginOptions/placeholderPluginOptions.js +5 -17
- package/dist/es2019/confluence-full-page-base/pluginOptions/placeholderPluginOptions/i18n.js +0 -25
- package/dist/es2019/confluence-full-page-base/pluginOptions/placeholderPluginOptions/placeholderPluginOptions.js +2 -13
- package/dist/esm/confluence-full-page-base/pluginOptions/placeholderPluginOptions/i18n.js +0 -25
- package/dist/esm/confluence-full-page-base/pluginOptions/placeholderPluginOptions/placeholderPluginOptions.js +5 -17
- package/dist/types/confluence-full-page-base/pluginOptions/placeholderPluginOptions/i18n.d.ts +0 -25
- package/dist/types/confluence-full-page-base/pluginOptions/placeholderPluginOptions/placeholderPluginOptions.d.ts +1 -1
- package/dist/types-ts4.5/confluence-full-page-base/pluginOptions/placeholderPluginOptions/i18n.d.ts +0 -25
- package/dist/types-ts4.5/confluence-full-page-base/pluginOptions/placeholderPluginOptions/placeholderPluginOptions.d.ts +1 -1
- package/package.json +6 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-presets
|
|
2
2
|
|
|
3
|
+
## 0.1.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 0.1.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`aad55446552cd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/aad55446552cd) -
|
|
14
|
+
Cleaned up `platform_editor_ai_aifc_adf_placeholder` feature gate. The ADF placeholder is now
|
|
15
|
+
always used when applicable, without requiring a feature gate check. Removed unused imports and
|
|
16
|
+
dead code paths.
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 0.1.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -33,31 +33,6 @@ var i18n = exports.i18n = (0, _reactIntlNext.defineMessages)({
|
|
|
33
33
|
defaultMessage: 'Press space to Ask Rovo or / to insert elements',
|
|
34
34
|
description: 'The placeholder shown in empty document to help discover space shortcut to trigger Rovo, and slash shortcut to insert elements'
|
|
35
35
|
},
|
|
36
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFPrefix: {
|
|
37
|
-
id: 'editor-presets-confluence.placeholder.space-shortcut-adf-prefix',
|
|
38
|
-
defaultMessage: 'Press',
|
|
39
|
-
description: 'Text before keyboard shortcut in space shortcut ADF placeholder'
|
|
40
|
-
},
|
|
41
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFSpaceShortcut: {
|
|
42
|
-
id: 'editor-presets-confluence.placeholder.space-shortcut-adf-space-key',
|
|
43
|
-
defaultMessage: 'space',
|
|
44
|
-
description: 'Space key shortcut for triggering Rovo in ADF placeholder'
|
|
45
|
-
},
|
|
46
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFMiddle: {
|
|
47
|
-
id: 'editor-presets-confluence.placeholder.space-shortcut-adf-middle',
|
|
48
|
-
defaultMessage: 'to Ask Rovo or',
|
|
49
|
-
description: 'Text between space and slash shortcuts in ADF placeholder'
|
|
50
|
-
},
|
|
51
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFSlashShortcut: {
|
|
52
|
-
id: 'editor-presets-confluence.placeholder.space-shortcut-adf-slash-key',
|
|
53
|
-
defaultMessage: '/',
|
|
54
|
-
description: 'Slash key shortcut for inserting elements in space shortcut ADF placeholder'
|
|
55
|
-
},
|
|
56
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFSuffix: {
|
|
57
|
-
id: 'editor-presets-confluence.placeholder.space-shortcut-adf-suffix',
|
|
58
|
-
defaultMessage: 'to insert elements',
|
|
59
|
-
description: 'Text after slash shortcut in space shortcut ADF placeholder'
|
|
60
|
-
},
|
|
61
36
|
placeholderADF: {
|
|
62
37
|
id: 'editor-presets-confluence.placeholderADF',
|
|
63
38
|
defaultMessage: 'Press <code>space</code> to Ask Rovo or <code>/</code> to insert elements',
|
|
@@ -4,27 +4,15 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.placeholderPluginOptions = placeholderPluginOptions;
|
|
7
|
-
var _builders = require("@atlaskit/adf-utils/builders");
|
|
8
7
|
var _createAdfFromHtml = require("@atlaskit/editor-common/utils/create-adf-from-html");
|
|
9
8
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
10
9
|
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
|
|
11
10
|
var _experiments = require("@atlaskit/tmp-editor-statsig/experiments");
|
|
12
11
|
var _i18n = require("./i18n");
|
|
13
|
-
|
|
14
|
-
var formatMessage = _ref.formatMessage;
|
|
15
|
-
return {
|
|
16
|
-
version: 1,
|
|
17
|
-
type: 'doc',
|
|
18
|
-
content: [{
|
|
19
|
-
type: 'paragraph',
|
|
20
|
-
content: [(0, _builders.text)(formatMessage(_i18n.i18n.editorEmptyDocumentSpaceShortcutPlaceholderADFPrefix)), (0, _builders.text)(' '), (0, _builders.code)(formatMessage(_i18n.i18n.editorEmptyDocumentSpaceShortcutPlaceholderADFSpaceShortcut)), (0, _builders.text)(' '), (0, _builders.text)(formatMessage(_i18n.i18n.editorEmptyDocumentSpaceShortcutPlaceholderADFMiddle)), (0, _builders.text)(' '), (0, _builders.code)(formatMessage(_i18n.i18n.editorEmptyDocumentSpaceShortcutPlaceholderADFSlashShortcut)), (0, _builders.text)(' '), (0, _builders.text)(formatMessage(_i18n.i18n.editorEmptyDocumentSpaceShortcutPlaceholderADFSuffix))]
|
|
21
|
-
}]
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
function placeholderPluginOptions(_ref2) {
|
|
12
|
+
function placeholderPluginOptions(_ref) {
|
|
25
13
|
var _options$enableLoadin;
|
|
26
|
-
var intl =
|
|
27
|
-
options =
|
|
14
|
+
var intl = _ref.intl,
|
|
15
|
+
options = _ref.options;
|
|
28
16
|
var shouldShowSpaceShortcut = options.isAIEnabled && (0, _platformFeatureFlags.fg)('platform_editor_ai_aifc_streaming');
|
|
29
17
|
var placeholder = function () {
|
|
30
18
|
// SECTION: From confluence/next/packages/full-page-editor/src/FullPageEditorComponent.tsx `const placeholderText = `
|
|
@@ -56,11 +44,11 @@ function placeholderPluginOptions(_ref2) {
|
|
|
56
44
|
return undefined;
|
|
57
45
|
}
|
|
58
46
|
if (shouldShowSpaceShortcut && (0, _platformFeatureFlags.fg)('platform_editor_ai_aifc_space_shortcut')) {
|
|
59
|
-
return (0,
|
|
47
|
+
return (0, _createAdfFromHtml.createADFFromHTML)(intl.formatMessage(_i18n.i18n.placeholderADF, {
|
|
60
48
|
code: function code(parts) {
|
|
61
49
|
return "<code>".concat(parts, "</code>");
|
|
62
50
|
}
|
|
63
|
-
}))
|
|
51
|
+
}));
|
|
64
52
|
}
|
|
65
53
|
return undefined;
|
|
66
54
|
}();
|
package/dist/es2019/confluence-full-page-base/pluginOptions/placeholderPluginOptions/i18n.js
CHANGED
|
@@ -26,31 +26,6 @@ export const i18n = defineMessages({
|
|
|
26
26
|
defaultMessage: 'Press space to Ask Rovo or / to insert elements',
|
|
27
27
|
description: 'The placeholder shown in empty document to help discover space shortcut to trigger Rovo, and slash shortcut to insert elements'
|
|
28
28
|
},
|
|
29
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFPrefix: {
|
|
30
|
-
id: 'editor-presets-confluence.placeholder.space-shortcut-adf-prefix',
|
|
31
|
-
defaultMessage: 'Press',
|
|
32
|
-
description: 'Text before keyboard shortcut in space shortcut ADF placeholder'
|
|
33
|
-
},
|
|
34
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFSpaceShortcut: {
|
|
35
|
-
id: 'editor-presets-confluence.placeholder.space-shortcut-adf-space-key',
|
|
36
|
-
defaultMessage: 'space',
|
|
37
|
-
description: 'Space key shortcut for triggering Rovo in ADF placeholder'
|
|
38
|
-
},
|
|
39
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFMiddle: {
|
|
40
|
-
id: 'editor-presets-confluence.placeholder.space-shortcut-adf-middle',
|
|
41
|
-
defaultMessage: 'to Ask Rovo or',
|
|
42
|
-
description: 'Text between space and slash shortcuts in ADF placeholder'
|
|
43
|
-
},
|
|
44
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFSlashShortcut: {
|
|
45
|
-
id: 'editor-presets-confluence.placeholder.space-shortcut-adf-slash-key',
|
|
46
|
-
defaultMessage: '/',
|
|
47
|
-
description: 'Slash key shortcut for inserting elements in space shortcut ADF placeholder'
|
|
48
|
-
},
|
|
49
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFSuffix: {
|
|
50
|
-
id: 'editor-presets-confluence.placeholder.space-shortcut-adf-suffix',
|
|
51
|
-
defaultMessage: 'to insert elements',
|
|
52
|
-
description: 'Text after slash shortcut in space shortcut ADF placeholder'
|
|
53
|
-
},
|
|
54
29
|
placeholderADF: {
|
|
55
30
|
id: 'editor-presets-confluence.placeholderADF',
|
|
56
31
|
defaultMessage: 'Press <code>space</code> to Ask Rovo or <code>/</code> to insert elements',
|
|
@@ -1,19 +1,8 @@
|
|
|
1
|
-
import { code, text } from '@atlaskit/adf-utils/builders';
|
|
2
1
|
import { createADFFromHTML } from '@atlaskit/editor-common/utils/create-adf-from-html';
|
|
3
2
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
4
3
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
5
4
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
6
5
|
import { i18n } from './i18n';
|
|
7
|
-
const createSpaceShortcutPlaceholderADF = ({
|
|
8
|
-
formatMessage
|
|
9
|
-
}) => ({
|
|
10
|
-
version: 1,
|
|
11
|
-
type: 'doc',
|
|
12
|
-
content: [{
|
|
13
|
-
type: 'paragraph',
|
|
14
|
-
content: [text(formatMessage(i18n.editorEmptyDocumentSpaceShortcutPlaceholderADFPrefix)), text(' '), code(formatMessage(i18n.editorEmptyDocumentSpaceShortcutPlaceholderADFSpaceShortcut)), text(' '), text(formatMessage(i18n.editorEmptyDocumentSpaceShortcutPlaceholderADFMiddle)), text(' '), code(formatMessage(i18n.editorEmptyDocumentSpaceShortcutPlaceholderADFSlashShortcut)), text(' '), text(formatMessage(i18n.editorEmptyDocumentSpaceShortcutPlaceholderADFSuffix))]
|
|
15
|
-
}]
|
|
16
|
-
});
|
|
17
6
|
export function placeholderPluginOptions({
|
|
18
7
|
intl,
|
|
19
8
|
options
|
|
@@ -50,9 +39,9 @@ export function placeholderPluginOptions({
|
|
|
50
39
|
return undefined;
|
|
51
40
|
}
|
|
52
41
|
if (shouldShowSpaceShortcut && fg('platform_editor_ai_aifc_space_shortcut')) {
|
|
53
|
-
return
|
|
42
|
+
return createADFFromHTML(intl.formatMessage(i18n.placeholderADF, {
|
|
54
43
|
code: parts => `<code>${parts}</code>`
|
|
55
|
-
}))
|
|
44
|
+
}));
|
|
56
45
|
}
|
|
57
46
|
return undefined;
|
|
58
47
|
})();
|
|
@@ -26,31 +26,6 @@ export var i18n = defineMessages({
|
|
|
26
26
|
defaultMessage: 'Press space to Ask Rovo or / to insert elements',
|
|
27
27
|
description: 'The placeholder shown in empty document to help discover space shortcut to trigger Rovo, and slash shortcut to insert elements'
|
|
28
28
|
},
|
|
29
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFPrefix: {
|
|
30
|
-
id: 'editor-presets-confluence.placeholder.space-shortcut-adf-prefix',
|
|
31
|
-
defaultMessage: 'Press',
|
|
32
|
-
description: 'Text before keyboard shortcut in space shortcut ADF placeholder'
|
|
33
|
-
},
|
|
34
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFSpaceShortcut: {
|
|
35
|
-
id: 'editor-presets-confluence.placeholder.space-shortcut-adf-space-key',
|
|
36
|
-
defaultMessage: 'space',
|
|
37
|
-
description: 'Space key shortcut for triggering Rovo in ADF placeholder'
|
|
38
|
-
},
|
|
39
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFMiddle: {
|
|
40
|
-
id: 'editor-presets-confluence.placeholder.space-shortcut-adf-middle',
|
|
41
|
-
defaultMessage: 'to Ask Rovo or',
|
|
42
|
-
description: 'Text between space and slash shortcuts in ADF placeholder'
|
|
43
|
-
},
|
|
44
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFSlashShortcut: {
|
|
45
|
-
id: 'editor-presets-confluence.placeholder.space-shortcut-adf-slash-key',
|
|
46
|
-
defaultMessage: '/',
|
|
47
|
-
description: 'Slash key shortcut for inserting elements in space shortcut ADF placeholder'
|
|
48
|
-
},
|
|
49
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFSuffix: {
|
|
50
|
-
id: 'editor-presets-confluence.placeholder.space-shortcut-adf-suffix',
|
|
51
|
-
defaultMessage: 'to insert elements',
|
|
52
|
-
description: 'Text after slash shortcut in space shortcut ADF placeholder'
|
|
53
|
-
},
|
|
54
29
|
placeholderADF: {
|
|
55
30
|
id: 'editor-presets-confluence.placeholderADF',
|
|
56
31
|
defaultMessage: 'Press <code>space</code> to Ask Rovo or <code>/</code> to insert elements',
|
|
@@ -1,24 +1,12 @@
|
|
|
1
|
-
import { code, text } from '@atlaskit/adf-utils/builders';
|
|
2
1
|
import { createADFFromHTML } from '@atlaskit/editor-common/utils/create-adf-from-html';
|
|
3
2
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
4
3
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
5
4
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
6
5
|
import { i18n } from './i18n';
|
|
7
|
-
|
|
8
|
-
var formatMessage = _ref.formatMessage;
|
|
9
|
-
return {
|
|
10
|
-
version: 1,
|
|
11
|
-
type: 'doc',
|
|
12
|
-
content: [{
|
|
13
|
-
type: 'paragraph',
|
|
14
|
-
content: [text(formatMessage(i18n.editorEmptyDocumentSpaceShortcutPlaceholderADFPrefix)), text(' '), code(formatMessage(i18n.editorEmptyDocumentSpaceShortcutPlaceholderADFSpaceShortcut)), text(' '), text(formatMessage(i18n.editorEmptyDocumentSpaceShortcutPlaceholderADFMiddle)), text(' '), code(formatMessage(i18n.editorEmptyDocumentSpaceShortcutPlaceholderADFSlashShortcut)), text(' '), text(formatMessage(i18n.editorEmptyDocumentSpaceShortcutPlaceholderADFSuffix))]
|
|
15
|
-
}]
|
|
16
|
-
};
|
|
17
|
-
};
|
|
18
|
-
export function placeholderPluginOptions(_ref2) {
|
|
6
|
+
export function placeholderPluginOptions(_ref) {
|
|
19
7
|
var _options$enableLoadin;
|
|
20
|
-
var intl =
|
|
21
|
-
options =
|
|
8
|
+
var intl = _ref.intl,
|
|
9
|
+
options = _ref.options;
|
|
22
10
|
var shouldShowSpaceShortcut = options.isAIEnabled && fg('platform_editor_ai_aifc_streaming');
|
|
23
11
|
var placeholder = function () {
|
|
24
12
|
// SECTION: From confluence/next/packages/full-page-editor/src/FullPageEditorComponent.tsx `const placeholderText = `
|
|
@@ -50,11 +38,11 @@ export function placeholderPluginOptions(_ref2) {
|
|
|
50
38
|
return undefined;
|
|
51
39
|
}
|
|
52
40
|
if (shouldShowSpaceShortcut && fg('platform_editor_ai_aifc_space_shortcut')) {
|
|
53
|
-
return
|
|
41
|
+
return createADFFromHTML(intl.formatMessage(i18n.placeholderADF, {
|
|
54
42
|
code: function code(parts) {
|
|
55
43
|
return "<code>".concat(parts, "</code>");
|
|
56
44
|
}
|
|
57
|
-
}))
|
|
45
|
+
}));
|
|
58
46
|
}
|
|
59
47
|
return undefined;
|
|
60
48
|
}();
|
package/dist/types/confluence-full-page-base/pluginOptions/placeholderPluginOptions/i18n.d.ts
CHANGED
|
@@ -24,31 +24,6 @@ export declare const i18n: {
|
|
|
24
24
|
defaultMessage: string;
|
|
25
25
|
description: string;
|
|
26
26
|
};
|
|
27
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFPrefix: {
|
|
28
|
-
id: string;
|
|
29
|
-
defaultMessage: string;
|
|
30
|
-
description: string;
|
|
31
|
-
};
|
|
32
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFSpaceShortcut: {
|
|
33
|
-
id: string;
|
|
34
|
-
defaultMessage: string;
|
|
35
|
-
description: string;
|
|
36
|
-
};
|
|
37
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFMiddle: {
|
|
38
|
-
id: string;
|
|
39
|
-
defaultMessage: string;
|
|
40
|
-
description: string;
|
|
41
|
-
};
|
|
42
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFSlashShortcut: {
|
|
43
|
-
id: string;
|
|
44
|
-
defaultMessage: string;
|
|
45
|
-
description: string;
|
|
46
|
-
};
|
|
47
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFSuffix: {
|
|
48
|
-
id: string;
|
|
49
|
-
defaultMessage: string;
|
|
50
|
-
description: string;
|
|
51
|
-
};
|
|
52
27
|
placeholderADF: {
|
|
53
28
|
id: string;
|
|
54
29
|
defaultMessage: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { IntlShape } from 'react-intl-next';
|
|
2
|
-
import {
|
|
2
|
+
import type { ViewMode } from '@atlaskit/editor-plugin-editor-viewmode';
|
|
3
3
|
import type { PlaceholderPluginOptions } from '@atlaskit/editor-plugin-placeholder';
|
|
4
4
|
interface Props {
|
|
5
5
|
intl: IntlShape;
|
package/dist/types-ts4.5/confluence-full-page-base/pluginOptions/placeholderPluginOptions/i18n.d.ts
CHANGED
|
@@ -24,31 +24,6 @@ export declare const i18n: {
|
|
|
24
24
|
defaultMessage: string;
|
|
25
25
|
description: string;
|
|
26
26
|
};
|
|
27
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFPrefix: {
|
|
28
|
-
id: string;
|
|
29
|
-
defaultMessage: string;
|
|
30
|
-
description: string;
|
|
31
|
-
};
|
|
32
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFSpaceShortcut: {
|
|
33
|
-
id: string;
|
|
34
|
-
defaultMessage: string;
|
|
35
|
-
description: string;
|
|
36
|
-
};
|
|
37
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFMiddle: {
|
|
38
|
-
id: string;
|
|
39
|
-
defaultMessage: string;
|
|
40
|
-
description: string;
|
|
41
|
-
};
|
|
42
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFSlashShortcut: {
|
|
43
|
-
id: string;
|
|
44
|
-
defaultMessage: string;
|
|
45
|
-
description: string;
|
|
46
|
-
};
|
|
47
|
-
editorEmptyDocumentSpaceShortcutPlaceholderADFSuffix: {
|
|
48
|
-
id: string;
|
|
49
|
-
defaultMessage: string;
|
|
50
|
-
description: string;
|
|
51
|
-
};
|
|
52
27
|
placeholderADF: {
|
|
53
28
|
id: string;
|
|
54
29
|
defaultMessage: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { IntlShape } from 'react-intl-next';
|
|
2
|
-
import {
|
|
2
|
+
import type { ViewMode } from '@atlaskit/editor-plugin-editor-viewmode';
|
|
3
3
|
import type { PlaceholderPluginOptions } from '@atlaskit/editor-plugin-placeholder';
|
|
4
4
|
interface Props {
|
|
5
5
|
intl: IntlShape;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-presets",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Public editor presets for Atlassian Editor containing base configurations for Confluence and other products",
|
|
6
6
|
"publishConfig": {
|
|
@@ -29,7 +29,6 @@
|
|
|
29
29
|
"atlaskit:src": "src/index.ts",
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@atlaskit/adf-schema": "^52.4.0",
|
|
32
|
-
"@atlaskit/adf-utils": "^19.27.0",
|
|
33
32
|
"@atlaskit/editor-plugin-accessibility-utils": "^8.0.0",
|
|
34
33
|
"@atlaskit/editor-plugin-alignment": "^9.1.0",
|
|
35
34
|
"@atlaskit/editor-plugin-analytics": "^8.0.0",
|
|
@@ -81,14 +80,14 @@
|
|
|
81
80
|
"@atlaskit/editor-plugin-hyperlink": "^10.0.0",
|
|
82
81
|
"@atlaskit/editor-plugin-indentation": "^8.0.0",
|
|
83
82
|
"@atlaskit/editor-plugin-insert-block": "^9.1.0",
|
|
84
|
-
"@atlaskit/editor-plugin-interaction": "^
|
|
83
|
+
"@atlaskit/editor-plugin-interaction": "^17.0.0",
|
|
85
84
|
"@atlaskit/editor-plugin-layout": "^8.1.0",
|
|
86
85
|
"@atlaskit/editor-plugin-limited-mode": "^5.0.0",
|
|
87
86
|
"@atlaskit/editor-plugin-list": "^10.2.0",
|
|
88
|
-
"@atlaskit/editor-plugin-local-id": "^6.
|
|
87
|
+
"@atlaskit/editor-plugin-local-id": "^6.1.0",
|
|
89
88
|
"@atlaskit/editor-plugin-loom": "^10.0.0",
|
|
90
89
|
"@atlaskit/editor-plugin-media": "^10.2.0",
|
|
91
|
-
"@atlaskit/editor-plugin-media-insert": "^
|
|
90
|
+
"@atlaskit/editor-plugin-media-insert": "^21.0.0",
|
|
92
91
|
"@atlaskit/editor-plugin-mentions": "^10.0.0",
|
|
93
92
|
"@atlaskit/editor-plugin-metrics": "^9.0.0",
|
|
94
93
|
"@atlaskit/editor-plugin-panel": "^10.0.0",
|
|
@@ -124,11 +123,11 @@
|
|
|
124
123
|
"@atlaskit/editor-plugin-user-preferences": "^6.0.0",
|
|
125
124
|
"@atlaskit/editor-plugin-width": "^9.0.0",
|
|
126
125
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
127
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
126
|
+
"@atlaskit/tmp-editor-statsig": "^59.1.0",
|
|
128
127
|
"@babel/runtime": "^7.0.0"
|
|
129
128
|
},
|
|
130
129
|
"peerDependencies": {
|
|
131
|
-
"@atlaskit/editor-common": "^112.
|
|
130
|
+
"@atlaskit/editor-common": "^112.20.0",
|
|
132
131
|
"react": "^18.2.0",
|
|
133
132
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
134
133
|
},
|
|
@@ -180,9 +179,6 @@
|
|
|
180
179
|
"platform_editor_use_preferences_plugin": {
|
|
181
180
|
"type": "boolean"
|
|
182
181
|
},
|
|
183
|
-
"platform_editor_ai_aifc_adf_placeholder": {
|
|
184
|
-
"type": "boolean"
|
|
185
|
-
},
|
|
186
182
|
"platform_editor_ai_aifc_streaming": {
|
|
187
183
|
"type": "boolean"
|
|
188
184
|
},
|