@atlaskit/editor-common 114.30.0 → 114.30.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 +9 -0
- package/dist/cjs/messages/syncBlock.js +47 -0
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/type-ahead/messages.js +5 -0
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/es2019/messages/syncBlock.js +47 -0
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/type-ahead/messages.js +5 -0
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/esm/messages/syncBlock.js +47 -0
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/type-ahead/messages.js +5 -0
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/types/analytics/types/sync-block-events.d.ts +11 -2
- package/dist/types/messages/syncBlock.d.ts +45 -0
- package/dist/types/type-ahead/messages.d.ts +5 -0
- package/dist/types-ts4.5/analytics/types/sync-block-events.d.ts +11 -2
- package/dist/types-ts4.5/messages/syncBlock.d.ts +45 -0
- package/dist/types-ts4.5/type-ahead/messages.d.ts +5 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 114.30.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`9784984097a8a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9784984097a8a) -
|
|
8
|
+
[ux] Improves synced block support for Jira work items, including product-specific copy,
|
|
9
|
+
issue-type icons, and enhanced analytics.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 114.30.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -246,6 +246,11 @@ var syncBlockMessages = exports.syncBlockMessages = (0, _reactIntl.defineMessage
|
|
|
246
246
|
defaultMessage: 'Synced content will display <link>when the page is published</link>',
|
|
247
247
|
description: 'Error message which is shown over sync block when the source page is unpublished.'
|
|
248
248
|
},
|
|
249
|
+
unpublishedErrorJiraWorkItem: {
|
|
250
|
+
id: 'fabric.editor.error.description.reference.unpublished.jiraWorkItem',
|
|
251
|
+
defaultMessage: "Synced content will display <link>when the item's description is saved</link>",
|
|
252
|
+
description: 'Error message which is shown over sync block when the source Jira work item description has not yet been saved.'
|
|
253
|
+
},
|
|
249
254
|
syncBlockCopiedTitle: {
|
|
250
255
|
id: 'fabric.editor.syncBlockCopiedTitle',
|
|
251
256
|
defaultMessage: 'Synced block copied to clipboard',
|
|
@@ -321,16 +326,58 @@ var syncBlockMessages = exports.syncBlockMessages = (0, _reactIntl.defineMessage
|
|
|
321
326
|
defaultMessage: 'Untitled',
|
|
322
327
|
description: 'Placeholder title shown in the synced location dropdown when a page has no title yet'
|
|
323
328
|
},
|
|
329
|
+
// Accessible labels for the Jira issue-type icons rendered in the synced location
|
|
330
|
+
// dropdown. Used as the `IconTile` `label` prop so screen readers announce the type.
|
|
331
|
+
syncedLocationDropdownIssueTypeTask: {
|
|
332
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeTask',
|
|
333
|
+
defaultMessage: 'Task',
|
|
334
|
+
description: 'Accessible label for the Jira Task issue-type icon in the location dropdown'
|
|
335
|
+
},
|
|
336
|
+
syncedLocationDropdownIssueTypeBug: {
|
|
337
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeBug',
|
|
338
|
+
defaultMessage: 'Bug',
|
|
339
|
+
description: 'Accessible label for the Jira Bug issue-type icon in the location dropdown'
|
|
340
|
+
},
|
|
341
|
+
syncedLocationDropdownIssueTypeStory: {
|
|
342
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeStory',
|
|
343
|
+
defaultMessage: 'Story',
|
|
344
|
+
description: 'Accessible label for the Jira Story issue-type icon in the location dropdown'
|
|
345
|
+
},
|
|
346
|
+
syncedLocationDropdownIssueTypeEpic: {
|
|
347
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeEpic',
|
|
348
|
+
defaultMessage: 'Epic',
|
|
349
|
+
description: 'Accessible label for the Jira Epic issue-type icon in the location dropdown'
|
|
350
|
+
},
|
|
351
|
+
syncedLocationDropdownIssueTypeSubtask: {
|
|
352
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeSubtask',
|
|
353
|
+
defaultMessage: 'Subtask',
|
|
354
|
+
description: 'Accessible label for the Jira Subtask issue-type icon in the location dropdown'
|
|
355
|
+
},
|
|
356
|
+
syncedLocationDropdownIssueTypeGeneric: {
|
|
357
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeGeneric',
|
|
358
|
+
defaultMessage: 'Jira work item',
|
|
359
|
+
description: 'Accessible label for the generic Jira issue-type icon when the specific type is unknown'
|
|
360
|
+
},
|
|
324
361
|
unpublishedSyncBlockPastedTitle: {
|
|
325
362
|
id: 'fabric.editor.unpublishedSyncBlockPastedTitle',
|
|
326
363
|
defaultMessage: 'Pasted from unpublished page',
|
|
327
364
|
description: 'Title in flag which appears when a reference to an unpublished sync block is pasted'
|
|
328
365
|
},
|
|
366
|
+
unpublishedSyncBlockPastedTitleJiraWorkItem: {
|
|
367
|
+
id: 'fabric.editor.unpublishedSyncBlockPastedTitle.jiraWorkItem',
|
|
368
|
+
defaultMessage: 'Pasted from unsaved item',
|
|
369
|
+
description: 'Title in flag which appears when a reference to a sync block whose source is a Jira work item with an unsaved description is pasted'
|
|
370
|
+
},
|
|
329
371
|
unpublishedSyncBlockPastedDescription: {
|
|
330
372
|
id: 'fabric.editor.unpublishedSyncBlockPastedDescription',
|
|
331
373
|
defaultMessage: 'When the page is published, the content will be displayed.',
|
|
332
374
|
description: 'Description in flag which appears when a reference to an unpublished sync block is pasted'
|
|
333
375
|
},
|
|
376
|
+
unpublishedSyncBlockPastedDescriptionJiraWorkItem: {
|
|
377
|
+
id: 'fabric.editor.unpublishedSyncBlockPastedDescription.jiraWorkItem',
|
|
378
|
+
defaultMessage: "When the item's description is saved, the content will be displayed.",
|
|
379
|
+
description: "Description in flag which appears when a reference to a sync block whose source is a Jira work item with an unsaved description is pasted"
|
|
380
|
+
},
|
|
334
381
|
unsyncButton: {
|
|
335
382
|
id: 'fabric.editor.syncedBlock.unsync',
|
|
336
383
|
defaultMessage: 'Unsync',
|
|
@@ -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 = "114.
|
|
22
|
+
var packageVersion = "114.30.0";
|
|
23
23
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
24
24
|
// Remove URL as it has UGC
|
|
25
25
|
// Ignored via go/ees007
|
|
@@ -110,5 +110,10 @@ var typeAheadListMessages = exports.typeAheadListMessages = (0, _reactIntl.defin
|
|
|
110
110
|
id: 'fabric.editor.emptySearchResultsSuggestionNew',
|
|
111
111
|
defaultMessage: 'Select {askRovoName} for help, or {buttonName} to browse inserts.',
|
|
112
112
|
description: 'a prompt to suggest user to click a button to browse inserts or ask Rovo for help when there are no search results'
|
|
113
|
+
},
|
|
114
|
+
emptySearchResultsSuggestionAskRovoOnly: {
|
|
115
|
+
id: 'fabric.editor.emptySearchResultsSuggestionAskRovoOnly',
|
|
116
|
+
defaultMessage: 'Select {askRovoName} for help.',
|
|
117
|
+
description: 'a prompt to suggest user to ask Rovo for help when there are no search results and no browse inserts button is available'
|
|
113
118
|
}
|
|
114
119
|
});
|
|
@@ -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 = "114.
|
|
27
|
+
var packageVersion = "114.30.0";
|
|
28
28
|
var halfFocusRing = 1;
|
|
29
29
|
var dropOffset = '0, 8';
|
|
30
30
|
var fadeIn = (0, _react2.keyframes)({
|
|
@@ -240,6 +240,11 @@ export const syncBlockMessages = defineMessages({
|
|
|
240
240
|
defaultMessage: 'Synced content will display <link>when the page is published</link>',
|
|
241
241
|
description: 'Error message which is shown over sync block when the source page is unpublished.'
|
|
242
242
|
},
|
|
243
|
+
unpublishedErrorJiraWorkItem: {
|
|
244
|
+
id: 'fabric.editor.error.description.reference.unpublished.jiraWorkItem',
|
|
245
|
+
defaultMessage: "Synced content will display <link>when the item's description is saved</link>",
|
|
246
|
+
description: 'Error message which is shown over sync block when the source Jira work item description has not yet been saved.'
|
|
247
|
+
},
|
|
243
248
|
syncBlockCopiedTitle: {
|
|
244
249
|
id: 'fabric.editor.syncBlockCopiedTitle',
|
|
245
250
|
defaultMessage: 'Synced block copied to clipboard',
|
|
@@ -315,16 +320,58 @@ export const syncBlockMessages = defineMessages({
|
|
|
315
320
|
defaultMessage: 'Untitled',
|
|
316
321
|
description: 'Placeholder title shown in the synced location dropdown when a page has no title yet'
|
|
317
322
|
},
|
|
323
|
+
// Accessible labels for the Jira issue-type icons rendered in the synced location
|
|
324
|
+
// dropdown. Used as the `IconTile` `label` prop so screen readers announce the type.
|
|
325
|
+
syncedLocationDropdownIssueTypeTask: {
|
|
326
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeTask',
|
|
327
|
+
defaultMessage: 'Task',
|
|
328
|
+
description: 'Accessible label for the Jira Task issue-type icon in the location dropdown'
|
|
329
|
+
},
|
|
330
|
+
syncedLocationDropdownIssueTypeBug: {
|
|
331
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeBug',
|
|
332
|
+
defaultMessage: 'Bug',
|
|
333
|
+
description: 'Accessible label for the Jira Bug issue-type icon in the location dropdown'
|
|
334
|
+
},
|
|
335
|
+
syncedLocationDropdownIssueTypeStory: {
|
|
336
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeStory',
|
|
337
|
+
defaultMessage: 'Story',
|
|
338
|
+
description: 'Accessible label for the Jira Story issue-type icon in the location dropdown'
|
|
339
|
+
},
|
|
340
|
+
syncedLocationDropdownIssueTypeEpic: {
|
|
341
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeEpic',
|
|
342
|
+
defaultMessage: 'Epic',
|
|
343
|
+
description: 'Accessible label for the Jira Epic issue-type icon in the location dropdown'
|
|
344
|
+
},
|
|
345
|
+
syncedLocationDropdownIssueTypeSubtask: {
|
|
346
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeSubtask',
|
|
347
|
+
defaultMessage: 'Subtask',
|
|
348
|
+
description: 'Accessible label for the Jira Subtask issue-type icon in the location dropdown'
|
|
349
|
+
},
|
|
350
|
+
syncedLocationDropdownIssueTypeGeneric: {
|
|
351
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeGeneric',
|
|
352
|
+
defaultMessage: 'Jira work item',
|
|
353
|
+
description: 'Accessible label for the generic Jira issue-type icon when the specific type is unknown'
|
|
354
|
+
},
|
|
318
355
|
unpublishedSyncBlockPastedTitle: {
|
|
319
356
|
id: 'fabric.editor.unpublishedSyncBlockPastedTitle',
|
|
320
357
|
defaultMessage: 'Pasted from unpublished page',
|
|
321
358
|
description: 'Title in flag which appears when a reference to an unpublished sync block is pasted'
|
|
322
359
|
},
|
|
360
|
+
unpublishedSyncBlockPastedTitleJiraWorkItem: {
|
|
361
|
+
id: 'fabric.editor.unpublishedSyncBlockPastedTitle.jiraWorkItem',
|
|
362
|
+
defaultMessage: 'Pasted from unsaved item',
|
|
363
|
+
description: 'Title in flag which appears when a reference to a sync block whose source is a Jira work item with an unsaved description is pasted'
|
|
364
|
+
},
|
|
323
365
|
unpublishedSyncBlockPastedDescription: {
|
|
324
366
|
id: 'fabric.editor.unpublishedSyncBlockPastedDescription',
|
|
325
367
|
defaultMessage: 'When the page is published, the content will be displayed.',
|
|
326
368
|
description: 'Description in flag which appears when a reference to an unpublished sync block is pasted'
|
|
327
369
|
},
|
|
370
|
+
unpublishedSyncBlockPastedDescriptionJiraWorkItem: {
|
|
371
|
+
id: 'fabric.editor.unpublishedSyncBlockPastedDescription.jiraWorkItem',
|
|
372
|
+
defaultMessage: "When the item's description is saved, the content will be displayed.",
|
|
373
|
+
description: "Description in flag which appears when a reference to a sync block whose source is a Jira work item with an unsaved description is pasted"
|
|
374
|
+
},
|
|
328
375
|
unsyncButton: {
|
|
329
376
|
id: 'fabric.editor.syncedBlock.unsync',
|
|
330
377
|
defaultMessage: 'Unsync',
|
|
@@ -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 = "114.
|
|
7
|
+
const packageVersion = "114.30.0";
|
|
8
8
|
const sanitiseSentryEvents = (data, _hint) => {
|
|
9
9
|
// Remove URL as it has UGC
|
|
10
10
|
// Ignored via go/ees007
|
|
@@ -104,5 +104,10 @@ export const typeAheadListMessages = defineMessages({
|
|
|
104
104
|
id: 'fabric.editor.emptySearchResultsSuggestionNew',
|
|
105
105
|
defaultMessage: 'Select {askRovoName} for help, or {buttonName} to browse inserts.',
|
|
106
106
|
description: 'a prompt to suggest user to click a button to browse inserts or ask Rovo for help when there are no search results'
|
|
107
|
+
},
|
|
108
|
+
emptySearchResultsSuggestionAskRovoOnly: {
|
|
109
|
+
id: 'fabric.editor.emptySearchResultsSuggestionAskRovoOnly',
|
|
110
|
+
defaultMessage: 'Select {askRovoName} for help.',
|
|
111
|
+
description: 'a prompt to suggest user to ask Rovo for help when there are no search results and no browse inserts button is available'
|
|
107
112
|
}
|
|
108
113
|
});
|
|
@@ -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 = "114.
|
|
17
|
+
const packageVersion = "114.30.0";
|
|
18
18
|
const halfFocusRing = 1;
|
|
19
19
|
const dropOffset = '0, 8';
|
|
20
20
|
const fadeIn = keyframes({
|
|
@@ -240,6 +240,11 @@ export var syncBlockMessages = defineMessages({
|
|
|
240
240
|
defaultMessage: 'Synced content will display <link>when the page is published</link>',
|
|
241
241
|
description: 'Error message which is shown over sync block when the source page is unpublished.'
|
|
242
242
|
},
|
|
243
|
+
unpublishedErrorJiraWorkItem: {
|
|
244
|
+
id: 'fabric.editor.error.description.reference.unpublished.jiraWorkItem',
|
|
245
|
+
defaultMessage: "Synced content will display <link>when the item's description is saved</link>",
|
|
246
|
+
description: 'Error message which is shown over sync block when the source Jira work item description has not yet been saved.'
|
|
247
|
+
},
|
|
243
248
|
syncBlockCopiedTitle: {
|
|
244
249
|
id: 'fabric.editor.syncBlockCopiedTitle',
|
|
245
250
|
defaultMessage: 'Synced block copied to clipboard',
|
|
@@ -315,16 +320,58 @@ export var syncBlockMessages = defineMessages({
|
|
|
315
320
|
defaultMessage: 'Untitled',
|
|
316
321
|
description: 'Placeholder title shown in the synced location dropdown when a page has no title yet'
|
|
317
322
|
},
|
|
323
|
+
// Accessible labels for the Jira issue-type icons rendered in the synced location
|
|
324
|
+
// dropdown. Used as the `IconTile` `label` prop so screen readers announce the type.
|
|
325
|
+
syncedLocationDropdownIssueTypeTask: {
|
|
326
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeTask',
|
|
327
|
+
defaultMessage: 'Task',
|
|
328
|
+
description: 'Accessible label for the Jira Task issue-type icon in the location dropdown'
|
|
329
|
+
},
|
|
330
|
+
syncedLocationDropdownIssueTypeBug: {
|
|
331
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeBug',
|
|
332
|
+
defaultMessage: 'Bug',
|
|
333
|
+
description: 'Accessible label for the Jira Bug issue-type icon in the location dropdown'
|
|
334
|
+
},
|
|
335
|
+
syncedLocationDropdownIssueTypeStory: {
|
|
336
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeStory',
|
|
337
|
+
defaultMessage: 'Story',
|
|
338
|
+
description: 'Accessible label for the Jira Story issue-type icon in the location dropdown'
|
|
339
|
+
},
|
|
340
|
+
syncedLocationDropdownIssueTypeEpic: {
|
|
341
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeEpic',
|
|
342
|
+
defaultMessage: 'Epic',
|
|
343
|
+
description: 'Accessible label for the Jira Epic issue-type icon in the location dropdown'
|
|
344
|
+
},
|
|
345
|
+
syncedLocationDropdownIssueTypeSubtask: {
|
|
346
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeSubtask',
|
|
347
|
+
defaultMessage: 'Subtask',
|
|
348
|
+
description: 'Accessible label for the Jira Subtask issue-type icon in the location dropdown'
|
|
349
|
+
},
|
|
350
|
+
syncedLocationDropdownIssueTypeGeneric: {
|
|
351
|
+
id: 'fabric.editor.syncedLocationDropdownIssueTypeGeneric',
|
|
352
|
+
defaultMessage: 'Jira work item',
|
|
353
|
+
description: 'Accessible label for the generic Jira issue-type icon when the specific type is unknown'
|
|
354
|
+
},
|
|
318
355
|
unpublishedSyncBlockPastedTitle: {
|
|
319
356
|
id: 'fabric.editor.unpublishedSyncBlockPastedTitle',
|
|
320
357
|
defaultMessage: 'Pasted from unpublished page',
|
|
321
358
|
description: 'Title in flag which appears when a reference to an unpublished sync block is pasted'
|
|
322
359
|
},
|
|
360
|
+
unpublishedSyncBlockPastedTitleJiraWorkItem: {
|
|
361
|
+
id: 'fabric.editor.unpublishedSyncBlockPastedTitle.jiraWorkItem',
|
|
362
|
+
defaultMessage: 'Pasted from unsaved item',
|
|
363
|
+
description: 'Title in flag which appears when a reference to a sync block whose source is a Jira work item with an unsaved description is pasted'
|
|
364
|
+
},
|
|
323
365
|
unpublishedSyncBlockPastedDescription: {
|
|
324
366
|
id: 'fabric.editor.unpublishedSyncBlockPastedDescription',
|
|
325
367
|
defaultMessage: 'When the page is published, the content will be displayed.',
|
|
326
368
|
description: 'Description in flag which appears when a reference to an unpublished sync block is pasted'
|
|
327
369
|
},
|
|
370
|
+
unpublishedSyncBlockPastedDescriptionJiraWorkItem: {
|
|
371
|
+
id: 'fabric.editor.unpublishedSyncBlockPastedDescription.jiraWorkItem',
|
|
372
|
+
defaultMessage: "When the item's description is saved, the content will be displayed.",
|
|
373
|
+
description: "Description in flag which appears when a reference to a sync block whose source is a Jira work item with an unsaved description is pasted"
|
|
374
|
+
},
|
|
328
375
|
unsyncButton: {
|
|
329
376
|
id: 'fabric.editor.syncedBlock.unsync',
|
|
330
377
|
defaultMessage: 'Unsync',
|
|
@@ -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 = "114.
|
|
13
|
+
var packageVersion = "114.30.0";
|
|
14
14
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
15
15
|
// Remove URL as it has UGC
|
|
16
16
|
// Ignored via go/ees007
|
|
@@ -104,5 +104,10 @@ export var typeAheadListMessages = defineMessages({
|
|
|
104
104
|
id: 'fabric.editor.emptySearchResultsSuggestionNew',
|
|
105
105
|
defaultMessage: 'Select {askRovoName} for help, or {buttonName} to browse inserts.',
|
|
106
106
|
description: 'a prompt to suggest user to click a button to browse inserts or ask Rovo for help when there are no search results'
|
|
107
|
+
},
|
|
108
|
+
emptySearchResultsSuggestionAskRovoOnly: {
|
|
109
|
+
id: 'fabric.editor.emptySearchResultsSuggestionAskRovoOnly',
|
|
110
|
+
defaultMessage: 'Select {askRovoName} for help.',
|
|
111
|
+
description: 'a prompt to suggest user to ask Rovo for help when there are no search results and no browse inserts button is available'
|
|
107
112
|
}
|
|
108
113
|
});
|
|
@@ -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 = "114.
|
|
24
|
+
var packageVersion = "114.30.0";
|
|
25
25
|
var halfFocusRing = 1;
|
|
26
26
|
var dropOffset = '0, 8';
|
|
27
27
|
var fadeIn = keyframes({
|
|
@@ -5,14 +5,23 @@ import type { OperationalAEP } from './utils';
|
|
|
5
5
|
type SyncedBlockErrorAttributes = {
|
|
6
6
|
error: string;
|
|
7
7
|
resourceId?: string;
|
|
8
|
+
/**
|
|
9
|
+
* The product the source block lives in, derived from `resourceId` when present.
|
|
10
|
+
* Always optional because batch / subscription init paths fire without a `resourceId`.
|
|
11
|
+
*/
|
|
12
|
+
sourceProduct?: string;
|
|
8
13
|
};
|
|
9
14
|
type SyncedBlockSuccessAttributes = {
|
|
10
15
|
blockInstanceId?: string;
|
|
11
16
|
resourceId: string;
|
|
12
|
-
|
|
13
|
-
|
|
17
|
+
/**
|
|
18
|
+
* The product the source block lives in, derived from `resourceId`.
|
|
19
|
+
* Optional during the rollout of `platform_synced_block_patch_11`; once the gate is
|
|
20
|
+
* fully on this can be marked required.
|
|
21
|
+
*/
|
|
14
22
|
sourceProduct?: string;
|
|
15
23
|
};
|
|
24
|
+
type FetchSyncedBlockSuccessAttributes = SyncedBlockSuccessAttributes;
|
|
16
25
|
type SyncedBlockCopySuccessAttributes = SyncedBlockSuccessAttributes & {
|
|
17
26
|
inputMethod: INPUT_METHOD;
|
|
18
27
|
};
|
|
@@ -314,6 +314,36 @@ export declare const syncBlockMessages: {
|
|
|
314
314
|
description: string;
|
|
315
315
|
id: string;
|
|
316
316
|
};
|
|
317
|
+
syncedLocationDropdownIssueTypeBug: {
|
|
318
|
+
defaultMessage: string;
|
|
319
|
+
description: string;
|
|
320
|
+
id: string;
|
|
321
|
+
};
|
|
322
|
+
syncedLocationDropdownIssueTypeEpic: {
|
|
323
|
+
defaultMessage: string;
|
|
324
|
+
description: string;
|
|
325
|
+
id: string;
|
|
326
|
+
};
|
|
327
|
+
syncedLocationDropdownIssueTypeGeneric: {
|
|
328
|
+
defaultMessage: string;
|
|
329
|
+
description: string;
|
|
330
|
+
id: string;
|
|
331
|
+
};
|
|
332
|
+
syncedLocationDropdownIssueTypeStory: {
|
|
333
|
+
defaultMessage: string;
|
|
334
|
+
description: string;
|
|
335
|
+
id: string;
|
|
336
|
+
};
|
|
337
|
+
syncedLocationDropdownIssueTypeSubtask: {
|
|
338
|
+
defaultMessage: string;
|
|
339
|
+
description: string;
|
|
340
|
+
id: string;
|
|
341
|
+
};
|
|
342
|
+
syncedLocationDropdownIssueTypeTask: {
|
|
343
|
+
defaultMessage: string;
|
|
344
|
+
description: string;
|
|
345
|
+
id: string;
|
|
346
|
+
};
|
|
317
347
|
syncedLocationDropdownLearnMoreLink: {
|
|
318
348
|
defaultMessage: string;
|
|
319
349
|
description: string;
|
|
@@ -374,16 +404,31 @@ export declare const syncBlockMessages: {
|
|
|
374
404
|
description: string;
|
|
375
405
|
id: string;
|
|
376
406
|
};
|
|
407
|
+
unpublishedErrorJiraWorkItem: {
|
|
408
|
+
defaultMessage: string;
|
|
409
|
+
description: string;
|
|
410
|
+
id: string;
|
|
411
|
+
};
|
|
377
412
|
unpublishedSyncBlockPastedDescription: {
|
|
378
413
|
defaultMessage: string;
|
|
379
414
|
description: string;
|
|
380
415
|
id: string;
|
|
381
416
|
};
|
|
417
|
+
unpublishedSyncBlockPastedDescriptionJiraWorkItem: {
|
|
418
|
+
defaultMessage: string;
|
|
419
|
+
description: string;
|
|
420
|
+
id: string;
|
|
421
|
+
};
|
|
382
422
|
unpublishedSyncBlockPastedTitle: {
|
|
383
423
|
defaultMessage: string;
|
|
384
424
|
description: string;
|
|
385
425
|
id: string;
|
|
386
426
|
};
|
|
427
|
+
unpublishedSyncBlockPastedTitleJiraWorkItem: {
|
|
428
|
+
defaultMessage: string;
|
|
429
|
+
description: string;
|
|
430
|
+
id: string;
|
|
431
|
+
};
|
|
387
432
|
unsyncButton: {
|
|
388
433
|
defaultMessage: string;
|
|
389
434
|
description: string;
|
|
@@ -29,6 +29,11 @@ export declare const typeAheadListMessages: {
|
|
|
29
29
|
description: string;
|
|
30
30
|
id: string;
|
|
31
31
|
};
|
|
32
|
+
emptySearchResultsSuggestionAskRovoOnly: {
|
|
33
|
+
defaultMessage: string;
|
|
34
|
+
description: string;
|
|
35
|
+
id: string;
|
|
36
|
+
};
|
|
32
37
|
emptySearchResultsSuggestionNew: {
|
|
33
38
|
defaultMessage: string;
|
|
34
39
|
description: string;
|
|
@@ -5,14 +5,23 @@ import type { OperationalAEP } from './utils';
|
|
|
5
5
|
type SyncedBlockErrorAttributes = {
|
|
6
6
|
error: string;
|
|
7
7
|
resourceId?: string;
|
|
8
|
+
/**
|
|
9
|
+
* The product the source block lives in, derived from `resourceId` when present.
|
|
10
|
+
* Always optional because batch / subscription init paths fire without a `resourceId`.
|
|
11
|
+
*/
|
|
12
|
+
sourceProduct?: string;
|
|
8
13
|
};
|
|
9
14
|
type SyncedBlockSuccessAttributes = {
|
|
10
15
|
blockInstanceId?: string;
|
|
11
16
|
resourceId: string;
|
|
12
|
-
|
|
13
|
-
|
|
17
|
+
/**
|
|
18
|
+
* The product the source block lives in, derived from `resourceId`.
|
|
19
|
+
* Optional during the rollout of `platform_synced_block_patch_11`; once the gate is
|
|
20
|
+
* fully on this can be marked required.
|
|
21
|
+
*/
|
|
14
22
|
sourceProduct?: string;
|
|
15
23
|
};
|
|
24
|
+
type FetchSyncedBlockSuccessAttributes = SyncedBlockSuccessAttributes;
|
|
16
25
|
type SyncedBlockCopySuccessAttributes = SyncedBlockSuccessAttributes & {
|
|
17
26
|
inputMethod: INPUT_METHOD;
|
|
18
27
|
};
|
|
@@ -314,6 +314,36 @@ export declare const syncBlockMessages: {
|
|
|
314
314
|
description: string;
|
|
315
315
|
id: string;
|
|
316
316
|
};
|
|
317
|
+
syncedLocationDropdownIssueTypeBug: {
|
|
318
|
+
defaultMessage: string;
|
|
319
|
+
description: string;
|
|
320
|
+
id: string;
|
|
321
|
+
};
|
|
322
|
+
syncedLocationDropdownIssueTypeEpic: {
|
|
323
|
+
defaultMessage: string;
|
|
324
|
+
description: string;
|
|
325
|
+
id: string;
|
|
326
|
+
};
|
|
327
|
+
syncedLocationDropdownIssueTypeGeneric: {
|
|
328
|
+
defaultMessage: string;
|
|
329
|
+
description: string;
|
|
330
|
+
id: string;
|
|
331
|
+
};
|
|
332
|
+
syncedLocationDropdownIssueTypeStory: {
|
|
333
|
+
defaultMessage: string;
|
|
334
|
+
description: string;
|
|
335
|
+
id: string;
|
|
336
|
+
};
|
|
337
|
+
syncedLocationDropdownIssueTypeSubtask: {
|
|
338
|
+
defaultMessage: string;
|
|
339
|
+
description: string;
|
|
340
|
+
id: string;
|
|
341
|
+
};
|
|
342
|
+
syncedLocationDropdownIssueTypeTask: {
|
|
343
|
+
defaultMessage: string;
|
|
344
|
+
description: string;
|
|
345
|
+
id: string;
|
|
346
|
+
};
|
|
317
347
|
syncedLocationDropdownLearnMoreLink: {
|
|
318
348
|
defaultMessage: string;
|
|
319
349
|
description: string;
|
|
@@ -374,16 +404,31 @@ export declare const syncBlockMessages: {
|
|
|
374
404
|
description: string;
|
|
375
405
|
id: string;
|
|
376
406
|
};
|
|
407
|
+
unpublishedErrorJiraWorkItem: {
|
|
408
|
+
defaultMessage: string;
|
|
409
|
+
description: string;
|
|
410
|
+
id: string;
|
|
411
|
+
};
|
|
377
412
|
unpublishedSyncBlockPastedDescription: {
|
|
378
413
|
defaultMessage: string;
|
|
379
414
|
description: string;
|
|
380
415
|
id: string;
|
|
381
416
|
};
|
|
417
|
+
unpublishedSyncBlockPastedDescriptionJiraWorkItem: {
|
|
418
|
+
defaultMessage: string;
|
|
419
|
+
description: string;
|
|
420
|
+
id: string;
|
|
421
|
+
};
|
|
382
422
|
unpublishedSyncBlockPastedTitle: {
|
|
383
423
|
defaultMessage: string;
|
|
384
424
|
description: string;
|
|
385
425
|
id: string;
|
|
386
426
|
};
|
|
427
|
+
unpublishedSyncBlockPastedTitleJiraWorkItem: {
|
|
428
|
+
defaultMessage: string;
|
|
429
|
+
description: string;
|
|
430
|
+
id: string;
|
|
431
|
+
};
|
|
387
432
|
unsyncButton: {
|
|
388
433
|
defaultMessage: string;
|
|
389
434
|
description: string;
|
|
@@ -29,6 +29,11 @@ export declare const typeAheadListMessages: {
|
|
|
29
29
|
description: string;
|
|
30
30
|
id: string;
|
|
31
31
|
};
|
|
32
|
+
emptySearchResultsSuggestionAskRovoOnly: {
|
|
33
|
+
defaultMessage: string;
|
|
34
|
+
description: string;
|
|
35
|
+
id: string;
|
|
36
|
+
};
|
|
32
37
|
emptySearchResultsSuggestionNew: {
|
|
33
38
|
defaultMessage: string;
|
|
34
39
|
description: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-common",
|
|
3
|
-
"version": "114.30.
|
|
3
|
+
"version": "114.30.1",
|
|
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/"
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
56
56
|
"@atlaskit/editor-shared-styles": "^3.10.0",
|
|
57
57
|
"@atlaskit/editor-tables": "^2.9.0",
|
|
58
|
-
"@atlaskit/editor-toolbar": "^1.
|
|
58
|
+
"@atlaskit/editor-toolbar": "^1.2.0",
|
|
59
59
|
"@atlaskit/editor-toolbar-model": "^0.4.0",
|
|
60
60
|
"@atlaskit/emoji": "^70.6.0",
|
|
61
61
|
"@atlaskit/icon": "^34.5.0",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"@atlaskit/spinner": "^19.1.0",
|
|
87
87
|
"@atlaskit/task-decision": "^20.0.0",
|
|
88
88
|
"@atlaskit/textfield": "^8.3.0",
|
|
89
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
89
|
+
"@atlaskit/tmp-editor-statsig": "^80.0.0",
|
|
90
90
|
"@atlaskit/tokens": "^13.0.0",
|
|
91
91
|
"@atlaskit/tooltip": "^22.2.0",
|
|
92
92
|
"@atlaskit/width-detector": "^5.1.0",
|