@atlaskit/editor-common 114.51.1 → 114.53.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 +18 -0
- package/dist/cjs/ai-messages/ai-suggestions.js +46 -1
- package/dist/cjs/ai-messages/ai.js +20 -0
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/cjs/utils/node-type-utils.js +1 -2
- package/dist/es2019/ai-messages/ai-suggestions.js +46 -1
- package/dist/es2019/ai-messages/ai.js +20 -0
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/es2019/utils/node-type-utils.js +1 -2
- package/dist/esm/ai-messages/ai-suggestions.js +46 -1
- package/dist/esm/ai-messages/ai.js +20 -0
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/esm/utils/node-type-utils.js +1 -2
- package/dist/types/ai-messages/ai-suggestions.d.ts +45 -0
- package/dist/types/ai-messages/ai.d.ts +20 -0
- package/dist/types/utils/index.d.ts +1 -1
- package/dist/types-ts4.5/ai-messages/ai-suggestions.d.ts +45 -0
- package/dist/types-ts4.5/ai-messages/ai.d.ts +20 -0
- package/dist/types-ts4.5/utils/index.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 114.53.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`9d5523b6e89fc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9d5523b6e89fc) -
|
|
8
|
+
EDITOR-7419: Add thinking components and scaffold the new actions (not wired up anywhere yet)
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
14
|
+
## 114.52.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- [`e72b71ab5144f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e72b71ab5144f) -
|
|
19
|
+
Add target-specific Ask Rovo floating toolbar labels
|
|
20
|
+
|
|
3
21
|
## 114.51.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -7,7 +7,7 @@ exports.aiSuggestionsMessages = void 0;
|
|
|
7
7
|
var _reactIntl = require("react-intl");
|
|
8
8
|
var aiSuggestionsMessages = exports.aiSuggestionsMessages = (0, _reactIntl.defineMessages)({
|
|
9
9
|
suggestEditsButtonLabel: {
|
|
10
|
-
id: 'fabric.editor.ai.suggestions.
|
|
10
|
+
id: 'fabric.editor.ai.suggestions.suggestEditsButtonLabel',
|
|
11
11
|
defaultMessage: 'Review',
|
|
12
12
|
description: 'Label for the Suggest edits button in the editor toolbar'
|
|
13
13
|
},
|
|
@@ -165,5 +165,50 @@ var aiSuggestionsMessages = exports.aiSuggestionsMessages = (0, _reactIntl.defin
|
|
|
165
165
|
id: 'fabric.editor.ai.suggestions.card.scrollBackToSuggestionLabel.non-final',
|
|
166
166
|
defaultMessage: 'Back to suggestion',
|
|
167
167
|
description: 'Label for the scroll back to suggestion button on the AI suggestions card'
|
|
168
|
+
},
|
|
169
|
+
thinkingEscHint: {
|
|
170
|
+
id: 'fabric.editor.ai.suggestions.thinking.escHint.non-final',
|
|
171
|
+
defaultMessage: 'Esc',
|
|
172
|
+
description: 'Keyboard hint showing the Esc key can be used to cancel'
|
|
173
|
+
},
|
|
174
|
+
thinkingStopLabel: {
|
|
175
|
+
id: 'fabric.editor.ai.suggestions.thinking.stopLabel.non-final',
|
|
176
|
+
defaultMessage: 'Stop',
|
|
177
|
+
description: 'Accessible label for the stop button displayed while the AI is thinking. When clicked, it cancels the ongoing action.'
|
|
178
|
+
},
|
|
179
|
+
thinkingReviewingContent: {
|
|
180
|
+
id: 'fabric.editor.ai.suggestions.thinking.reviewingContent.non-final',
|
|
181
|
+
defaultMessage: 'Reviewing content',
|
|
182
|
+
description: 'Loading message shown while the AI is reviewing the content'
|
|
183
|
+
},
|
|
184
|
+
thinkingCheckingRelatedSources: {
|
|
185
|
+
id: 'fabric.editor.ai.suggestions.thinking.checkingRelatedSources.non-final',
|
|
186
|
+
defaultMessage: 'Checking related sources',
|
|
187
|
+
description: 'Loading message shown while the AI is checking related sources'
|
|
188
|
+
},
|
|
189
|
+
thinkingIdentifyingImprovements: {
|
|
190
|
+
id: 'fabric.editor.ai.suggestions.thinking.identifyingImprovements.non-final',
|
|
191
|
+
defaultMessage: 'Identifying improvements',
|
|
192
|
+
description: 'Loading message shown while the AI is identifying improvements'
|
|
193
|
+
},
|
|
194
|
+
thinkingPreparingSuggestions: {
|
|
195
|
+
id: 'fabric.editor.ai.suggestions.thinking.preparingSuggestions.non-final',
|
|
196
|
+
defaultMessage: 'Preparing suggestions',
|
|
197
|
+
description: 'Loading message shown while the AI is preparing suggestions'
|
|
198
|
+
},
|
|
199
|
+
thinkingCompleteReviewComplete: {
|
|
200
|
+
id: 'fabric.editor.ai.suggestions.thinkingComplete.reviewComplete.non-final',
|
|
201
|
+
defaultMessage: 'Suggestions ready',
|
|
202
|
+
description: 'Text shown when the AI has finished reviewing the content'
|
|
203
|
+
},
|
|
204
|
+
thinkingCompleteViewSuggestions: {
|
|
205
|
+
id: 'fabric.editor.ai.suggestions.thinkingComplete.viewSuggestions.non-final',
|
|
206
|
+
defaultMessage: 'View',
|
|
207
|
+
description: 'Label for the button that opens the suggestions panel'
|
|
208
|
+
},
|
|
209
|
+
thinkingCompleteClose: {
|
|
210
|
+
id: 'fabric.editor.ai.suggestions.thinkingComplete.close.non-final',
|
|
211
|
+
defaultMessage: 'Close',
|
|
212
|
+
description: 'Accessible label for the close button on the thinking complete bar'
|
|
168
213
|
}
|
|
169
214
|
});
|
|
@@ -43,6 +43,16 @@ var aiMessages = exports.aiMessages = (0, _reactIntl.defineMessages)({
|
|
|
43
43
|
defaultMessage: 'Ask Rovo',
|
|
44
44
|
description: 'Title for an option to use Atlassian Intellgience'
|
|
45
45
|
},
|
|
46
|
+
askRovoToolbarRemixAppTitle: {
|
|
47
|
+
id: 'fabric.editor.ai.toolbar.askRovo.remixApp.title',
|
|
48
|
+
defaultMessage: 'Edit',
|
|
49
|
+
description: 'Title for an option to edit a MAUI app embed with Rovo'
|
|
50
|
+
},
|
|
51
|
+
askRovoToolbarImageTitle: {
|
|
52
|
+
id: 'fabric.editor.ai.toolbar.askRovo.image.title',
|
|
53
|
+
defaultMessage: 'Edit image',
|
|
54
|
+
description: 'Title for an option to edit an image with Rovo'
|
|
55
|
+
},
|
|
46
56
|
moreRovoOptionsMenuLabel: {
|
|
47
57
|
id: 'fabric.editor.ai.toolbar.moreRovoOptions.label',
|
|
48
58
|
defaultMessage: 'More Rovo options',
|
|
@@ -68,6 +78,16 @@ var aiMessages = exports.aiMessages = (0, _reactIntl.defineMessages)({
|
|
|
68
78
|
defaultMessage: "Ask Rovo {key}+'",
|
|
69
79
|
description: 'Tooltip text for an option to use Rovo AI with quick command'
|
|
70
80
|
},
|
|
81
|
+
askRovoToolbarRemixAppTooltipQuickCommand: {
|
|
82
|
+
id: 'fabric.editor.ai.toolbar.askRovo.remixApp.tooltip.quickCommand',
|
|
83
|
+
defaultMessage: "Edit {key}+'",
|
|
84
|
+
description: 'Tooltip text for an option to edit a MAUI app embed with Rovo using quick command'
|
|
85
|
+
},
|
|
86
|
+
askRovoToolbarImageTooltipQuickCommand: {
|
|
87
|
+
id: 'fabric.editor.ai.toolbar.askRovo.image.tooltip.quickCommand',
|
|
88
|
+
defaultMessage: "Edit image {key}+'",
|
|
89
|
+
description: 'Tooltip text for an option to edit an image with Rovo using quick command'
|
|
90
|
+
},
|
|
71
91
|
tryAIToolbarIconTitle: {
|
|
72
92
|
id: 'fabric.editor.ai.toolbar.tryAI.title',
|
|
73
93
|
defaultMessage: 'Try AI',
|
|
@@ -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 _t2 in e) "default" !== _t2 && {}.hasOwnProperty.call(e, _t2) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t2)) && (i.get || i.set) ? o(f, _t2, i) : f[_t2] = e[_t2]); 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.52.0";
|
|
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 = "114.
|
|
27
|
+
var packageVersion = "114.52.0";
|
|
28
28
|
var halfFocusRing = 1;
|
|
29
29
|
var dropOffset = '0, 8';
|
|
30
30
|
var fadeIn = (0, _react2.keyframes)({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineMessages } from 'react-intl';
|
|
2
2
|
export const aiSuggestionsMessages = defineMessages({
|
|
3
3
|
suggestEditsButtonLabel: {
|
|
4
|
-
id: 'fabric.editor.ai.suggestions.
|
|
4
|
+
id: 'fabric.editor.ai.suggestions.suggestEditsButtonLabel',
|
|
5
5
|
defaultMessage: 'Review',
|
|
6
6
|
description: 'Label for the Suggest edits button in the editor toolbar'
|
|
7
7
|
},
|
|
@@ -159,5 +159,50 @@ export const aiSuggestionsMessages = defineMessages({
|
|
|
159
159
|
id: 'fabric.editor.ai.suggestions.card.scrollBackToSuggestionLabel.non-final',
|
|
160
160
|
defaultMessage: 'Back to suggestion',
|
|
161
161
|
description: 'Label for the scroll back to suggestion button on the AI suggestions card'
|
|
162
|
+
},
|
|
163
|
+
thinkingEscHint: {
|
|
164
|
+
id: 'fabric.editor.ai.suggestions.thinking.escHint.non-final',
|
|
165
|
+
defaultMessage: 'Esc',
|
|
166
|
+
description: 'Keyboard hint showing the Esc key can be used to cancel'
|
|
167
|
+
},
|
|
168
|
+
thinkingStopLabel: {
|
|
169
|
+
id: 'fabric.editor.ai.suggestions.thinking.stopLabel.non-final',
|
|
170
|
+
defaultMessage: 'Stop',
|
|
171
|
+
description: 'Accessible label for the stop button displayed while the AI is thinking. When clicked, it cancels the ongoing action.'
|
|
172
|
+
},
|
|
173
|
+
thinkingReviewingContent: {
|
|
174
|
+
id: 'fabric.editor.ai.suggestions.thinking.reviewingContent.non-final',
|
|
175
|
+
defaultMessage: 'Reviewing content',
|
|
176
|
+
description: 'Loading message shown while the AI is reviewing the content'
|
|
177
|
+
},
|
|
178
|
+
thinkingCheckingRelatedSources: {
|
|
179
|
+
id: 'fabric.editor.ai.suggestions.thinking.checkingRelatedSources.non-final',
|
|
180
|
+
defaultMessage: 'Checking related sources',
|
|
181
|
+
description: 'Loading message shown while the AI is checking related sources'
|
|
182
|
+
},
|
|
183
|
+
thinkingIdentifyingImprovements: {
|
|
184
|
+
id: 'fabric.editor.ai.suggestions.thinking.identifyingImprovements.non-final',
|
|
185
|
+
defaultMessage: 'Identifying improvements',
|
|
186
|
+
description: 'Loading message shown while the AI is identifying improvements'
|
|
187
|
+
},
|
|
188
|
+
thinkingPreparingSuggestions: {
|
|
189
|
+
id: 'fabric.editor.ai.suggestions.thinking.preparingSuggestions.non-final',
|
|
190
|
+
defaultMessage: 'Preparing suggestions',
|
|
191
|
+
description: 'Loading message shown while the AI is preparing suggestions'
|
|
192
|
+
},
|
|
193
|
+
thinkingCompleteReviewComplete: {
|
|
194
|
+
id: 'fabric.editor.ai.suggestions.thinkingComplete.reviewComplete.non-final',
|
|
195
|
+
defaultMessage: 'Suggestions ready',
|
|
196
|
+
description: 'Text shown when the AI has finished reviewing the content'
|
|
197
|
+
},
|
|
198
|
+
thinkingCompleteViewSuggestions: {
|
|
199
|
+
id: 'fabric.editor.ai.suggestions.thinkingComplete.viewSuggestions.non-final',
|
|
200
|
+
defaultMessage: 'View',
|
|
201
|
+
description: 'Label for the button that opens the suggestions panel'
|
|
202
|
+
},
|
|
203
|
+
thinkingCompleteClose: {
|
|
204
|
+
id: 'fabric.editor.ai.suggestions.thinkingComplete.close.non-final',
|
|
205
|
+
defaultMessage: 'Close',
|
|
206
|
+
description: 'Accessible label for the close button on the thinking complete bar'
|
|
162
207
|
}
|
|
163
208
|
});
|
|
@@ -37,6 +37,16 @@ export const aiMessages = defineMessages({
|
|
|
37
37
|
defaultMessage: 'Ask Rovo',
|
|
38
38
|
description: 'Title for an option to use Atlassian Intellgience'
|
|
39
39
|
},
|
|
40
|
+
askRovoToolbarRemixAppTitle: {
|
|
41
|
+
id: 'fabric.editor.ai.toolbar.askRovo.remixApp.title',
|
|
42
|
+
defaultMessage: 'Edit',
|
|
43
|
+
description: 'Title for an option to edit a MAUI app embed with Rovo'
|
|
44
|
+
},
|
|
45
|
+
askRovoToolbarImageTitle: {
|
|
46
|
+
id: 'fabric.editor.ai.toolbar.askRovo.image.title',
|
|
47
|
+
defaultMessage: 'Edit image',
|
|
48
|
+
description: 'Title for an option to edit an image with Rovo'
|
|
49
|
+
},
|
|
40
50
|
moreRovoOptionsMenuLabel: {
|
|
41
51
|
id: 'fabric.editor.ai.toolbar.moreRovoOptions.label',
|
|
42
52
|
defaultMessage: 'More Rovo options',
|
|
@@ -62,6 +72,16 @@ export const aiMessages = defineMessages({
|
|
|
62
72
|
defaultMessage: "Ask Rovo {key}+'",
|
|
63
73
|
description: 'Tooltip text for an option to use Rovo AI with quick command'
|
|
64
74
|
},
|
|
75
|
+
askRovoToolbarRemixAppTooltipQuickCommand: {
|
|
76
|
+
id: 'fabric.editor.ai.toolbar.askRovo.remixApp.tooltip.quickCommand',
|
|
77
|
+
defaultMessage: "Edit {key}+'",
|
|
78
|
+
description: 'Tooltip text for an option to edit a MAUI app embed with Rovo using quick command'
|
|
79
|
+
},
|
|
80
|
+
askRovoToolbarImageTooltipQuickCommand: {
|
|
81
|
+
id: 'fabric.editor.ai.toolbar.askRovo.image.tooltip.quickCommand',
|
|
82
|
+
defaultMessage: "Edit image {key}+'",
|
|
83
|
+
description: 'Tooltip text for an option to edit an image with Rovo using quick command'
|
|
84
|
+
},
|
|
65
85
|
tryAIToolbarIconTitle: {
|
|
66
86
|
id: 'fabric.editor.ai.toolbar.tryAI.title',
|
|
67
87
|
defaultMessage: 'Try AI',
|
|
@@ -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.52.0";
|
|
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 = "114.
|
|
17
|
+
const packageVersion = "114.52.0";
|
|
18
18
|
const halfFocusRing = 1;
|
|
19
19
|
const dropOffset = '0, 8';
|
|
20
20
|
const fadeIn = keyframes({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineMessages } from 'react-intl';
|
|
2
2
|
export var aiSuggestionsMessages = defineMessages({
|
|
3
3
|
suggestEditsButtonLabel: {
|
|
4
|
-
id: 'fabric.editor.ai.suggestions.
|
|
4
|
+
id: 'fabric.editor.ai.suggestions.suggestEditsButtonLabel',
|
|
5
5
|
defaultMessage: 'Review',
|
|
6
6
|
description: 'Label for the Suggest edits button in the editor toolbar'
|
|
7
7
|
},
|
|
@@ -159,5 +159,50 @@ export var aiSuggestionsMessages = defineMessages({
|
|
|
159
159
|
id: 'fabric.editor.ai.suggestions.card.scrollBackToSuggestionLabel.non-final',
|
|
160
160
|
defaultMessage: 'Back to suggestion',
|
|
161
161
|
description: 'Label for the scroll back to suggestion button on the AI suggestions card'
|
|
162
|
+
},
|
|
163
|
+
thinkingEscHint: {
|
|
164
|
+
id: 'fabric.editor.ai.suggestions.thinking.escHint.non-final',
|
|
165
|
+
defaultMessage: 'Esc',
|
|
166
|
+
description: 'Keyboard hint showing the Esc key can be used to cancel'
|
|
167
|
+
},
|
|
168
|
+
thinkingStopLabel: {
|
|
169
|
+
id: 'fabric.editor.ai.suggestions.thinking.stopLabel.non-final',
|
|
170
|
+
defaultMessage: 'Stop',
|
|
171
|
+
description: 'Accessible label for the stop button displayed while the AI is thinking. When clicked, it cancels the ongoing action.'
|
|
172
|
+
},
|
|
173
|
+
thinkingReviewingContent: {
|
|
174
|
+
id: 'fabric.editor.ai.suggestions.thinking.reviewingContent.non-final',
|
|
175
|
+
defaultMessage: 'Reviewing content',
|
|
176
|
+
description: 'Loading message shown while the AI is reviewing the content'
|
|
177
|
+
},
|
|
178
|
+
thinkingCheckingRelatedSources: {
|
|
179
|
+
id: 'fabric.editor.ai.suggestions.thinking.checkingRelatedSources.non-final',
|
|
180
|
+
defaultMessage: 'Checking related sources',
|
|
181
|
+
description: 'Loading message shown while the AI is checking related sources'
|
|
182
|
+
},
|
|
183
|
+
thinkingIdentifyingImprovements: {
|
|
184
|
+
id: 'fabric.editor.ai.suggestions.thinking.identifyingImprovements.non-final',
|
|
185
|
+
defaultMessage: 'Identifying improvements',
|
|
186
|
+
description: 'Loading message shown while the AI is identifying improvements'
|
|
187
|
+
},
|
|
188
|
+
thinkingPreparingSuggestions: {
|
|
189
|
+
id: 'fabric.editor.ai.suggestions.thinking.preparingSuggestions.non-final',
|
|
190
|
+
defaultMessage: 'Preparing suggestions',
|
|
191
|
+
description: 'Loading message shown while the AI is preparing suggestions'
|
|
192
|
+
},
|
|
193
|
+
thinkingCompleteReviewComplete: {
|
|
194
|
+
id: 'fabric.editor.ai.suggestions.thinkingComplete.reviewComplete.non-final',
|
|
195
|
+
defaultMessage: 'Suggestions ready',
|
|
196
|
+
description: 'Text shown when the AI has finished reviewing the content'
|
|
197
|
+
},
|
|
198
|
+
thinkingCompleteViewSuggestions: {
|
|
199
|
+
id: 'fabric.editor.ai.suggestions.thinkingComplete.viewSuggestions.non-final',
|
|
200
|
+
defaultMessage: 'View',
|
|
201
|
+
description: 'Label for the button that opens the suggestions panel'
|
|
202
|
+
},
|
|
203
|
+
thinkingCompleteClose: {
|
|
204
|
+
id: 'fabric.editor.ai.suggestions.thinkingComplete.close.non-final',
|
|
205
|
+
defaultMessage: 'Close',
|
|
206
|
+
description: 'Accessible label for the close button on the thinking complete bar'
|
|
162
207
|
}
|
|
163
208
|
});
|
|
@@ -37,6 +37,16 @@ export var aiMessages = defineMessages({
|
|
|
37
37
|
defaultMessage: 'Ask Rovo',
|
|
38
38
|
description: 'Title for an option to use Atlassian Intellgience'
|
|
39
39
|
},
|
|
40
|
+
askRovoToolbarRemixAppTitle: {
|
|
41
|
+
id: 'fabric.editor.ai.toolbar.askRovo.remixApp.title',
|
|
42
|
+
defaultMessage: 'Edit',
|
|
43
|
+
description: 'Title for an option to edit a MAUI app embed with Rovo'
|
|
44
|
+
},
|
|
45
|
+
askRovoToolbarImageTitle: {
|
|
46
|
+
id: 'fabric.editor.ai.toolbar.askRovo.image.title',
|
|
47
|
+
defaultMessage: 'Edit image',
|
|
48
|
+
description: 'Title for an option to edit an image with Rovo'
|
|
49
|
+
},
|
|
40
50
|
moreRovoOptionsMenuLabel: {
|
|
41
51
|
id: 'fabric.editor.ai.toolbar.moreRovoOptions.label',
|
|
42
52
|
defaultMessage: 'More Rovo options',
|
|
@@ -62,6 +72,16 @@ export var aiMessages = defineMessages({
|
|
|
62
72
|
defaultMessage: "Ask Rovo {key}+'",
|
|
63
73
|
description: 'Tooltip text for an option to use Rovo AI with quick command'
|
|
64
74
|
},
|
|
75
|
+
askRovoToolbarRemixAppTooltipQuickCommand: {
|
|
76
|
+
id: 'fabric.editor.ai.toolbar.askRovo.remixApp.tooltip.quickCommand',
|
|
77
|
+
defaultMessage: "Edit {key}+'",
|
|
78
|
+
description: 'Tooltip text for an option to edit a MAUI app embed with Rovo using quick command'
|
|
79
|
+
},
|
|
80
|
+
askRovoToolbarImageTooltipQuickCommand: {
|
|
81
|
+
id: 'fabric.editor.ai.toolbar.askRovo.image.tooltip.quickCommand',
|
|
82
|
+
defaultMessage: "Edit image {key}+'",
|
|
83
|
+
description: 'Tooltip text for an option to edit an image with Rovo using quick command'
|
|
84
|
+
},
|
|
65
85
|
tryAIToolbarIconTitle: {
|
|
66
86
|
id: 'fabric.editor.ai.toolbar.tryAI.title',
|
|
67
87
|
defaultMessage: 'Try AI',
|
|
@@ -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.52.0";
|
|
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 = "114.
|
|
24
|
+
var packageVersion = "114.52.0";
|
|
25
25
|
var halfFocusRing = 1;
|
|
26
26
|
var dropOffset = '0, 8';
|
|
27
27
|
var fadeIn = keyframes({
|
|
@@ -149,6 +149,51 @@ export declare const aiSuggestionsMessages: {
|
|
|
149
149
|
description: string;
|
|
150
150
|
id: string;
|
|
151
151
|
};
|
|
152
|
+
thinkingCheckingRelatedSources: {
|
|
153
|
+
defaultMessage: string;
|
|
154
|
+
description: string;
|
|
155
|
+
id: string;
|
|
156
|
+
};
|
|
157
|
+
thinkingCompleteClose: {
|
|
158
|
+
defaultMessage: string;
|
|
159
|
+
description: string;
|
|
160
|
+
id: string;
|
|
161
|
+
};
|
|
162
|
+
thinkingCompleteReviewComplete: {
|
|
163
|
+
defaultMessage: string;
|
|
164
|
+
description: string;
|
|
165
|
+
id: string;
|
|
166
|
+
};
|
|
167
|
+
thinkingCompleteViewSuggestions: {
|
|
168
|
+
defaultMessage: string;
|
|
169
|
+
description: string;
|
|
170
|
+
id: string;
|
|
171
|
+
};
|
|
172
|
+
thinkingEscHint: {
|
|
173
|
+
defaultMessage: string;
|
|
174
|
+
description: string;
|
|
175
|
+
id: string;
|
|
176
|
+
};
|
|
177
|
+
thinkingIdentifyingImprovements: {
|
|
178
|
+
defaultMessage: string;
|
|
179
|
+
description: string;
|
|
180
|
+
id: string;
|
|
181
|
+
};
|
|
182
|
+
thinkingPreparingSuggestions: {
|
|
183
|
+
defaultMessage: string;
|
|
184
|
+
description: string;
|
|
185
|
+
id: string;
|
|
186
|
+
};
|
|
187
|
+
thinkingReviewingContent: {
|
|
188
|
+
defaultMessage: string;
|
|
189
|
+
description: string;
|
|
190
|
+
id: string;
|
|
191
|
+
};
|
|
192
|
+
thinkingStopLabel: {
|
|
193
|
+
defaultMessage: string;
|
|
194
|
+
description: string;
|
|
195
|
+
id: string;
|
|
196
|
+
};
|
|
152
197
|
titleLabel: {
|
|
153
198
|
defaultMessage: string;
|
|
154
199
|
description: string;
|
|
@@ -69,6 +69,26 @@ export declare const aiMessages: {
|
|
|
69
69
|
description: string;
|
|
70
70
|
id: string;
|
|
71
71
|
};
|
|
72
|
+
askRovoToolbarImageTitle: {
|
|
73
|
+
defaultMessage: string;
|
|
74
|
+
description: string;
|
|
75
|
+
id: string;
|
|
76
|
+
};
|
|
77
|
+
askRovoToolbarImageTooltipQuickCommand: {
|
|
78
|
+
defaultMessage: string;
|
|
79
|
+
description: string;
|
|
80
|
+
id: string;
|
|
81
|
+
};
|
|
82
|
+
askRovoToolbarRemixAppTitle: {
|
|
83
|
+
defaultMessage: string;
|
|
84
|
+
description: string;
|
|
85
|
+
id: string;
|
|
86
|
+
};
|
|
87
|
+
askRovoToolbarRemixAppTooltipQuickCommand: {
|
|
88
|
+
defaultMessage: string;
|
|
89
|
+
description: string;
|
|
90
|
+
id: string;
|
|
91
|
+
};
|
|
72
92
|
atlasGenerateContentConfigItemDescription: {
|
|
73
93
|
defaultMessage: string;
|
|
74
94
|
description: string;
|
|
@@ -214,4 +214,4 @@ export { findNodePosByLocalIds } from './nodes-by-localIds';
|
|
|
214
214
|
export { getPageElementCounts } from './page-element-counts';
|
|
215
215
|
export type { PageElementCounts } from './page-element-counts';
|
|
216
216
|
export { withFeatureFlaggedComponent } from './withFeatureFlaggedComponent';
|
|
217
|
-
export { isNodeOfSameBaseType, getBaseNodeTypeName, isNodeTypeValidChildOf } from './node-type-utils';
|
|
217
|
+
export { isNodeOfSameBaseType, getBaseNodeTypeName, isNodeTypeValidChildOf, } from './node-type-utils';
|
|
@@ -149,6 +149,51 @@ export declare const aiSuggestionsMessages: {
|
|
|
149
149
|
description: string;
|
|
150
150
|
id: string;
|
|
151
151
|
};
|
|
152
|
+
thinkingCheckingRelatedSources: {
|
|
153
|
+
defaultMessage: string;
|
|
154
|
+
description: string;
|
|
155
|
+
id: string;
|
|
156
|
+
};
|
|
157
|
+
thinkingCompleteClose: {
|
|
158
|
+
defaultMessage: string;
|
|
159
|
+
description: string;
|
|
160
|
+
id: string;
|
|
161
|
+
};
|
|
162
|
+
thinkingCompleteReviewComplete: {
|
|
163
|
+
defaultMessage: string;
|
|
164
|
+
description: string;
|
|
165
|
+
id: string;
|
|
166
|
+
};
|
|
167
|
+
thinkingCompleteViewSuggestions: {
|
|
168
|
+
defaultMessage: string;
|
|
169
|
+
description: string;
|
|
170
|
+
id: string;
|
|
171
|
+
};
|
|
172
|
+
thinkingEscHint: {
|
|
173
|
+
defaultMessage: string;
|
|
174
|
+
description: string;
|
|
175
|
+
id: string;
|
|
176
|
+
};
|
|
177
|
+
thinkingIdentifyingImprovements: {
|
|
178
|
+
defaultMessage: string;
|
|
179
|
+
description: string;
|
|
180
|
+
id: string;
|
|
181
|
+
};
|
|
182
|
+
thinkingPreparingSuggestions: {
|
|
183
|
+
defaultMessage: string;
|
|
184
|
+
description: string;
|
|
185
|
+
id: string;
|
|
186
|
+
};
|
|
187
|
+
thinkingReviewingContent: {
|
|
188
|
+
defaultMessage: string;
|
|
189
|
+
description: string;
|
|
190
|
+
id: string;
|
|
191
|
+
};
|
|
192
|
+
thinkingStopLabel: {
|
|
193
|
+
defaultMessage: string;
|
|
194
|
+
description: string;
|
|
195
|
+
id: string;
|
|
196
|
+
};
|
|
152
197
|
titleLabel: {
|
|
153
198
|
defaultMessage: string;
|
|
154
199
|
description: string;
|
|
@@ -69,6 +69,26 @@ export declare const aiMessages: {
|
|
|
69
69
|
description: string;
|
|
70
70
|
id: string;
|
|
71
71
|
};
|
|
72
|
+
askRovoToolbarImageTitle: {
|
|
73
|
+
defaultMessage: string;
|
|
74
|
+
description: string;
|
|
75
|
+
id: string;
|
|
76
|
+
};
|
|
77
|
+
askRovoToolbarImageTooltipQuickCommand: {
|
|
78
|
+
defaultMessage: string;
|
|
79
|
+
description: string;
|
|
80
|
+
id: string;
|
|
81
|
+
};
|
|
82
|
+
askRovoToolbarRemixAppTitle: {
|
|
83
|
+
defaultMessage: string;
|
|
84
|
+
description: string;
|
|
85
|
+
id: string;
|
|
86
|
+
};
|
|
87
|
+
askRovoToolbarRemixAppTooltipQuickCommand: {
|
|
88
|
+
defaultMessage: string;
|
|
89
|
+
description: string;
|
|
90
|
+
id: string;
|
|
91
|
+
};
|
|
72
92
|
atlasGenerateContentConfigItemDescription: {
|
|
73
93
|
defaultMessage: string;
|
|
74
94
|
description: string;
|
|
@@ -214,4 +214,4 @@ export { findNodePosByLocalIds } from './nodes-by-localIds';
|
|
|
214
214
|
export { getPageElementCounts } from './page-element-counts';
|
|
215
215
|
export type { PageElementCounts } from './page-element-counts';
|
|
216
216
|
export { withFeatureFlaggedComponent } from './withFeatureFlaggedComponent';
|
|
217
|
-
export { isNodeOfSameBaseType, getBaseNodeTypeName, isNodeTypeValidChildOf } from './node-type-utils';
|
|
217
|
+
export { isNodeOfSameBaseType, getBaseNodeTypeName, isNodeTypeValidChildOf, } from './node-type-utils';
|
package/package.json
CHANGED