@atlaskit/editor-common 112.15.1 → 112.16.0
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 +13 -0
- package/dist/cjs/messages/syncBlock.js +5 -0
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/es2019/messages/syncBlock.js +5 -0
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/esm/messages/syncBlock.js +5 -0
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/types/messages/syncBlock.d.ts +153 -148
- package/dist/types-ts4.5/messages/syncBlock.d.ts +153 -148
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 112.16.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`5421779d09855`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5421779d09855) -
|
|
8
|
+
[ux] Fix error state shown in the locations dropdown on a reference sync block when no references
|
|
9
|
+
are registered yet. When the block hasn't been saved, the dropdown now shows the source page and
|
|
10
|
+
the current page instead of an error. An 'Untitled' placeholder is shown when a page has no title.
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 112.15.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -313,6 +313,11 @@ var syncBlockMessages = exports.syncBlockMessages = (0, _reactIntlNext.defineMes
|
|
|
313
313
|
defaultMessage: 'Request access',
|
|
314
314
|
description: 'Label shown in the synced location dropdown option when the sync block is not accessible to the user'
|
|
315
315
|
},
|
|
316
|
+
syncedLocationDropdownUntitledPage: {
|
|
317
|
+
id: 'fabric.editor.syncedLocationDropdownUntitledPage',
|
|
318
|
+
defaultMessage: 'Untitled',
|
|
319
|
+
description: 'Placeholder title shown in the synced location dropdown when a page has no title yet'
|
|
320
|
+
},
|
|
316
321
|
unpublishedSyncBlockPastedTitle: {
|
|
317
322
|
id: 'fabric.editor.unpublishedSyncBlockPastedTitle',
|
|
318
323
|
defaultMessage: 'Pasted from unpublished page',
|
|
@@ -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.15.
|
|
22
|
+
var packageVersion = "112.15.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.15.
|
|
27
|
+
var packageVersion = "112.15.1";
|
|
28
28
|
var halfFocusRing = 1;
|
|
29
29
|
var dropOffset = '0, 8';
|
|
30
30
|
var fadeIn = (0, _react2.keyframes)({
|
|
@@ -307,6 +307,11 @@ export const syncBlockMessages = defineMessages({
|
|
|
307
307
|
defaultMessage: 'Request access',
|
|
308
308
|
description: 'Label shown in the synced location dropdown option when the sync block is not accessible to the user'
|
|
309
309
|
},
|
|
310
|
+
syncedLocationDropdownUntitledPage: {
|
|
311
|
+
id: 'fabric.editor.syncedLocationDropdownUntitledPage',
|
|
312
|
+
defaultMessage: 'Untitled',
|
|
313
|
+
description: 'Placeholder title shown in the synced location dropdown when a page has no title yet'
|
|
314
|
+
},
|
|
310
315
|
unpublishedSyncBlockPastedTitle: {
|
|
311
316
|
id: 'fabric.editor.unpublishedSyncBlockPastedTitle',
|
|
312
317
|
defaultMessage: 'Pasted from unpublished page',
|
|
@@ -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.15.
|
|
7
|
+
const packageVersion = "112.15.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.15.
|
|
17
|
+
const packageVersion = "112.15.1";
|
|
18
18
|
const halfFocusRing = 1;
|
|
19
19
|
const dropOffset = '0, 8';
|
|
20
20
|
const fadeIn = keyframes({
|
|
@@ -307,6 +307,11 @@ export var syncBlockMessages = defineMessages({
|
|
|
307
307
|
defaultMessage: 'Request access',
|
|
308
308
|
description: 'Label shown in the synced location dropdown option when the sync block is not accessible to the user'
|
|
309
309
|
},
|
|
310
|
+
syncedLocationDropdownUntitledPage: {
|
|
311
|
+
id: 'fabric.editor.syncedLocationDropdownUntitledPage',
|
|
312
|
+
defaultMessage: 'Untitled',
|
|
313
|
+
description: 'Placeholder title shown in the synced location dropdown when a page has no title yet'
|
|
314
|
+
},
|
|
310
315
|
unpublishedSyncBlockPastedTitle: {
|
|
311
316
|
id: 'fabric.editor.unpublishedSyncBlockPastedTitle',
|
|
312
317
|
defaultMessage: 'Pasted from unpublished page',
|
|
@@ -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.15.
|
|
13
|
+
var packageVersion = "112.15.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.15.
|
|
24
|
+
var packageVersion = "112.15.1";
|
|
25
25
|
var halfFocusRing = 1;
|
|
26
26
|
var dropOffset = '0, 8';
|
|
27
27
|
var fadeIn = keyframes({
|
|
@@ -1,387 +1,392 @@
|
|
|
1
1
|
export declare const syncBlockMessages: {
|
|
2
|
-
|
|
3
|
-
id: string;
|
|
2
|
+
accessRequested: {
|
|
4
3
|
defaultMessage: string;
|
|
5
4
|
description: string;
|
|
6
|
-
};
|
|
7
|
-
copySyncedBlockTooltip: {
|
|
8
5
|
id: string;
|
|
6
|
+
};
|
|
7
|
+
CannotCreateSyncBlockDescription: {
|
|
9
8
|
defaultMessage: string;
|
|
10
9
|
description: string;
|
|
11
|
-
};
|
|
12
|
-
editSourceLabel: {
|
|
13
10
|
id: string;
|
|
11
|
+
};
|
|
12
|
+
cannotCreateSyncBlockTitle: {
|
|
14
13
|
defaultMessage: string;
|
|
15
14
|
description: string;
|
|
16
|
-
};
|
|
17
|
-
editSourceTooltip: {
|
|
18
15
|
id: string;
|
|
16
|
+
};
|
|
17
|
+
cannotDeleteDescription: {
|
|
19
18
|
defaultMessage: string;
|
|
20
19
|
description: string;
|
|
21
|
-
};
|
|
22
|
-
editSourceTooltipDisabled: {
|
|
23
20
|
id: string;
|
|
21
|
+
};
|
|
22
|
+
cannotDeleteTitle: {
|
|
24
23
|
defaultMessage: string;
|
|
25
24
|
description: string;
|
|
26
|
-
};
|
|
27
|
-
syncBlockGroup: {
|
|
28
25
|
id: string;
|
|
26
|
+
};
|
|
27
|
+
cannotPasteSyncedBlockAction: {
|
|
29
28
|
defaultMessage: string;
|
|
30
29
|
description: string;
|
|
31
|
-
};
|
|
32
|
-
syncedBlockLabel: {
|
|
33
30
|
id: string;
|
|
31
|
+
};
|
|
32
|
+
cannotPasteSyncedBlockDescription: {
|
|
34
33
|
defaultMessage: string;
|
|
35
34
|
description: string;
|
|
36
|
-
};
|
|
37
|
-
unsyncedBlockLabel: {
|
|
38
35
|
id: string;
|
|
36
|
+
};
|
|
37
|
+
cannotPasteSyncedBlockTitle: {
|
|
39
38
|
defaultMessage: string;
|
|
40
39
|
description: string;
|
|
41
|
-
};
|
|
42
|
-
permissionDeniedHeading: {
|
|
43
40
|
id: string;
|
|
41
|
+
};
|
|
42
|
+
copySyncBlockLabel: {
|
|
44
43
|
defaultMessage: string;
|
|
45
44
|
description: string;
|
|
46
|
-
};
|
|
47
|
-
permissionDeniedDescription: {
|
|
48
45
|
id: string;
|
|
46
|
+
};
|
|
47
|
+
copySyncedBlockTooltip: {
|
|
49
48
|
defaultMessage: string;
|
|
50
49
|
description: string;
|
|
51
|
-
};
|
|
52
|
-
permissionDeniedAltText: {
|
|
53
50
|
id: string;
|
|
51
|
+
};
|
|
52
|
+
createSyncBlockLabel: {
|
|
54
53
|
defaultMessage: string;
|
|
55
54
|
description: string;
|
|
56
|
-
};
|
|
57
|
-
requestAccessButton: {
|
|
58
55
|
id: string;
|
|
56
|
+
};
|
|
57
|
+
defaultSyncBlockTooltip: {
|
|
59
58
|
defaultMessage: string;
|
|
60
59
|
description: string;
|
|
61
|
-
};
|
|
62
|
-
accessRequested: {
|
|
63
60
|
id: string;
|
|
61
|
+
};
|
|
62
|
+
deleteConfirmationModalCancelButton: {
|
|
64
63
|
defaultMessage: string;
|
|
65
64
|
description: string;
|
|
66
|
-
};
|
|
67
|
-
requestAccessError: {
|
|
68
65
|
id: string;
|
|
66
|
+
};
|
|
67
|
+
deleteConfirmationModalDeleteButton: {
|
|
69
68
|
defaultMessage: string;
|
|
70
69
|
description: string;
|
|
71
|
-
};
|
|
72
|
-
sourceSyncBlockTooltip: {
|
|
73
70
|
id: string;
|
|
71
|
+
};
|
|
72
|
+
deleteConfirmationModalTitleMultiple: {
|
|
74
73
|
defaultMessage: string;
|
|
75
74
|
description: string;
|
|
76
|
-
};
|
|
77
|
-
defaultSyncBlockTooltip: {
|
|
78
75
|
id: string;
|
|
76
|
+
};
|
|
77
|
+
deleteConfirmationModalUnsyncButton: {
|
|
79
78
|
defaultMessage: string;
|
|
80
79
|
description: string;
|
|
81
|
-
};
|
|
82
|
-
referenceSyncBlockTooltip: {
|
|
83
80
|
id: string;
|
|
81
|
+
};
|
|
82
|
+
deleteRetryButton: {
|
|
84
83
|
defaultMessage: string;
|
|
85
84
|
description: string;
|
|
86
|
-
};
|
|
87
|
-
referenceSyncBlockLastEdited: {
|
|
88
85
|
id: string;
|
|
86
|
+
};
|
|
87
|
+
deletionConfirmationModalDescription: {
|
|
89
88
|
defaultMessage: string;
|
|
90
89
|
description: string;
|
|
91
|
-
};
|
|
92
|
-
taskInDestinationSyncedBlockTooltip: {
|
|
93
90
|
id: string;
|
|
91
|
+
};
|
|
92
|
+
deletionConfirmationModalDescriptionNoRef: {
|
|
94
93
|
defaultMessage: string;
|
|
95
94
|
description: string;
|
|
95
|
+
id: string;
|
|
96
96
|
};
|
|
97
97
|
deletionConfirmationModalTitleSingle: {
|
|
98
|
-
id: string;
|
|
99
98
|
defaultMessage: string;
|
|
100
99
|
description: string;
|
|
101
|
-
};
|
|
102
|
-
deleteConfirmationModalTitleMultiple: {
|
|
103
100
|
id: string;
|
|
104
|
-
defaultMessage: string;
|
|
105
|
-
description: string;
|
|
106
101
|
};
|
|
107
|
-
|
|
108
|
-
id: string;
|
|
102
|
+
editSourceLabel: {
|
|
109
103
|
defaultMessage: string;
|
|
110
104
|
description: string;
|
|
111
|
-
};
|
|
112
|
-
deleteConfirmationModalDeleteButton: {
|
|
113
105
|
id: string;
|
|
114
|
-
defaultMessage: string;
|
|
115
|
-
description: string;
|
|
116
106
|
};
|
|
117
|
-
|
|
118
|
-
id: string;
|
|
107
|
+
editSourceTooltip: {
|
|
119
108
|
defaultMessage: string;
|
|
120
109
|
description: string;
|
|
121
|
-
};
|
|
122
|
-
deletionConfirmationModalDescription: {
|
|
123
110
|
id: string;
|
|
111
|
+
};
|
|
112
|
+
editSourceTooltipDisabled: {
|
|
124
113
|
defaultMessage: string;
|
|
125
114
|
description: string;
|
|
126
|
-
};
|
|
127
|
-
deletionConfirmationModalDescriptionNoRef: {
|
|
128
115
|
id: string;
|
|
116
|
+
};
|
|
117
|
+
extensionInSyncBlockDescription: {
|
|
129
118
|
defaultMessage: string;
|
|
130
119
|
description: string;
|
|
131
|
-
};
|
|
132
|
-
createSyncBlockLabel: {
|
|
133
120
|
id: string;
|
|
121
|
+
};
|
|
122
|
+
extensionInSyncBlockTitle: {
|
|
134
123
|
defaultMessage: string;
|
|
135
124
|
description: string;
|
|
136
|
-
};
|
|
137
|
-
syncBlockLabel: {
|
|
138
125
|
id: string;
|
|
126
|
+
};
|
|
127
|
+
failToCreateTitle: {
|
|
139
128
|
defaultMessage: string;
|
|
140
129
|
description: string;
|
|
141
|
-
};
|
|
142
|
-
newLozenge: {
|
|
143
130
|
id: string;
|
|
131
|
+
};
|
|
132
|
+
failToCreateWhenOfflineDescription: {
|
|
144
133
|
defaultMessage: string;
|
|
145
134
|
description: string;
|
|
135
|
+
id: string;
|
|
146
136
|
};
|
|
147
137
|
failToDeleteTitle: {
|
|
148
|
-
id: string;
|
|
149
138
|
defaultMessage: string;
|
|
150
139
|
description: string;
|
|
140
|
+
id: string;
|
|
151
141
|
};
|
|
152
142
|
failToDeleteWhenOfflineDescription: {
|
|
153
|
-
id: string;
|
|
154
143
|
defaultMessage: string;
|
|
155
144
|
description: string;
|
|
156
|
-
};
|
|
157
|
-
cannotDeleteTitle: {
|
|
158
145
|
id: string;
|
|
146
|
+
};
|
|
147
|
+
failToEditTitle: {
|
|
159
148
|
defaultMessage: string;
|
|
160
149
|
description: string;
|
|
161
|
-
};
|
|
162
|
-
cannotDeleteDescription: {
|
|
163
150
|
id: string;
|
|
151
|
+
};
|
|
152
|
+
failToEditWhenOfflineDescription: {
|
|
164
153
|
defaultMessage: string;
|
|
165
154
|
description: string;
|
|
166
|
-
};
|
|
167
|
-
failToEditTitle: {
|
|
168
155
|
id: string;
|
|
156
|
+
};
|
|
157
|
+
generalErrorDescription: {
|
|
169
158
|
defaultMessage: string;
|
|
170
159
|
description: string;
|
|
171
|
-
};
|
|
172
|
-
failToEditWhenOfflineDescription: {
|
|
173
160
|
id: string;
|
|
161
|
+
};
|
|
162
|
+
genericNotFoundDescription: {
|
|
174
163
|
defaultMessage: string;
|
|
175
164
|
description: string;
|
|
176
|
-
};
|
|
177
|
-
failToCreateTitle: {
|
|
178
165
|
id: string;
|
|
166
|
+
};
|
|
167
|
+
inlineExtensionInSyncBlockDescription: {
|
|
179
168
|
defaultMessage: string;
|
|
180
169
|
description: string;
|
|
181
|
-
};
|
|
182
|
-
failToCreateWhenOfflineDescription: {
|
|
183
170
|
id: string;
|
|
171
|
+
};
|
|
172
|
+
inlineExtensionInSyncBlockTitle: {
|
|
184
173
|
defaultMessage: string;
|
|
185
174
|
description: string;
|
|
175
|
+
id: string;
|
|
186
176
|
};
|
|
187
177
|
loadingSyncedContent: {
|
|
188
|
-
id: string;
|
|
189
178
|
defaultMessage: string;
|
|
190
179
|
description: string;
|
|
191
|
-
};
|
|
192
|
-
generalErrorDescription: {
|
|
193
180
|
id: string;
|
|
181
|
+
};
|
|
182
|
+
newLozenge: {
|
|
194
183
|
defaultMessage: string;
|
|
195
184
|
description: string;
|
|
185
|
+
id: string;
|
|
196
186
|
};
|
|
197
187
|
notFoundAltText: {
|
|
198
|
-
id: string;
|
|
199
188
|
defaultMessage: string;
|
|
200
189
|
description: string;
|
|
190
|
+
id: string;
|
|
201
191
|
};
|
|
202
192
|
notFoundDescription: {
|
|
203
|
-
id: string;
|
|
204
193
|
defaultMessage: string;
|
|
205
194
|
description: string;
|
|
206
|
-
};
|
|
207
|
-
sourceUnsyncedDescription: {
|
|
208
195
|
id: string;
|
|
196
|
+
};
|
|
197
|
+
offlineError: {
|
|
209
198
|
defaultMessage: string;
|
|
210
199
|
description: string;
|
|
211
|
-
};
|
|
212
|
-
sourceDeletedDescription: {
|
|
213
200
|
id: string;
|
|
201
|
+
};
|
|
202
|
+
permissionDeniedAltText: {
|
|
214
203
|
defaultMessage: string;
|
|
215
204
|
description: string;
|
|
216
|
-
};
|
|
217
|
-
genericNotFoundDescription: {
|
|
218
205
|
id: string;
|
|
206
|
+
};
|
|
207
|
+
permissionDeniedDescription: {
|
|
219
208
|
defaultMessage: string;
|
|
220
209
|
description: string;
|
|
221
|
-
};
|
|
222
|
-
retryButton: {
|
|
223
210
|
id: string;
|
|
211
|
+
};
|
|
212
|
+
permissionDeniedHeading: {
|
|
224
213
|
defaultMessage: string;
|
|
225
214
|
description: string;
|
|
226
|
-
};
|
|
227
|
-
offlineError: {
|
|
228
215
|
id: string;
|
|
216
|
+
};
|
|
217
|
+
referenceSyncBlockLastEdited: {
|
|
229
218
|
defaultMessage: string;
|
|
230
219
|
description: string;
|
|
231
|
-
};
|
|
232
|
-
unpublishedError: {
|
|
233
220
|
id: string;
|
|
221
|
+
};
|
|
222
|
+
referenceSyncBlockTooltip: {
|
|
234
223
|
defaultMessage: string;
|
|
235
224
|
description: string;
|
|
236
|
-
};
|
|
237
|
-
syncBlockCopiedTitle: {
|
|
238
225
|
id: string;
|
|
226
|
+
};
|
|
227
|
+
requestAccessButton: {
|
|
239
228
|
defaultMessage: string;
|
|
240
229
|
description: string;
|
|
241
|
-
};
|
|
242
|
-
syncBlockCopiedDescription: {
|
|
243
230
|
id: string;
|
|
231
|
+
};
|
|
232
|
+
requestAccessError: {
|
|
244
233
|
defaultMessage: string;
|
|
245
234
|
description: string;
|
|
246
|
-
};
|
|
247
|
-
syncBlockCopiedAction: {
|
|
248
235
|
id: string;
|
|
236
|
+
};
|
|
237
|
+
retryButton: {
|
|
249
238
|
defaultMessage: string;
|
|
250
239
|
description: string;
|
|
251
|
-
};
|
|
252
|
-
syncedLocationDropdownTitle: {
|
|
253
240
|
id: string;
|
|
241
|
+
};
|
|
242
|
+
sourceDeletedDescription: {
|
|
254
243
|
defaultMessage: string;
|
|
255
244
|
description: string;
|
|
256
|
-
};
|
|
257
|
-
syncedLocationDropdownHeading: {
|
|
258
245
|
id: string;
|
|
246
|
+
};
|
|
247
|
+
sourceSyncBlockTooltip: {
|
|
259
248
|
defaultMessage: string;
|
|
260
249
|
description: string;
|
|
261
|
-
};
|
|
262
|
-
syncedLocationDropdownError: {
|
|
263
250
|
id: string;
|
|
251
|
+
};
|
|
252
|
+
sourceUnsyncedDescription: {
|
|
264
253
|
defaultMessage: string;
|
|
265
254
|
description: string;
|
|
266
|
-
};
|
|
267
|
-
syncedLocationDropdownNoResults: {
|
|
268
255
|
id: string;
|
|
256
|
+
};
|
|
257
|
+
syncBlockCopiedAction: {
|
|
269
258
|
defaultMessage: string;
|
|
270
259
|
description: string;
|
|
271
|
-
};
|
|
272
|
-
syncedLocationDropdownLearnMoreLink: {
|
|
273
260
|
id: string;
|
|
261
|
+
};
|
|
262
|
+
syncBlockCopiedDescription: {
|
|
274
263
|
defaultMessage: string;
|
|
275
264
|
description: string;
|
|
276
|
-
};
|
|
277
|
-
syncedLocationDropdownSamePage: {
|
|
278
265
|
id: string;
|
|
266
|
+
};
|
|
267
|
+
syncBlockCopiedTitle: {
|
|
279
268
|
defaultMessage: string;
|
|
280
269
|
description: string;
|
|
281
|
-
};
|
|
282
|
-
syncedLocationDropdownTitleBlockIndex: {
|
|
283
270
|
id: string;
|
|
271
|
+
};
|
|
272
|
+
syncBlockGroup: {
|
|
284
273
|
defaultMessage: string;
|
|
285
274
|
description: string;
|
|
275
|
+
id: string;
|
|
286
276
|
};
|
|
287
|
-
|
|
277
|
+
syncBlockLabel: {
|
|
278
|
+
defaultMessage: string;
|
|
279
|
+
description: string;
|
|
288
280
|
id: string;
|
|
281
|
+
};
|
|
282
|
+
syncedBlockLabel: {
|
|
289
283
|
defaultMessage: string;
|
|
290
284
|
description: string;
|
|
285
|
+
id: string;
|
|
291
286
|
};
|
|
292
|
-
|
|
287
|
+
syncedLocationDropdownError: {
|
|
288
|
+
defaultMessage: string;
|
|
289
|
+
description: string;
|
|
293
290
|
id: string;
|
|
291
|
+
};
|
|
292
|
+
syncedLocationDropdownHeading: {
|
|
294
293
|
defaultMessage: string;
|
|
295
294
|
description: string;
|
|
295
|
+
id: string;
|
|
296
296
|
};
|
|
297
|
-
|
|
297
|
+
syncedLocationDropdownLearnMoreLink: {
|
|
298
|
+
defaultMessage: string;
|
|
299
|
+
description: string;
|
|
298
300
|
id: string;
|
|
301
|
+
};
|
|
302
|
+
syncedLocationDropdownNoResults: {
|
|
299
303
|
defaultMessage: string;
|
|
300
304
|
description: string;
|
|
305
|
+
id: string;
|
|
301
306
|
};
|
|
302
307
|
syncedLocationDropdownRequestAccess: {
|
|
303
|
-
id: string;
|
|
304
308
|
defaultMessage: string;
|
|
305
309
|
description: string;
|
|
306
|
-
};
|
|
307
|
-
unpublishedSyncBlockPastedTitle: {
|
|
308
310
|
id: string;
|
|
311
|
+
};
|
|
312
|
+
syncedLocationDropdownSamePage: {
|
|
309
313
|
defaultMessage: string;
|
|
310
314
|
description: string;
|
|
311
|
-
};
|
|
312
|
-
unpublishedSyncBlockPastedDescription: {
|
|
313
315
|
id: string;
|
|
316
|
+
};
|
|
317
|
+
syncedLocationDropdownSourceLozenge: {
|
|
314
318
|
defaultMessage: string;
|
|
315
319
|
description: string;
|
|
316
|
-
};
|
|
317
|
-
unsyncButton: {
|
|
318
320
|
id: string;
|
|
321
|
+
};
|
|
322
|
+
syncedLocationDropdownTitle: {
|
|
319
323
|
defaultMessage: string;
|
|
320
324
|
description: string;
|
|
321
|
-
};
|
|
322
|
-
deleteConfirmationModalUnsyncButton: {
|
|
323
325
|
id: string;
|
|
326
|
+
};
|
|
327
|
+
syncedLocationDropdownTitleBlockIndex: {
|
|
324
328
|
defaultMessage: string;
|
|
325
329
|
description: string;
|
|
326
|
-
};
|
|
327
|
-
unsyncConfirmationModalTitle: {
|
|
328
330
|
id: string;
|
|
331
|
+
};
|
|
332
|
+
syncedLocationDropdownTitleNoteForConfluencePage: {
|
|
329
333
|
defaultMessage: string;
|
|
330
334
|
description: string;
|
|
331
|
-
};
|
|
332
|
-
unsyncConfirmModalDescriptionSingle: {
|
|
333
335
|
id: string;
|
|
336
|
+
};
|
|
337
|
+
syncedLocationDropdownTitleNoteForJiraWorkItem: {
|
|
334
338
|
defaultMessage: string;
|
|
335
339
|
description: string;
|
|
336
|
-
};
|
|
337
|
-
unsyncConfirmModalDescriptionMultiple: {
|
|
338
340
|
id: string;
|
|
341
|
+
};
|
|
342
|
+
syncedLocationDropdownUntitledPage: {
|
|
339
343
|
defaultMessage: string;
|
|
340
344
|
description: string;
|
|
341
|
-
};
|
|
342
|
-
cannotPasteSyncedBlockTitle: {
|
|
343
345
|
id: string;
|
|
346
|
+
};
|
|
347
|
+
taskInDestinationSyncedBlockTooltip: {
|
|
344
348
|
defaultMessage: string;
|
|
345
349
|
description: string;
|
|
346
|
-
};
|
|
347
|
-
cannotPasteSyncedBlockDescription: {
|
|
348
350
|
id: string;
|
|
351
|
+
};
|
|
352
|
+
unpublishedError: {
|
|
349
353
|
defaultMessage: string;
|
|
350
354
|
description: string;
|
|
351
|
-
};
|
|
352
|
-
cannotPasteSyncedBlockAction: {
|
|
353
355
|
id: string;
|
|
356
|
+
};
|
|
357
|
+
unpublishedSyncBlockPastedDescription: {
|
|
354
358
|
defaultMessage: string;
|
|
355
359
|
description: string;
|
|
356
|
-
};
|
|
357
|
-
cannotCreateSyncBlockTitle: {
|
|
358
360
|
id: string;
|
|
361
|
+
};
|
|
362
|
+
unpublishedSyncBlockPastedTitle: {
|
|
359
363
|
defaultMessage: string;
|
|
360
364
|
description: string;
|
|
361
|
-
};
|
|
362
|
-
CannotCreateSyncBlockDescription: {
|
|
363
365
|
id: string;
|
|
366
|
+
};
|
|
367
|
+
unsyncButton: {
|
|
364
368
|
defaultMessage: string;
|
|
365
369
|
description: string;
|
|
366
|
-
};
|
|
367
|
-
inlineExtensionInSyncBlockTitle: {
|
|
368
370
|
id: string;
|
|
371
|
+
};
|
|
372
|
+
unsyncConfirmationModalTitle: {
|
|
369
373
|
defaultMessage: string;
|
|
370
374
|
description: string;
|
|
371
|
-
};
|
|
372
|
-
inlineExtensionInSyncBlockDescription: {
|
|
373
375
|
id: string;
|
|
376
|
+
};
|
|
377
|
+
unsyncConfirmModalDescriptionMultiple: {
|
|
374
378
|
defaultMessage: string;
|
|
375
379
|
description: string;
|
|
376
|
-
};
|
|
377
|
-
extensionInSyncBlockTitle: {
|
|
378
380
|
id: string;
|
|
381
|
+
};
|
|
382
|
+
unsyncConfirmModalDescriptionSingle: {
|
|
379
383
|
defaultMessage: string;
|
|
380
384
|
description: string;
|
|
381
|
-
};
|
|
382
|
-
extensionInSyncBlockDescription: {
|
|
383
385
|
id: string;
|
|
386
|
+
};
|
|
387
|
+
unsyncedBlockLabel: {
|
|
384
388
|
defaultMessage: string;
|
|
385
389
|
description: string;
|
|
390
|
+
id: string;
|
|
386
391
|
};
|
|
387
392
|
};
|
|
@@ -1,387 +1,392 @@
|
|
|
1
1
|
export declare const syncBlockMessages: {
|
|
2
|
-
|
|
3
|
-
id: string;
|
|
2
|
+
accessRequested: {
|
|
4
3
|
defaultMessage: string;
|
|
5
4
|
description: string;
|
|
6
|
-
};
|
|
7
|
-
copySyncedBlockTooltip: {
|
|
8
5
|
id: string;
|
|
6
|
+
};
|
|
7
|
+
CannotCreateSyncBlockDescription: {
|
|
9
8
|
defaultMessage: string;
|
|
10
9
|
description: string;
|
|
11
|
-
};
|
|
12
|
-
editSourceLabel: {
|
|
13
10
|
id: string;
|
|
11
|
+
};
|
|
12
|
+
cannotCreateSyncBlockTitle: {
|
|
14
13
|
defaultMessage: string;
|
|
15
14
|
description: string;
|
|
16
|
-
};
|
|
17
|
-
editSourceTooltip: {
|
|
18
15
|
id: string;
|
|
16
|
+
};
|
|
17
|
+
cannotDeleteDescription: {
|
|
19
18
|
defaultMessage: string;
|
|
20
19
|
description: string;
|
|
21
|
-
};
|
|
22
|
-
editSourceTooltipDisabled: {
|
|
23
20
|
id: string;
|
|
21
|
+
};
|
|
22
|
+
cannotDeleteTitle: {
|
|
24
23
|
defaultMessage: string;
|
|
25
24
|
description: string;
|
|
26
|
-
};
|
|
27
|
-
syncBlockGroup: {
|
|
28
25
|
id: string;
|
|
26
|
+
};
|
|
27
|
+
cannotPasteSyncedBlockAction: {
|
|
29
28
|
defaultMessage: string;
|
|
30
29
|
description: string;
|
|
31
|
-
};
|
|
32
|
-
syncedBlockLabel: {
|
|
33
30
|
id: string;
|
|
31
|
+
};
|
|
32
|
+
cannotPasteSyncedBlockDescription: {
|
|
34
33
|
defaultMessage: string;
|
|
35
34
|
description: string;
|
|
36
|
-
};
|
|
37
|
-
unsyncedBlockLabel: {
|
|
38
35
|
id: string;
|
|
36
|
+
};
|
|
37
|
+
cannotPasteSyncedBlockTitle: {
|
|
39
38
|
defaultMessage: string;
|
|
40
39
|
description: string;
|
|
41
|
-
};
|
|
42
|
-
permissionDeniedHeading: {
|
|
43
40
|
id: string;
|
|
41
|
+
};
|
|
42
|
+
copySyncBlockLabel: {
|
|
44
43
|
defaultMessage: string;
|
|
45
44
|
description: string;
|
|
46
|
-
};
|
|
47
|
-
permissionDeniedDescription: {
|
|
48
45
|
id: string;
|
|
46
|
+
};
|
|
47
|
+
copySyncedBlockTooltip: {
|
|
49
48
|
defaultMessage: string;
|
|
50
49
|
description: string;
|
|
51
|
-
};
|
|
52
|
-
permissionDeniedAltText: {
|
|
53
50
|
id: string;
|
|
51
|
+
};
|
|
52
|
+
createSyncBlockLabel: {
|
|
54
53
|
defaultMessage: string;
|
|
55
54
|
description: string;
|
|
56
|
-
};
|
|
57
|
-
requestAccessButton: {
|
|
58
55
|
id: string;
|
|
56
|
+
};
|
|
57
|
+
defaultSyncBlockTooltip: {
|
|
59
58
|
defaultMessage: string;
|
|
60
59
|
description: string;
|
|
61
|
-
};
|
|
62
|
-
accessRequested: {
|
|
63
60
|
id: string;
|
|
61
|
+
};
|
|
62
|
+
deleteConfirmationModalCancelButton: {
|
|
64
63
|
defaultMessage: string;
|
|
65
64
|
description: string;
|
|
66
|
-
};
|
|
67
|
-
requestAccessError: {
|
|
68
65
|
id: string;
|
|
66
|
+
};
|
|
67
|
+
deleteConfirmationModalDeleteButton: {
|
|
69
68
|
defaultMessage: string;
|
|
70
69
|
description: string;
|
|
71
|
-
};
|
|
72
|
-
sourceSyncBlockTooltip: {
|
|
73
70
|
id: string;
|
|
71
|
+
};
|
|
72
|
+
deleteConfirmationModalTitleMultiple: {
|
|
74
73
|
defaultMessage: string;
|
|
75
74
|
description: string;
|
|
76
|
-
};
|
|
77
|
-
defaultSyncBlockTooltip: {
|
|
78
75
|
id: string;
|
|
76
|
+
};
|
|
77
|
+
deleteConfirmationModalUnsyncButton: {
|
|
79
78
|
defaultMessage: string;
|
|
80
79
|
description: string;
|
|
81
|
-
};
|
|
82
|
-
referenceSyncBlockTooltip: {
|
|
83
80
|
id: string;
|
|
81
|
+
};
|
|
82
|
+
deleteRetryButton: {
|
|
84
83
|
defaultMessage: string;
|
|
85
84
|
description: string;
|
|
86
|
-
};
|
|
87
|
-
referenceSyncBlockLastEdited: {
|
|
88
85
|
id: string;
|
|
86
|
+
};
|
|
87
|
+
deletionConfirmationModalDescription: {
|
|
89
88
|
defaultMessage: string;
|
|
90
89
|
description: string;
|
|
91
|
-
};
|
|
92
|
-
taskInDestinationSyncedBlockTooltip: {
|
|
93
90
|
id: string;
|
|
91
|
+
};
|
|
92
|
+
deletionConfirmationModalDescriptionNoRef: {
|
|
94
93
|
defaultMessage: string;
|
|
95
94
|
description: string;
|
|
95
|
+
id: string;
|
|
96
96
|
};
|
|
97
97
|
deletionConfirmationModalTitleSingle: {
|
|
98
|
-
id: string;
|
|
99
98
|
defaultMessage: string;
|
|
100
99
|
description: string;
|
|
101
|
-
};
|
|
102
|
-
deleteConfirmationModalTitleMultiple: {
|
|
103
100
|
id: string;
|
|
104
|
-
defaultMessage: string;
|
|
105
|
-
description: string;
|
|
106
101
|
};
|
|
107
|
-
|
|
108
|
-
id: string;
|
|
102
|
+
editSourceLabel: {
|
|
109
103
|
defaultMessage: string;
|
|
110
104
|
description: string;
|
|
111
|
-
};
|
|
112
|
-
deleteConfirmationModalDeleteButton: {
|
|
113
105
|
id: string;
|
|
114
|
-
defaultMessage: string;
|
|
115
|
-
description: string;
|
|
116
106
|
};
|
|
117
|
-
|
|
118
|
-
id: string;
|
|
107
|
+
editSourceTooltip: {
|
|
119
108
|
defaultMessage: string;
|
|
120
109
|
description: string;
|
|
121
|
-
};
|
|
122
|
-
deletionConfirmationModalDescription: {
|
|
123
110
|
id: string;
|
|
111
|
+
};
|
|
112
|
+
editSourceTooltipDisabled: {
|
|
124
113
|
defaultMessage: string;
|
|
125
114
|
description: string;
|
|
126
|
-
};
|
|
127
|
-
deletionConfirmationModalDescriptionNoRef: {
|
|
128
115
|
id: string;
|
|
116
|
+
};
|
|
117
|
+
extensionInSyncBlockDescription: {
|
|
129
118
|
defaultMessage: string;
|
|
130
119
|
description: string;
|
|
131
|
-
};
|
|
132
|
-
createSyncBlockLabel: {
|
|
133
120
|
id: string;
|
|
121
|
+
};
|
|
122
|
+
extensionInSyncBlockTitle: {
|
|
134
123
|
defaultMessage: string;
|
|
135
124
|
description: string;
|
|
136
|
-
};
|
|
137
|
-
syncBlockLabel: {
|
|
138
125
|
id: string;
|
|
126
|
+
};
|
|
127
|
+
failToCreateTitle: {
|
|
139
128
|
defaultMessage: string;
|
|
140
129
|
description: string;
|
|
141
|
-
};
|
|
142
|
-
newLozenge: {
|
|
143
130
|
id: string;
|
|
131
|
+
};
|
|
132
|
+
failToCreateWhenOfflineDescription: {
|
|
144
133
|
defaultMessage: string;
|
|
145
134
|
description: string;
|
|
135
|
+
id: string;
|
|
146
136
|
};
|
|
147
137
|
failToDeleteTitle: {
|
|
148
|
-
id: string;
|
|
149
138
|
defaultMessage: string;
|
|
150
139
|
description: string;
|
|
140
|
+
id: string;
|
|
151
141
|
};
|
|
152
142
|
failToDeleteWhenOfflineDescription: {
|
|
153
|
-
id: string;
|
|
154
143
|
defaultMessage: string;
|
|
155
144
|
description: string;
|
|
156
|
-
};
|
|
157
|
-
cannotDeleteTitle: {
|
|
158
145
|
id: string;
|
|
146
|
+
};
|
|
147
|
+
failToEditTitle: {
|
|
159
148
|
defaultMessage: string;
|
|
160
149
|
description: string;
|
|
161
|
-
};
|
|
162
|
-
cannotDeleteDescription: {
|
|
163
150
|
id: string;
|
|
151
|
+
};
|
|
152
|
+
failToEditWhenOfflineDescription: {
|
|
164
153
|
defaultMessage: string;
|
|
165
154
|
description: string;
|
|
166
|
-
};
|
|
167
|
-
failToEditTitle: {
|
|
168
155
|
id: string;
|
|
156
|
+
};
|
|
157
|
+
generalErrorDescription: {
|
|
169
158
|
defaultMessage: string;
|
|
170
159
|
description: string;
|
|
171
|
-
};
|
|
172
|
-
failToEditWhenOfflineDescription: {
|
|
173
160
|
id: string;
|
|
161
|
+
};
|
|
162
|
+
genericNotFoundDescription: {
|
|
174
163
|
defaultMessage: string;
|
|
175
164
|
description: string;
|
|
176
|
-
};
|
|
177
|
-
failToCreateTitle: {
|
|
178
165
|
id: string;
|
|
166
|
+
};
|
|
167
|
+
inlineExtensionInSyncBlockDescription: {
|
|
179
168
|
defaultMessage: string;
|
|
180
169
|
description: string;
|
|
181
|
-
};
|
|
182
|
-
failToCreateWhenOfflineDescription: {
|
|
183
170
|
id: string;
|
|
171
|
+
};
|
|
172
|
+
inlineExtensionInSyncBlockTitle: {
|
|
184
173
|
defaultMessage: string;
|
|
185
174
|
description: string;
|
|
175
|
+
id: string;
|
|
186
176
|
};
|
|
187
177
|
loadingSyncedContent: {
|
|
188
|
-
id: string;
|
|
189
178
|
defaultMessage: string;
|
|
190
179
|
description: string;
|
|
191
|
-
};
|
|
192
|
-
generalErrorDescription: {
|
|
193
180
|
id: string;
|
|
181
|
+
};
|
|
182
|
+
newLozenge: {
|
|
194
183
|
defaultMessage: string;
|
|
195
184
|
description: string;
|
|
185
|
+
id: string;
|
|
196
186
|
};
|
|
197
187
|
notFoundAltText: {
|
|
198
|
-
id: string;
|
|
199
188
|
defaultMessage: string;
|
|
200
189
|
description: string;
|
|
190
|
+
id: string;
|
|
201
191
|
};
|
|
202
192
|
notFoundDescription: {
|
|
203
|
-
id: string;
|
|
204
193
|
defaultMessage: string;
|
|
205
194
|
description: string;
|
|
206
|
-
};
|
|
207
|
-
sourceUnsyncedDescription: {
|
|
208
195
|
id: string;
|
|
196
|
+
};
|
|
197
|
+
offlineError: {
|
|
209
198
|
defaultMessage: string;
|
|
210
199
|
description: string;
|
|
211
|
-
};
|
|
212
|
-
sourceDeletedDescription: {
|
|
213
200
|
id: string;
|
|
201
|
+
};
|
|
202
|
+
permissionDeniedAltText: {
|
|
214
203
|
defaultMessage: string;
|
|
215
204
|
description: string;
|
|
216
|
-
};
|
|
217
|
-
genericNotFoundDescription: {
|
|
218
205
|
id: string;
|
|
206
|
+
};
|
|
207
|
+
permissionDeniedDescription: {
|
|
219
208
|
defaultMessage: string;
|
|
220
209
|
description: string;
|
|
221
|
-
};
|
|
222
|
-
retryButton: {
|
|
223
210
|
id: string;
|
|
211
|
+
};
|
|
212
|
+
permissionDeniedHeading: {
|
|
224
213
|
defaultMessage: string;
|
|
225
214
|
description: string;
|
|
226
|
-
};
|
|
227
|
-
offlineError: {
|
|
228
215
|
id: string;
|
|
216
|
+
};
|
|
217
|
+
referenceSyncBlockLastEdited: {
|
|
229
218
|
defaultMessage: string;
|
|
230
219
|
description: string;
|
|
231
|
-
};
|
|
232
|
-
unpublishedError: {
|
|
233
220
|
id: string;
|
|
221
|
+
};
|
|
222
|
+
referenceSyncBlockTooltip: {
|
|
234
223
|
defaultMessage: string;
|
|
235
224
|
description: string;
|
|
236
|
-
};
|
|
237
|
-
syncBlockCopiedTitle: {
|
|
238
225
|
id: string;
|
|
226
|
+
};
|
|
227
|
+
requestAccessButton: {
|
|
239
228
|
defaultMessage: string;
|
|
240
229
|
description: string;
|
|
241
|
-
};
|
|
242
|
-
syncBlockCopiedDescription: {
|
|
243
230
|
id: string;
|
|
231
|
+
};
|
|
232
|
+
requestAccessError: {
|
|
244
233
|
defaultMessage: string;
|
|
245
234
|
description: string;
|
|
246
|
-
};
|
|
247
|
-
syncBlockCopiedAction: {
|
|
248
235
|
id: string;
|
|
236
|
+
};
|
|
237
|
+
retryButton: {
|
|
249
238
|
defaultMessage: string;
|
|
250
239
|
description: string;
|
|
251
|
-
};
|
|
252
|
-
syncedLocationDropdownTitle: {
|
|
253
240
|
id: string;
|
|
241
|
+
};
|
|
242
|
+
sourceDeletedDescription: {
|
|
254
243
|
defaultMessage: string;
|
|
255
244
|
description: string;
|
|
256
|
-
};
|
|
257
|
-
syncedLocationDropdownHeading: {
|
|
258
245
|
id: string;
|
|
246
|
+
};
|
|
247
|
+
sourceSyncBlockTooltip: {
|
|
259
248
|
defaultMessage: string;
|
|
260
249
|
description: string;
|
|
261
|
-
};
|
|
262
|
-
syncedLocationDropdownError: {
|
|
263
250
|
id: string;
|
|
251
|
+
};
|
|
252
|
+
sourceUnsyncedDescription: {
|
|
264
253
|
defaultMessage: string;
|
|
265
254
|
description: string;
|
|
266
|
-
};
|
|
267
|
-
syncedLocationDropdownNoResults: {
|
|
268
255
|
id: string;
|
|
256
|
+
};
|
|
257
|
+
syncBlockCopiedAction: {
|
|
269
258
|
defaultMessage: string;
|
|
270
259
|
description: string;
|
|
271
|
-
};
|
|
272
|
-
syncedLocationDropdownLearnMoreLink: {
|
|
273
260
|
id: string;
|
|
261
|
+
};
|
|
262
|
+
syncBlockCopiedDescription: {
|
|
274
263
|
defaultMessage: string;
|
|
275
264
|
description: string;
|
|
276
|
-
};
|
|
277
|
-
syncedLocationDropdownSamePage: {
|
|
278
265
|
id: string;
|
|
266
|
+
};
|
|
267
|
+
syncBlockCopiedTitle: {
|
|
279
268
|
defaultMessage: string;
|
|
280
269
|
description: string;
|
|
281
|
-
};
|
|
282
|
-
syncedLocationDropdownTitleBlockIndex: {
|
|
283
270
|
id: string;
|
|
271
|
+
};
|
|
272
|
+
syncBlockGroup: {
|
|
284
273
|
defaultMessage: string;
|
|
285
274
|
description: string;
|
|
275
|
+
id: string;
|
|
286
276
|
};
|
|
287
|
-
|
|
277
|
+
syncBlockLabel: {
|
|
278
|
+
defaultMessage: string;
|
|
279
|
+
description: string;
|
|
288
280
|
id: string;
|
|
281
|
+
};
|
|
282
|
+
syncedBlockLabel: {
|
|
289
283
|
defaultMessage: string;
|
|
290
284
|
description: string;
|
|
285
|
+
id: string;
|
|
291
286
|
};
|
|
292
|
-
|
|
287
|
+
syncedLocationDropdownError: {
|
|
288
|
+
defaultMessage: string;
|
|
289
|
+
description: string;
|
|
293
290
|
id: string;
|
|
291
|
+
};
|
|
292
|
+
syncedLocationDropdownHeading: {
|
|
294
293
|
defaultMessage: string;
|
|
295
294
|
description: string;
|
|
295
|
+
id: string;
|
|
296
296
|
};
|
|
297
|
-
|
|
297
|
+
syncedLocationDropdownLearnMoreLink: {
|
|
298
|
+
defaultMessage: string;
|
|
299
|
+
description: string;
|
|
298
300
|
id: string;
|
|
301
|
+
};
|
|
302
|
+
syncedLocationDropdownNoResults: {
|
|
299
303
|
defaultMessage: string;
|
|
300
304
|
description: string;
|
|
305
|
+
id: string;
|
|
301
306
|
};
|
|
302
307
|
syncedLocationDropdownRequestAccess: {
|
|
303
|
-
id: string;
|
|
304
308
|
defaultMessage: string;
|
|
305
309
|
description: string;
|
|
306
|
-
};
|
|
307
|
-
unpublishedSyncBlockPastedTitle: {
|
|
308
310
|
id: string;
|
|
311
|
+
};
|
|
312
|
+
syncedLocationDropdownSamePage: {
|
|
309
313
|
defaultMessage: string;
|
|
310
314
|
description: string;
|
|
311
|
-
};
|
|
312
|
-
unpublishedSyncBlockPastedDescription: {
|
|
313
315
|
id: string;
|
|
316
|
+
};
|
|
317
|
+
syncedLocationDropdownSourceLozenge: {
|
|
314
318
|
defaultMessage: string;
|
|
315
319
|
description: string;
|
|
316
|
-
};
|
|
317
|
-
unsyncButton: {
|
|
318
320
|
id: string;
|
|
321
|
+
};
|
|
322
|
+
syncedLocationDropdownTitle: {
|
|
319
323
|
defaultMessage: string;
|
|
320
324
|
description: string;
|
|
321
|
-
};
|
|
322
|
-
deleteConfirmationModalUnsyncButton: {
|
|
323
325
|
id: string;
|
|
326
|
+
};
|
|
327
|
+
syncedLocationDropdownTitleBlockIndex: {
|
|
324
328
|
defaultMessage: string;
|
|
325
329
|
description: string;
|
|
326
|
-
};
|
|
327
|
-
unsyncConfirmationModalTitle: {
|
|
328
330
|
id: string;
|
|
331
|
+
};
|
|
332
|
+
syncedLocationDropdownTitleNoteForConfluencePage: {
|
|
329
333
|
defaultMessage: string;
|
|
330
334
|
description: string;
|
|
331
|
-
};
|
|
332
|
-
unsyncConfirmModalDescriptionSingle: {
|
|
333
335
|
id: string;
|
|
336
|
+
};
|
|
337
|
+
syncedLocationDropdownTitleNoteForJiraWorkItem: {
|
|
334
338
|
defaultMessage: string;
|
|
335
339
|
description: string;
|
|
336
|
-
};
|
|
337
|
-
unsyncConfirmModalDescriptionMultiple: {
|
|
338
340
|
id: string;
|
|
341
|
+
};
|
|
342
|
+
syncedLocationDropdownUntitledPage: {
|
|
339
343
|
defaultMessage: string;
|
|
340
344
|
description: string;
|
|
341
|
-
};
|
|
342
|
-
cannotPasteSyncedBlockTitle: {
|
|
343
345
|
id: string;
|
|
346
|
+
};
|
|
347
|
+
taskInDestinationSyncedBlockTooltip: {
|
|
344
348
|
defaultMessage: string;
|
|
345
349
|
description: string;
|
|
346
|
-
};
|
|
347
|
-
cannotPasteSyncedBlockDescription: {
|
|
348
350
|
id: string;
|
|
351
|
+
};
|
|
352
|
+
unpublishedError: {
|
|
349
353
|
defaultMessage: string;
|
|
350
354
|
description: string;
|
|
351
|
-
};
|
|
352
|
-
cannotPasteSyncedBlockAction: {
|
|
353
355
|
id: string;
|
|
356
|
+
};
|
|
357
|
+
unpublishedSyncBlockPastedDescription: {
|
|
354
358
|
defaultMessage: string;
|
|
355
359
|
description: string;
|
|
356
|
-
};
|
|
357
|
-
cannotCreateSyncBlockTitle: {
|
|
358
360
|
id: string;
|
|
361
|
+
};
|
|
362
|
+
unpublishedSyncBlockPastedTitle: {
|
|
359
363
|
defaultMessage: string;
|
|
360
364
|
description: string;
|
|
361
|
-
};
|
|
362
|
-
CannotCreateSyncBlockDescription: {
|
|
363
365
|
id: string;
|
|
366
|
+
};
|
|
367
|
+
unsyncButton: {
|
|
364
368
|
defaultMessage: string;
|
|
365
369
|
description: string;
|
|
366
|
-
};
|
|
367
|
-
inlineExtensionInSyncBlockTitle: {
|
|
368
370
|
id: string;
|
|
371
|
+
};
|
|
372
|
+
unsyncConfirmationModalTitle: {
|
|
369
373
|
defaultMessage: string;
|
|
370
374
|
description: string;
|
|
371
|
-
};
|
|
372
|
-
inlineExtensionInSyncBlockDescription: {
|
|
373
375
|
id: string;
|
|
376
|
+
};
|
|
377
|
+
unsyncConfirmModalDescriptionMultiple: {
|
|
374
378
|
defaultMessage: string;
|
|
375
379
|
description: string;
|
|
376
|
-
};
|
|
377
|
-
extensionInSyncBlockTitle: {
|
|
378
380
|
id: string;
|
|
381
|
+
};
|
|
382
|
+
unsyncConfirmModalDescriptionSingle: {
|
|
379
383
|
defaultMessage: string;
|
|
380
384
|
description: string;
|
|
381
|
-
};
|
|
382
|
-
extensionInSyncBlockDescription: {
|
|
383
385
|
id: string;
|
|
386
|
+
};
|
|
387
|
+
unsyncedBlockLabel: {
|
|
384
388
|
defaultMessage: string;
|
|
385
389
|
description: string;
|
|
390
|
+
id: string;
|
|
386
391
|
};
|
|
387
392
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-common",
|
|
3
|
-
"version": "112.
|
|
3
|
+
"version": "112.16.0",
|
|
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/"
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"@atlaskit/spinner": "^19.0.0",
|
|
81
81
|
"@atlaskit/task-decision": "^19.3.0",
|
|
82
82
|
"@atlaskit/textfield": "^8.2.0",
|
|
83
|
-
"@atlaskit/tmp-editor-statsig": "^53.
|
|
83
|
+
"@atlaskit/tmp-editor-statsig": "^53.1.0",
|
|
84
84
|
"@atlaskit/tokens": "^11.4.0",
|
|
85
85
|
"@atlaskit/tooltip": "^21.1.0",
|
|
86
86
|
"@atlaskit/width-detector": "^5.0.0",
|