@atlaskit/editor-common 112.21.1 → 112.21.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 +9 -0
- package/dist/cjs/keymaps/index.js +0 -4
- package/dist/cjs/messages/block-menu.js +0 -19
- package/dist/cjs/messages/block-type.js +0 -12
- package/dist/cjs/messages/syncBlock.js +0 -7
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/es2019/keymaps/index.js +0 -4
- package/dist/es2019/messages/block-menu.js +0 -19
- package/dist/es2019/messages/block-type.js +0 -12
- package/dist/es2019/messages/syncBlock.js +0 -7
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/esm/keymaps/index.js +0 -4
- package/dist/esm/messages/block-menu.js +0 -19
- package/dist/esm/messages/block-type.js +0 -12
- package/dist/esm/messages/syncBlock.js +0 -7
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/types/messages/block-menu.d.ts +0 -15
- package/dist/types/messages/block-type.d.ts +62 -72
- package/dist/types/messages/syncBlock.d.ts +0 -5
- package/dist/types-ts4.5/messages/block-menu.d.ts +0 -15
- package/dist/types-ts4.5/messages/block-type.d.ts +62 -72
- package/dist/types-ts4.5/messages/syncBlock.d.ts +0 -5
- package/package.json +3 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 112.21.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`1bd298ad0a152`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1bd298ad0a152) -
|
|
8
|
+
[ux] EDITOR-6280 Clean up platform_editor_block_menu_v2_patch_3 to fix icon and copy in jira block
|
|
9
|
+
menu
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 112.21.1
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -165,10 +165,6 @@ var redo = exports.redo = makeKeymap('Redo', 'Ctrl-y', 'Mod-Shift-z');
|
|
|
165
165
|
var openHelp = exports.openHelp = makeKeyMapWithCommon('Open Help', 'Mod-/');
|
|
166
166
|
var addLink = exports.addLink = makeKeyMapWithCommon('Link', 'Mod-k');
|
|
167
167
|
var addInlineComment = exports.addInlineComment = makeKeyMapWithCommon('Annotate', 'Mod-Alt-c');
|
|
168
|
-
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
169
|
-
// Updated wording from "Copy link to block" to "Copy link to selection" for better UX clarity.
|
|
170
|
-
// The actual displayed text is conditionally shown in the UI component based on the flag.
|
|
171
|
-
// To clean up: This can remain as-is since it's the canonical name for the action.
|
|
172
168
|
var copyLinkToBlock = exports.copyLinkToBlock = makeKeyMapWithCommon('Copy link to selection', 'Mod-Alt-a');
|
|
173
169
|
var submit = exports.submit = makeKeyMapWithCommon('Submit Content', 'Mod-Enter');
|
|
174
170
|
var enter = exports.enter = makeKeyMapWithCommon('Enter', 'Enter');
|
|
@@ -6,11 +6,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.messages = void 0;
|
|
7
7
|
var _reactIntlNext = require("react-intl-next");
|
|
8
8
|
var messages = exports.messages = (0, _reactIntlNext.defineMessages)({
|
|
9
|
-
copyBlock: {
|
|
10
|
-
id: 'fabric.editor.block.menu.copy.block',
|
|
11
|
-
defaultMessage: 'Copy block',
|
|
12
|
-
description: 'Copy the selected block to the clipboard'
|
|
13
|
-
},
|
|
14
9
|
moveUpBlock: {
|
|
15
10
|
id: 'fabric.editor.block.menu.move.up',
|
|
16
11
|
defaultMessage: 'Move up',
|
|
@@ -31,13 +26,6 @@ var messages = exports.messages = (0, _reactIntlNext.defineMessages)({
|
|
|
31
26
|
defaultMessage: 'Copy link',
|
|
32
27
|
description: 'Copy link to the selected content'
|
|
33
28
|
},
|
|
34
|
-
copyLinkToBlock: {
|
|
35
|
-
id: 'fabric.editor.block.menu.copy.link.to.block',
|
|
36
|
-
defaultMessage: 'Copy link to block',
|
|
37
|
-
description: 'Copy link to the selected block'
|
|
38
|
-
},
|
|
39
|
-
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
40
|
-
// New message with updated wording. To clean up: remove old message and feature flag check when flag is removed.
|
|
41
29
|
copyLinkToSelection: {
|
|
42
30
|
id: 'fabric.editor.block.menu.copy.link.to.selection',
|
|
43
31
|
defaultMessage: 'Copy link to selection',
|
|
@@ -73,13 +61,6 @@ var messages = exports.messages = (0, _reactIntlNext.defineMessages)({
|
|
|
73
61
|
defaultMessage: 'Turn into',
|
|
74
62
|
description: 'Turn the selected block into another type'
|
|
75
63
|
},
|
|
76
|
-
createSyncedBlock: {
|
|
77
|
-
id: 'fabric.editor.block.menu.create.synced.block',
|
|
78
|
-
defaultMessage: 'Create synced block',
|
|
79
|
-
description: 'Create a synced block at this line, converting the selection to a synced block if applicable'
|
|
80
|
-
},
|
|
81
|
-
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
82
|
-
// New message with updated wording. To clean up: remove old message and feature flag check when flag is removed.
|
|
83
64
|
syncBlock: {
|
|
84
65
|
id: 'fabric.editor.block.menu.sync.block',
|
|
85
66
|
defaultMessage: 'Sync block',
|
|
@@ -161,13 +161,6 @@ var messages = exports.messages = (0, _reactIntlNext.defineMessages)({
|
|
|
161
161
|
defaultMessage: 'Create synced block',
|
|
162
162
|
description: 'Inserts a synced block that auto-updates content across Atlassian apps'
|
|
163
163
|
},
|
|
164
|
-
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
165
|
-
// New message with updated wording. To clean up: remove old message and feature flag check when flag is removed.
|
|
166
|
-
syncBlock: {
|
|
167
|
-
id: 'fabric.editor.syncBlock',
|
|
168
|
-
defaultMessage: 'Sync block',
|
|
169
|
-
description: 'Inserts a synced block that auto-updates content across Atlassian apps'
|
|
170
|
-
},
|
|
171
164
|
syncedBlockDescription: {
|
|
172
165
|
id: 'fabric.editor.syncedBlock.description',
|
|
173
166
|
defaultMessage: 'Sync content across multiple locations',
|
|
@@ -183,11 +176,6 @@ var messages = exports.messages = (0, _reactIntlNext.defineMessages)({
|
|
|
183
176
|
defaultMessage: 'Panel',
|
|
184
177
|
description: 'Visually distinguishes your text by adding a panel'
|
|
185
178
|
},
|
|
186
|
-
textBoxAriaLabel: {
|
|
187
|
-
id: 'fabric.editor.aria.textbox',
|
|
188
|
-
defaultMessage: 'textbox',
|
|
189
|
-
description: 'This is the definition of the HTML role textbox, it needs to be translated in the same way that a textbox with a HTML role of textbox'
|
|
190
|
-
},
|
|
191
179
|
other: {
|
|
192
180
|
id: 'fabric.editor.other',
|
|
193
181
|
defaultMessage: 'Others...',
|
|
@@ -146,13 +146,6 @@ var syncBlockMessages = exports.syncBlockMessages = (0, _reactIntlNext.defineMes
|
|
|
146
146
|
defaultMessage: 'Create synced block',
|
|
147
147
|
description: 'Label for button which creates a new synced block'
|
|
148
148
|
},
|
|
149
|
-
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
150
|
-
// New message with updated wording. To clean up: remove old message and feature flag check when flag is removed.
|
|
151
|
-
syncBlockLabel: {
|
|
152
|
-
id: 'fabric.editor.syncBlockLabel',
|
|
153
|
-
defaultMessage: 'Sync block',
|
|
154
|
-
description: 'Label for button which creates a new synced block'
|
|
155
|
-
},
|
|
156
149
|
newLozenge: {
|
|
157
150
|
id: 'fabric.editor.syncBlock.toolbar.newLozenge',
|
|
158
151
|
defaultMessage: 'New',
|
|
@@ -19,7 +19,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
19
19
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
20
20
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
21
21
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
22
|
-
var packageVersion = "112.21.
|
|
22
|
+
var packageVersion = "112.21.1";
|
|
23
23
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
24
24
|
// Remove URL as it has UGC
|
|
25
25
|
// Ignored via go/ees007
|
|
@@ -24,7 +24,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
|
|
|
24
24
|
* @jsx jsx
|
|
25
25
|
*/ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
26
26
|
var packageName = "@atlaskit/editor-common";
|
|
27
|
-
var packageVersion = "112.21.
|
|
27
|
+
var packageVersion = "112.21.1";
|
|
28
28
|
var halfFocusRing = 1;
|
|
29
29
|
var dropOffset = '0, 8';
|
|
30
30
|
var fadeIn = (0, _react2.keyframes)({
|
|
@@ -52,10 +52,6 @@ export const redo = makeKeymap('Redo', 'Ctrl-y', 'Mod-Shift-z');
|
|
|
52
52
|
export const openHelp = makeKeyMapWithCommon('Open Help', 'Mod-/');
|
|
53
53
|
export const addLink = makeKeyMapWithCommon('Link', 'Mod-k');
|
|
54
54
|
export const addInlineComment = makeKeyMapWithCommon('Annotate', 'Mod-Alt-c');
|
|
55
|
-
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
56
|
-
// Updated wording from "Copy link to block" to "Copy link to selection" for better UX clarity.
|
|
57
|
-
// The actual displayed text is conditionally shown in the UI component based on the flag.
|
|
58
|
-
// To clean up: This can remain as-is since it's the canonical name for the action.
|
|
59
55
|
export const copyLinkToBlock = makeKeyMapWithCommon('Copy link to selection', 'Mod-Alt-a');
|
|
60
56
|
export const submit = makeKeyMapWithCommon('Submit Content', 'Mod-Enter');
|
|
61
57
|
export const enter = makeKeyMapWithCommon('Enter', 'Enter');
|
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
import { defineMessages } from 'react-intl-next';
|
|
2
2
|
export const messages = defineMessages({
|
|
3
|
-
copyBlock: {
|
|
4
|
-
id: 'fabric.editor.block.menu.copy.block',
|
|
5
|
-
defaultMessage: 'Copy block',
|
|
6
|
-
description: 'Copy the selected block to the clipboard'
|
|
7
|
-
},
|
|
8
3
|
moveUpBlock: {
|
|
9
4
|
id: 'fabric.editor.block.menu.move.up',
|
|
10
5
|
defaultMessage: 'Move up',
|
|
@@ -25,13 +20,6 @@ export const messages = defineMessages({
|
|
|
25
20
|
defaultMessage: 'Copy link',
|
|
26
21
|
description: 'Copy link to the selected content'
|
|
27
22
|
},
|
|
28
|
-
copyLinkToBlock: {
|
|
29
|
-
id: 'fabric.editor.block.menu.copy.link.to.block',
|
|
30
|
-
defaultMessage: 'Copy link to block',
|
|
31
|
-
description: 'Copy link to the selected block'
|
|
32
|
-
},
|
|
33
|
-
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
34
|
-
// New message with updated wording. To clean up: remove old message and feature flag check when flag is removed.
|
|
35
23
|
copyLinkToSelection: {
|
|
36
24
|
id: 'fabric.editor.block.menu.copy.link.to.selection',
|
|
37
25
|
defaultMessage: 'Copy link to selection',
|
|
@@ -67,13 +55,6 @@ export const messages = defineMessages({
|
|
|
67
55
|
defaultMessage: 'Turn into',
|
|
68
56
|
description: 'Turn the selected block into another type'
|
|
69
57
|
},
|
|
70
|
-
createSyncedBlock: {
|
|
71
|
-
id: 'fabric.editor.block.menu.create.synced.block',
|
|
72
|
-
defaultMessage: 'Create synced block',
|
|
73
|
-
description: 'Create a synced block at this line, converting the selection to a synced block if applicable'
|
|
74
|
-
},
|
|
75
|
-
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
76
|
-
// New message with updated wording. To clean up: remove old message and feature flag check when flag is removed.
|
|
77
58
|
syncBlock: {
|
|
78
59
|
id: 'fabric.editor.block.menu.sync.block',
|
|
79
60
|
defaultMessage: 'Sync block',
|
|
@@ -155,13 +155,6 @@ export const messages = defineMessages({
|
|
|
155
155
|
defaultMessage: 'Create synced block',
|
|
156
156
|
description: 'Inserts a synced block that auto-updates content across Atlassian apps'
|
|
157
157
|
},
|
|
158
|
-
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
159
|
-
// New message with updated wording. To clean up: remove old message and feature flag check when flag is removed.
|
|
160
|
-
syncBlock: {
|
|
161
|
-
id: 'fabric.editor.syncBlock',
|
|
162
|
-
defaultMessage: 'Sync block',
|
|
163
|
-
description: 'Inserts a synced block that auto-updates content across Atlassian apps'
|
|
164
|
-
},
|
|
165
158
|
syncedBlockDescription: {
|
|
166
159
|
id: 'fabric.editor.syncedBlock.description',
|
|
167
160
|
defaultMessage: 'Sync content across multiple locations',
|
|
@@ -177,11 +170,6 @@ export const messages = defineMessages({
|
|
|
177
170
|
defaultMessage: 'Panel',
|
|
178
171
|
description: 'Visually distinguishes your text by adding a panel'
|
|
179
172
|
},
|
|
180
|
-
textBoxAriaLabel: {
|
|
181
|
-
id: 'fabric.editor.aria.textbox',
|
|
182
|
-
defaultMessage: 'textbox',
|
|
183
|
-
description: 'This is the definition of the HTML role textbox, it needs to be translated in the same way that a textbox with a HTML role of textbox'
|
|
184
|
-
},
|
|
185
173
|
other: {
|
|
186
174
|
id: 'fabric.editor.other',
|
|
187
175
|
defaultMessage: 'Others...',
|
|
@@ -140,13 +140,6 @@ export const syncBlockMessages = defineMessages({
|
|
|
140
140
|
defaultMessage: 'Create synced block',
|
|
141
141
|
description: 'Label for button which creates a new synced block'
|
|
142
142
|
},
|
|
143
|
-
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
144
|
-
// New message with updated wording. To clean up: remove old message and feature flag check when flag is removed.
|
|
145
|
-
syncBlockLabel: {
|
|
146
|
-
id: 'fabric.editor.syncBlockLabel',
|
|
147
|
-
defaultMessage: 'Sync block',
|
|
148
|
-
description: 'Label for button which creates a new synced block'
|
|
149
|
-
},
|
|
150
143
|
newLozenge: {
|
|
151
144
|
id: 'fabric.editor.syncBlock.toolbar.newLozenge',
|
|
152
145
|
defaultMessage: 'New',
|
|
@@ -4,7 +4,7 @@ import { isFedRamp } from './environment';
|
|
|
4
4
|
import { normaliseSentryBreadcrumbs, SERIALIZABLE_ATTRIBUTES } from './normalise-sentry-breadcrumbs';
|
|
5
5
|
const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
6
6
|
const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
7
|
-
const packageVersion = "112.21.
|
|
7
|
+
const packageVersion = "112.21.1";
|
|
8
8
|
const sanitiseSentryEvents = (data, _hint) => {
|
|
9
9
|
// Remove URL as it has UGC
|
|
10
10
|
// Ignored via go/ees007
|
|
@@ -14,7 +14,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
|
14
14
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
15
15
|
import Layer from '../Layer';
|
|
16
16
|
const packageName = "@atlaskit/editor-common";
|
|
17
|
-
const packageVersion = "112.21.
|
|
17
|
+
const packageVersion = "112.21.1";
|
|
18
18
|
const halfFocusRing = 1;
|
|
19
19
|
const dropOffset = '0, 8';
|
|
20
20
|
const fadeIn = keyframes({
|
|
@@ -53,10 +53,6 @@ export var redo = makeKeymap('Redo', 'Ctrl-y', 'Mod-Shift-z');
|
|
|
53
53
|
export var openHelp = makeKeyMapWithCommon('Open Help', 'Mod-/');
|
|
54
54
|
export var addLink = makeKeyMapWithCommon('Link', 'Mod-k');
|
|
55
55
|
export var addInlineComment = makeKeyMapWithCommon('Annotate', 'Mod-Alt-c');
|
|
56
|
-
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
57
|
-
// Updated wording from "Copy link to block" to "Copy link to selection" for better UX clarity.
|
|
58
|
-
// The actual displayed text is conditionally shown in the UI component based on the flag.
|
|
59
|
-
// To clean up: This can remain as-is since it's the canonical name for the action.
|
|
60
56
|
export var copyLinkToBlock = makeKeyMapWithCommon('Copy link to selection', 'Mod-Alt-a');
|
|
61
57
|
export var submit = makeKeyMapWithCommon('Submit Content', 'Mod-Enter');
|
|
62
58
|
export var enter = makeKeyMapWithCommon('Enter', 'Enter');
|
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
import { defineMessages } from 'react-intl-next';
|
|
2
2
|
export var messages = defineMessages({
|
|
3
|
-
copyBlock: {
|
|
4
|
-
id: 'fabric.editor.block.menu.copy.block',
|
|
5
|
-
defaultMessage: 'Copy block',
|
|
6
|
-
description: 'Copy the selected block to the clipboard'
|
|
7
|
-
},
|
|
8
3
|
moveUpBlock: {
|
|
9
4
|
id: 'fabric.editor.block.menu.move.up',
|
|
10
5
|
defaultMessage: 'Move up',
|
|
@@ -25,13 +20,6 @@ export var messages = defineMessages({
|
|
|
25
20
|
defaultMessage: 'Copy link',
|
|
26
21
|
description: 'Copy link to the selected content'
|
|
27
22
|
},
|
|
28
|
-
copyLinkToBlock: {
|
|
29
|
-
id: 'fabric.editor.block.menu.copy.link.to.block',
|
|
30
|
-
defaultMessage: 'Copy link to block',
|
|
31
|
-
description: 'Copy link to the selected block'
|
|
32
|
-
},
|
|
33
|
-
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
34
|
-
// New message with updated wording. To clean up: remove old message and feature flag check when flag is removed.
|
|
35
23
|
copyLinkToSelection: {
|
|
36
24
|
id: 'fabric.editor.block.menu.copy.link.to.selection',
|
|
37
25
|
defaultMessage: 'Copy link to selection',
|
|
@@ -67,13 +55,6 @@ export var messages = defineMessages({
|
|
|
67
55
|
defaultMessage: 'Turn into',
|
|
68
56
|
description: 'Turn the selected block into another type'
|
|
69
57
|
},
|
|
70
|
-
createSyncedBlock: {
|
|
71
|
-
id: 'fabric.editor.block.menu.create.synced.block',
|
|
72
|
-
defaultMessage: 'Create synced block',
|
|
73
|
-
description: 'Create a synced block at this line, converting the selection to a synced block if applicable'
|
|
74
|
-
},
|
|
75
|
-
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
76
|
-
// New message with updated wording. To clean up: remove old message and feature flag check when flag is removed.
|
|
77
58
|
syncBlock: {
|
|
78
59
|
id: 'fabric.editor.block.menu.sync.block',
|
|
79
60
|
defaultMessage: 'Sync block',
|
|
@@ -155,13 +155,6 @@ export var messages = defineMessages({
|
|
|
155
155
|
defaultMessage: 'Create synced block',
|
|
156
156
|
description: 'Inserts a synced block that auto-updates content across Atlassian apps'
|
|
157
157
|
},
|
|
158
|
-
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
159
|
-
// New message with updated wording. To clean up: remove old message and feature flag check when flag is removed.
|
|
160
|
-
syncBlock: {
|
|
161
|
-
id: 'fabric.editor.syncBlock',
|
|
162
|
-
defaultMessage: 'Sync block',
|
|
163
|
-
description: 'Inserts a synced block that auto-updates content across Atlassian apps'
|
|
164
|
-
},
|
|
165
158
|
syncedBlockDescription: {
|
|
166
159
|
id: 'fabric.editor.syncedBlock.description',
|
|
167
160
|
defaultMessage: 'Sync content across multiple locations',
|
|
@@ -177,11 +170,6 @@ export var messages = defineMessages({
|
|
|
177
170
|
defaultMessage: 'Panel',
|
|
178
171
|
description: 'Visually distinguishes your text by adding a panel'
|
|
179
172
|
},
|
|
180
|
-
textBoxAriaLabel: {
|
|
181
|
-
id: 'fabric.editor.aria.textbox',
|
|
182
|
-
defaultMessage: 'textbox',
|
|
183
|
-
description: 'This is the definition of the HTML role textbox, it needs to be translated in the same way that a textbox with a HTML role of textbox'
|
|
184
|
-
},
|
|
185
173
|
other: {
|
|
186
174
|
id: 'fabric.editor.other',
|
|
187
175
|
defaultMessage: 'Others...',
|
|
@@ -140,13 +140,6 @@ export var syncBlockMessages = defineMessages({
|
|
|
140
140
|
defaultMessage: 'Create synced block',
|
|
141
141
|
description: 'Label for button which creates a new synced block'
|
|
142
142
|
},
|
|
143
|
-
// [FEATURE FLAG: platform_editor_block_menu_v2_patch_3]
|
|
144
|
-
// New message with updated wording. To clean up: remove old message and feature flag check when flag is removed.
|
|
145
|
-
syncBlockLabel: {
|
|
146
|
-
id: 'fabric.editor.syncBlockLabel',
|
|
147
|
-
defaultMessage: 'Sync block',
|
|
148
|
-
description: 'Label for button which creates a new synced block'
|
|
149
|
-
},
|
|
150
143
|
newLozenge: {
|
|
151
144
|
id: 'fabric.editor.syncBlock.toolbar.newLozenge',
|
|
152
145
|
defaultMessage: 'New',
|
|
@@ -10,7 +10,7 @@ import { isFedRamp } from './environment';
|
|
|
10
10
|
import { normaliseSentryBreadcrumbs, SERIALIZABLE_ATTRIBUTES } from './normalise-sentry-breadcrumbs';
|
|
11
11
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
12
12
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
13
|
-
var packageVersion = "112.21.
|
|
13
|
+
var packageVersion = "112.21.1";
|
|
14
14
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
15
15
|
// Remove URL as it has UGC
|
|
16
16
|
// Ignored via go/ees007
|
|
@@ -21,7 +21,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
|
21
21
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
22
22
|
import Layer from '../Layer';
|
|
23
23
|
var packageName = "@atlaskit/editor-common";
|
|
24
|
-
var packageVersion = "112.21.
|
|
24
|
+
var packageVersion = "112.21.1";
|
|
25
25
|
var halfFocusRing = 1;
|
|
26
26
|
var dropOffset = '0, 8';
|
|
27
27
|
var fadeIn = keyframes({
|
|
@@ -9,21 +9,11 @@ export declare const messages: {
|
|
|
9
9
|
description: string;
|
|
10
10
|
id: string;
|
|
11
11
|
};
|
|
12
|
-
copyBlock: {
|
|
13
|
-
defaultMessage: string;
|
|
14
|
-
description: string;
|
|
15
|
-
id: string;
|
|
16
|
-
};
|
|
17
12
|
copyLink: {
|
|
18
13
|
defaultMessage: string;
|
|
19
14
|
description: string;
|
|
20
15
|
id: string;
|
|
21
16
|
};
|
|
22
|
-
copyLinkToBlock: {
|
|
23
|
-
defaultMessage: string;
|
|
24
|
-
description: string;
|
|
25
|
-
id: string;
|
|
26
|
-
};
|
|
27
17
|
copyLinkToSelection: {
|
|
28
18
|
defaultMessage: string;
|
|
29
19
|
description: string;
|
|
@@ -39,11 +29,6 @@ export declare const messages: {
|
|
|
39
29
|
description: string;
|
|
40
30
|
id: string;
|
|
41
31
|
};
|
|
42
|
-
createSyncedBlock: {
|
|
43
|
-
defaultMessage: string;
|
|
44
|
-
description: string;
|
|
45
|
-
id: string;
|
|
46
|
-
};
|
|
47
32
|
decisionList: {
|
|
48
33
|
defaultMessage: string;
|
|
49
34
|
description: string;
|
|
@@ -1,187 +1,177 @@
|
|
|
1
1
|
export declare const messages: {
|
|
2
|
-
|
|
2
|
+
blockquote: {
|
|
3
|
+
defaultMessage: string;
|
|
4
|
+
description: string;
|
|
3
5
|
id: string;
|
|
6
|
+
};
|
|
7
|
+
blockquoteDescription: {
|
|
4
8
|
defaultMessage: string;
|
|
5
9
|
description: string;
|
|
10
|
+
id: string;
|
|
6
11
|
};
|
|
7
|
-
|
|
12
|
+
codeblock: {
|
|
13
|
+
defaultMessage: string;
|
|
14
|
+
description: string;
|
|
8
15
|
id: string;
|
|
16
|
+
};
|
|
17
|
+
codeblockDescription: {
|
|
9
18
|
defaultMessage: string;
|
|
10
19
|
description: string;
|
|
20
|
+
id: string;
|
|
11
21
|
};
|
|
12
|
-
|
|
22
|
+
customPanel: {
|
|
23
|
+
defaultMessage: string;
|
|
24
|
+
description: string;
|
|
13
25
|
id: string;
|
|
26
|
+
};
|
|
27
|
+
customPanelDescription: {
|
|
14
28
|
defaultMessage: string;
|
|
15
29
|
description: string;
|
|
30
|
+
id: string;
|
|
16
31
|
};
|
|
17
|
-
|
|
32
|
+
errorPanel: {
|
|
33
|
+
defaultMessage: string;
|
|
34
|
+
description: string;
|
|
18
35
|
id: string;
|
|
36
|
+
};
|
|
37
|
+
errorPanelDescription: {
|
|
19
38
|
defaultMessage: string;
|
|
20
39
|
description: string;
|
|
40
|
+
id: string;
|
|
21
41
|
};
|
|
22
|
-
|
|
42
|
+
heading1: {
|
|
43
|
+
defaultMessage: string;
|
|
44
|
+
description: string;
|
|
45
|
+
id: string;
|
|
46
|
+
};
|
|
47
|
+
heading1Description: {
|
|
48
|
+
defaultMessage: string;
|
|
49
|
+
description: string;
|
|
23
50
|
id: string;
|
|
51
|
+
};
|
|
52
|
+
heading2: {
|
|
24
53
|
defaultMessage: string;
|
|
25
54
|
description: string;
|
|
55
|
+
id: string;
|
|
26
56
|
};
|
|
27
57
|
heading2Description: {
|
|
28
|
-
id: string;
|
|
29
58
|
defaultMessage: string;
|
|
30
59
|
description: string;
|
|
60
|
+
id: string;
|
|
31
61
|
};
|
|
32
62
|
heading3: {
|
|
33
|
-
id: string;
|
|
34
63
|
defaultMessage: string;
|
|
35
64
|
description: string;
|
|
65
|
+
id: string;
|
|
36
66
|
};
|
|
37
67
|
heading3Description: {
|
|
38
|
-
id: string;
|
|
39
68
|
defaultMessage: string;
|
|
40
69
|
description: string;
|
|
70
|
+
id: string;
|
|
41
71
|
};
|
|
42
72
|
heading4: {
|
|
43
|
-
id: string;
|
|
44
73
|
defaultMessage: string;
|
|
45
74
|
description: string;
|
|
75
|
+
id: string;
|
|
46
76
|
};
|
|
47
77
|
heading4Description: {
|
|
48
|
-
id: string;
|
|
49
78
|
defaultMessage: string;
|
|
50
79
|
description: string;
|
|
80
|
+
id: string;
|
|
51
81
|
};
|
|
52
82
|
heading5: {
|
|
53
|
-
id: string;
|
|
54
83
|
defaultMessage: string;
|
|
55
84
|
description: string;
|
|
85
|
+
id: string;
|
|
56
86
|
};
|
|
57
87
|
heading5Description: {
|
|
58
|
-
id: string;
|
|
59
88
|
defaultMessage: string;
|
|
60
89
|
description: string;
|
|
90
|
+
id: string;
|
|
61
91
|
};
|
|
62
92
|
heading6: {
|
|
63
|
-
id: string;
|
|
64
93
|
defaultMessage: string;
|
|
65
94
|
description: string;
|
|
95
|
+
id: string;
|
|
66
96
|
};
|
|
67
97
|
heading6Description: {
|
|
68
|
-
id: string;
|
|
69
98
|
defaultMessage: string;
|
|
70
99
|
description: string;
|
|
71
|
-
};
|
|
72
|
-
blockquote: {
|
|
73
100
|
id: string;
|
|
74
|
-
defaultMessage: string;
|
|
75
|
-
description: string;
|
|
76
101
|
};
|
|
77
|
-
|
|
78
|
-
id: string;
|
|
102
|
+
infoPanel: {
|
|
79
103
|
defaultMessage: string;
|
|
80
104
|
description: string;
|
|
81
|
-
};
|
|
82
|
-
codeblock: {
|
|
83
105
|
id: string;
|
|
84
|
-
defaultMessage: string;
|
|
85
|
-
description: string;
|
|
86
106
|
};
|
|
87
|
-
|
|
88
|
-
id: string;
|
|
107
|
+
infoPanelDescription: {
|
|
89
108
|
defaultMessage: string;
|
|
90
109
|
description: string;
|
|
91
|
-
};
|
|
92
|
-
infoPanel: {
|
|
93
110
|
id: string;
|
|
111
|
+
};
|
|
112
|
+
newLozenge: {
|
|
94
113
|
defaultMessage: string;
|
|
95
114
|
description: string;
|
|
96
|
-
};
|
|
97
|
-
infoPanelDescription: {
|
|
98
115
|
id: string;
|
|
116
|
+
};
|
|
117
|
+
normal: {
|
|
99
118
|
defaultMessage: string;
|
|
100
119
|
description: string;
|
|
120
|
+
id: string;
|
|
101
121
|
};
|
|
102
122
|
notePanel: {
|
|
103
|
-
id: string;
|
|
104
123
|
defaultMessage: string;
|
|
105
124
|
description: string;
|
|
125
|
+
id: string;
|
|
106
126
|
};
|
|
107
127
|
notePanelDescription: {
|
|
108
|
-
id: string;
|
|
109
128
|
defaultMessage: string;
|
|
110
129
|
description: string;
|
|
111
|
-
};
|
|
112
|
-
successPanel: {
|
|
113
130
|
id: string;
|
|
114
|
-
defaultMessage: string;
|
|
115
|
-
description: string;
|
|
116
131
|
};
|
|
117
|
-
|
|
118
|
-
id: string;
|
|
132
|
+
other: {
|
|
119
133
|
defaultMessage: string;
|
|
120
134
|
description: string;
|
|
121
|
-
};
|
|
122
|
-
warningPanel: {
|
|
123
135
|
id: string;
|
|
124
|
-
defaultMessage: string;
|
|
125
|
-
description: string;
|
|
126
136
|
};
|
|
127
|
-
|
|
128
|
-
id: string;
|
|
137
|
+
panel: {
|
|
129
138
|
defaultMessage: string;
|
|
130
139
|
description: string;
|
|
131
|
-
};
|
|
132
|
-
errorPanel: {
|
|
133
140
|
id: string;
|
|
134
|
-
defaultMessage: string;
|
|
135
|
-
description: string;
|
|
136
141
|
};
|
|
137
|
-
|
|
138
|
-
id: string;
|
|
142
|
+
smallText: {
|
|
139
143
|
defaultMessage: string;
|
|
140
144
|
description: string;
|
|
141
|
-
};
|
|
142
|
-
customPanel: {
|
|
143
145
|
id: string;
|
|
146
|
+
};
|
|
147
|
+
successPanel: {
|
|
144
148
|
defaultMessage: string;
|
|
145
149
|
description: string;
|
|
146
|
-
};
|
|
147
|
-
customPanelDescription: {
|
|
148
150
|
id: string;
|
|
151
|
+
};
|
|
152
|
+
successPanelDescription: {
|
|
149
153
|
defaultMessage: string;
|
|
150
154
|
description: string;
|
|
155
|
+
id: string;
|
|
151
156
|
};
|
|
152
157
|
syncedBlock: {
|
|
153
|
-
id: string;
|
|
154
158
|
defaultMessage: string;
|
|
155
159
|
description: string;
|
|
156
|
-
};
|
|
157
|
-
syncBlock: {
|
|
158
160
|
id: string;
|
|
159
|
-
defaultMessage: string;
|
|
160
|
-
description: string;
|
|
161
161
|
};
|
|
162
162
|
syncedBlockDescription: {
|
|
163
|
-
id: string;
|
|
164
163
|
defaultMessage: string;
|
|
165
164
|
description: string;
|
|
166
|
-
};
|
|
167
|
-
newLozenge: {
|
|
168
165
|
id: string;
|
|
169
|
-
defaultMessage: string;
|
|
170
|
-
description: string;
|
|
171
166
|
};
|
|
172
|
-
|
|
173
|
-
id: string;
|
|
167
|
+
warningPanel: {
|
|
174
168
|
defaultMessage: string;
|
|
175
169
|
description: string;
|
|
176
|
-
};
|
|
177
|
-
textBoxAriaLabel: {
|
|
178
170
|
id: string;
|
|
179
|
-
defaultMessage: string;
|
|
180
|
-
description: string;
|
|
181
171
|
};
|
|
182
|
-
|
|
183
|
-
id: string;
|
|
172
|
+
warningPanelDescription: {
|
|
184
173
|
defaultMessage: string;
|
|
185
174
|
description: string;
|
|
175
|
+
id: string;
|
|
186
176
|
};
|
|
187
177
|
};
|
|
@@ -289,11 +289,6 @@ export declare const syncBlockMessages: {
|
|
|
289
289
|
description: string;
|
|
290
290
|
id: string;
|
|
291
291
|
};
|
|
292
|
-
syncBlockLabel: {
|
|
293
|
-
defaultMessage: string;
|
|
294
|
-
description: string;
|
|
295
|
-
id: string;
|
|
296
|
-
};
|
|
297
292
|
syncedBlockLabel: {
|
|
298
293
|
defaultMessage: string;
|
|
299
294
|
description: string;
|
|
@@ -9,21 +9,11 @@ export declare const messages: {
|
|
|
9
9
|
description: string;
|
|
10
10
|
id: string;
|
|
11
11
|
};
|
|
12
|
-
copyBlock: {
|
|
13
|
-
defaultMessage: string;
|
|
14
|
-
description: string;
|
|
15
|
-
id: string;
|
|
16
|
-
};
|
|
17
12
|
copyLink: {
|
|
18
13
|
defaultMessage: string;
|
|
19
14
|
description: string;
|
|
20
15
|
id: string;
|
|
21
16
|
};
|
|
22
|
-
copyLinkToBlock: {
|
|
23
|
-
defaultMessage: string;
|
|
24
|
-
description: string;
|
|
25
|
-
id: string;
|
|
26
|
-
};
|
|
27
17
|
copyLinkToSelection: {
|
|
28
18
|
defaultMessage: string;
|
|
29
19
|
description: string;
|
|
@@ -39,11 +29,6 @@ export declare const messages: {
|
|
|
39
29
|
description: string;
|
|
40
30
|
id: string;
|
|
41
31
|
};
|
|
42
|
-
createSyncedBlock: {
|
|
43
|
-
defaultMessage: string;
|
|
44
|
-
description: string;
|
|
45
|
-
id: string;
|
|
46
|
-
};
|
|
47
32
|
decisionList: {
|
|
48
33
|
defaultMessage: string;
|
|
49
34
|
description: string;
|
|
@@ -1,187 +1,177 @@
|
|
|
1
1
|
export declare const messages: {
|
|
2
|
-
|
|
2
|
+
blockquote: {
|
|
3
|
+
defaultMessage: string;
|
|
4
|
+
description: string;
|
|
3
5
|
id: string;
|
|
6
|
+
};
|
|
7
|
+
blockquoteDescription: {
|
|
4
8
|
defaultMessage: string;
|
|
5
9
|
description: string;
|
|
10
|
+
id: string;
|
|
6
11
|
};
|
|
7
|
-
|
|
12
|
+
codeblock: {
|
|
13
|
+
defaultMessage: string;
|
|
14
|
+
description: string;
|
|
8
15
|
id: string;
|
|
16
|
+
};
|
|
17
|
+
codeblockDescription: {
|
|
9
18
|
defaultMessage: string;
|
|
10
19
|
description: string;
|
|
20
|
+
id: string;
|
|
11
21
|
};
|
|
12
|
-
|
|
22
|
+
customPanel: {
|
|
23
|
+
defaultMessage: string;
|
|
24
|
+
description: string;
|
|
13
25
|
id: string;
|
|
26
|
+
};
|
|
27
|
+
customPanelDescription: {
|
|
14
28
|
defaultMessage: string;
|
|
15
29
|
description: string;
|
|
30
|
+
id: string;
|
|
16
31
|
};
|
|
17
|
-
|
|
32
|
+
errorPanel: {
|
|
33
|
+
defaultMessage: string;
|
|
34
|
+
description: string;
|
|
18
35
|
id: string;
|
|
36
|
+
};
|
|
37
|
+
errorPanelDescription: {
|
|
19
38
|
defaultMessage: string;
|
|
20
39
|
description: string;
|
|
40
|
+
id: string;
|
|
21
41
|
};
|
|
22
|
-
|
|
42
|
+
heading1: {
|
|
43
|
+
defaultMessage: string;
|
|
44
|
+
description: string;
|
|
45
|
+
id: string;
|
|
46
|
+
};
|
|
47
|
+
heading1Description: {
|
|
48
|
+
defaultMessage: string;
|
|
49
|
+
description: string;
|
|
23
50
|
id: string;
|
|
51
|
+
};
|
|
52
|
+
heading2: {
|
|
24
53
|
defaultMessage: string;
|
|
25
54
|
description: string;
|
|
55
|
+
id: string;
|
|
26
56
|
};
|
|
27
57
|
heading2Description: {
|
|
28
|
-
id: string;
|
|
29
58
|
defaultMessage: string;
|
|
30
59
|
description: string;
|
|
60
|
+
id: string;
|
|
31
61
|
};
|
|
32
62
|
heading3: {
|
|
33
|
-
id: string;
|
|
34
63
|
defaultMessage: string;
|
|
35
64
|
description: string;
|
|
65
|
+
id: string;
|
|
36
66
|
};
|
|
37
67
|
heading3Description: {
|
|
38
|
-
id: string;
|
|
39
68
|
defaultMessage: string;
|
|
40
69
|
description: string;
|
|
70
|
+
id: string;
|
|
41
71
|
};
|
|
42
72
|
heading4: {
|
|
43
|
-
id: string;
|
|
44
73
|
defaultMessage: string;
|
|
45
74
|
description: string;
|
|
75
|
+
id: string;
|
|
46
76
|
};
|
|
47
77
|
heading4Description: {
|
|
48
|
-
id: string;
|
|
49
78
|
defaultMessage: string;
|
|
50
79
|
description: string;
|
|
80
|
+
id: string;
|
|
51
81
|
};
|
|
52
82
|
heading5: {
|
|
53
|
-
id: string;
|
|
54
83
|
defaultMessage: string;
|
|
55
84
|
description: string;
|
|
85
|
+
id: string;
|
|
56
86
|
};
|
|
57
87
|
heading5Description: {
|
|
58
|
-
id: string;
|
|
59
88
|
defaultMessage: string;
|
|
60
89
|
description: string;
|
|
90
|
+
id: string;
|
|
61
91
|
};
|
|
62
92
|
heading6: {
|
|
63
|
-
id: string;
|
|
64
93
|
defaultMessage: string;
|
|
65
94
|
description: string;
|
|
95
|
+
id: string;
|
|
66
96
|
};
|
|
67
97
|
heading6Description: {
|
|
68
|
-
id: string;
|
|
69
98
|
defaultMessage: string;
|
|
70
99
|
description: string;
|
|
71
|
-
};
|
|
72
|
-
blockquote: {
|
|
73
100
|
id: string;
|
|
74
|
-
defaultMessage: string;
|
|
75
|
-
description: string;
|
|
76
101
|
};
|
|
77
|
-
|
|
78
|
-
id: string;
|
|
102
|
+
infoPanel: {
|
|
79
103
|
defaultMessage: string;
|
|
80
104
|
description: string;
|
|
81
|
-
};
|
|
82
|
-
codeblock: {
|
|
83
105
|
id: string;
|
|
84
|
-
defaultMessage: string;
|
|
85
|
-
description: string;
|
|
86
106
|
};
|
|
87
|
-
|
|
88
|
-
id: string;
|
|
107
|
+
infoPanelDescription: {
|
|
89
108
|
defaultMessage: string;
|
|
90
109
|
description: string;
|
|
91
|
-
};
|
|
92
|
-
infoPanel: {
|
|
93
110
|
id: string;
|
|
111
|
+
};
|
|
112
|
+
newLozenge: {
|
|
94
113
|
defaultMessage: string;
|
|
95
114
|
description: string;
|
|
96
|
-
};
|
|
97
|
-
infoPanelDescription: {
|
|
98
115
|
id: string;
|
|
116
|
+
};
|
|
117
|
+
normal: {
|
|
99
118
|
defaultMessage: string;
|
|
100
119
|
description: string;
|
|
120
|
+
id: string;
|
|
101
121
|
};
|
|
102
122
|
notePanel: {
|
|
103
|
-
id: string;
|
|
104
123
|
defaultMessage: string;
|
|
105
124
|
description: string;
|
|
125
|
+
id: string;
|
|
106
126
|
};
|
|
107
127
|
notePanelDescription: {
|
|
108
|
-
id: string;
|
|
109
128
|
defaultMessage: string;
|
|
110
129
|
description: string;
|
|
111
|
-
};
|
|
112
|
-
successPanel: {
|
|
113
130
|
id: string;
|
|
114
|
-
defaultMessage: string;
|
|
115
|
-
description: string;
|
|
116
131
|
};
|
|
117
|
-
|
|
118
|
-
id: string;
|
|
132
|
+
other: {
|
|
119
133
|
defaultMessage: string;
|
|
120
134
|
description: string;
|
|
121
|
-
};
|
|
122
|
-
warningPanel: {
|
|
123
135
|
id: string;
|
|
124
|
-
defaultMessage: string;
|
|
125
|
-
description: string;
|
|
126
136
|
};
|
|
127
|
-
|
|
128
|
-
id: string;
|
|
137
|
+
panel: {
|
|
129
138
|
defaultMessage: string;
|
|
130
139
|
description: string;
|
|
131
|
-
};
|
|
132
|
-
errorPanel: {
|
|
133
140
|
id: string;
|
|
134
|
-
defaultMessage: string;
|
|
135
|
-
description: string;
|
|
136
141
|
};
|
|
137
|
-
|
|
138
|
-
id: string;
|
|
142
|
+
smallText: {
|
|
139
143
|
defaultMessage: string;
|
|
140
144
|
description: string;
|
|
141
|
-
};
|
|
142
|
-
customPanel: {
|
|
143
145
|
id: string;
|
|
146
|
+
};
|
|
147
|
+
successPanel: {
|
|
144
148
|
defaultMessage: string;
|
|
145
149
|
description: string;
|
|
146
|
-
};
|
|
147
|
-
customPanelDescription: {
|
|
148
150
|
id: string;
|
|
151
|
+
};
|
|
152
|
+
successPanelDescription: {
|
|
149
153
|
defaultMessage: string;
|
|
150
154
|
description: string;
|
|
155
|
+
id: string;
|
|
151
156
|
};
|
|
152
157
|
syncedBlock: {
|
|
153
|
-
id: string;
|
|
154
158
|
defaultMessage: string;
|
|
155
159
|
description: string;
|
|
156
|
-
};
|
|
157
|
-
syncBlock: {
|
|
158
160
|
id: string;
|
|
159
|
-
defaultMessage: string;
|
|
160
|
-
description: string;
|
|
161
161
|
};
|
|
162
162
|
syncedBlockDescription: {
|
|
163
|
-
id: string;
|
|
164
163
|
defaultMessage: string;
|
|
165
164
|
description: string;
|
|
166
|
-
};
|
|
167
|
-
newLozenge: {
|
|
168
165
|
id: string;
|
|
169
|
-
defaultMessage: string;
|
|
170
|
-
description: string;
|
|
171
166
|
};
|
|
172
|
-
|
|
173
|
-
id: string;
|
|
167
|
+
warningPanel: {
|
|
174
168
|
defaultMessage: string;
|
|
175
169
|
description: string;
|
|
176
|
-
};
|
|
177
|
-
textBoxAriaLabel: {
|
|
178
170
|
id: string;
|
|
179
|
-
defaultMessage: string;
|
|
180
|
-
description: string;
|
|
181
171
|
};
|
|
182
|
-
|
|
183
|
-
id: string;
|
|
172
|
+
warningPanelDescription: {
|
|
184
173
|
defaultMessage: string;
|
|
185
174
|
description: string;
|
|
175
|
+
id: string;
|
|
186
176
|
};
|
|
187
177
|
};
|
|
@@ -289,11 +289,6 @@ export declare const syncBlockMessages: {
|
|
|
289
289
|
description: string;
|
|
290
290
|
id: string;
|
|
291
291
|
};
|
|
292
|
-
syncBlockLabel: {
|
|
293
|
-
defaultMessage: string;
|
|
294
|
-
description: string;
|
|
295
|
-
id: string;
|
|
296
|
-
};
|
|
297
292
|
syncedBlockLabel: {
|
|
298
293
|
defaultMessage: string;
|
|
299
294
|
description: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-common",
|
|
3
|
-
"version": "112.21.
|
|
3
|
+
"version": "112.21.2",
|
|
4
4
|
"description": "A package that contains common classes and components for editor and renderer",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -79,10 +79,10 @@
|
|
|
79
79
|
"@atlaskit/spinner": "^19.1.0",
|
|
80
80
|
"@atlaskit/task-decision": "^19.3.0",
|
|
81
81
|
"@atlaskit/textfield": "^8.3.0",
|
|
82
|
-
"@atlaskit/tmp-editor-statsig": "^62.
|
|
82
|
+
"@atlaskit/tmp-editor-statsig": "^62.2.0",
|
|
83
83
|
"@atlaskit/tokens": "^13.0.0",
|
|
84
84
|
"@atlaskit/tooltip": "^21.1.0",
|
|
85
|
-
"@atlaskit/width-detector": "^5.
|
|
85
|
+
"@atlaskit/width-detector": "^5.1.0",
|
|
86
86
|
"@babel/runtime": "^7.0.0",
|
|
87
87
|
"@compiled/react": "^0.20.0",
|
|
88
88
|
"@emotion/react": "^11.7.1",
|
|
@@ -166,9 +166,6 @@
|
|
|
166
166
|
"platform_editor_typography_ugc": {
|
|
167
167
|
"type": "boolean"
|
|
168
168
|
},
|
|
169
|
-
"platform_editor_block_menu_v2_patch_3": {
|
|
170
|
-
"type": "boolean"
|
|
171
|
-
},
|
|
172
169
|
"media-perf-uplift-mutation-fix": {
|
|
173
170
|
"type": "boolean"
|
|
174
171
|
},
|