@atlaskit/editor-common 120.15.0 → 120.16.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +32 -0
- package/dist/cjs/ai-messages/ai-suggestions.js +10 -0
- package/dist/cjs/messages/index.js +7 -0
- package/dist/cjs/messages/snippets.js +34 -0
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/quick-insert/keys.js +5 -1
- package/dist/cjs/quick-insert/rank.js +1 -1
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/es2019/ai-messages/ai-suggestions.js +10 -0
- package/dist/es2019/messages/index.js +1 -0
- package/dist/es2019/messages/snippets.js +28 -0
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/quick-insert/keys.js +4 -0
- package/dist/es2019/quick-insert/rank.js +2 -1
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/esm/ai-messages/ai-suggestions.js +10 -0
- package/dist/esm/messages/index.js +1 -0
- package/dist/esm/messages/snippets.js +28 -0
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/quick-insert/keys.js +4 -0
- package/dist/esm/quick-insert/rank.js +2 -2
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/types/ai-messages/ai-suggestions.d.ts +10 -0
- package/dist/types/messages/index.d.ts +1 -0
- package/dist/types/messages/snippets.d.ts +2 -0
- package/dist/types/quick-insert/keys.d.ts +4 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 120.16.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`c12860a41f49d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c12860a41f49d) -
|
|
8
|
+
Order the Data and charts slash-command menu, including Bitbucket Snippet and GitHub Gist after
|
|
9
|
+
Questions List, when platform_editor_slash_command is enabled.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
12
|
+
## 120.16.1
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
18
|
+
## 120.16.0
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- [`7271896e1f276`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7271896e1f276) -
|
|
23
|
+
Add a restricted-source lozenge to AI suggestion cards.
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
|
|
29
|
+
## 120.15.1
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- Updated dependencies
|
|
34
|
+
|
|
3
35
|
## 120.15.0
|
|
4
36
|
|
|
5
37
|
### Minor Changes
|
|
@@ -151,6 +151,16 @@ var aiSuggestionsMessages = exports.aiSuggestionsMessages = (0, _reactIntl.defin
|
|
|
151
151
|
defaultMessage: 'Visible only to you',
|
|
152
152
|
description: 'Tooltip shown on the private indicator icon in the AI suggestions card'
|
|
153
153
|
},
|
|
154
|
+
cardRestrictedLabel: {
|
|
155
|
+
id: 'fabric.editor.ai.suggestions.card.restrictedLabel.non-final',
|
|
156
|
+
defaultMessage: 'Restricted',
|
|
157
|
+
description: 'Label for the restricted suggestion lozenge'
|
|
158
|
+
},
|
|
159
|
+
cardRestrictedTooltipLabel: {
|
|
160
|
+
id: 'fabric.editor.ai.suggestions.card.restrictedTooltip.non-final',
|
|
161
|
+
defaultMessage: 'Only editors with access to the source can see this suggestion',
|
|
162
|
+
description: 'Tooltip for the restricted suggestion lozenge'
|
|
163
|
+
},
|
|
154
164
|
cardDetailsButtonLabel: {
|
|
155
165
|
id: 'fabric.editor.ai.suggestions.card.detailsButtonLabel.non-final',
|
|
156
166
|
defaultMessage: 'Details',
|
|
@@ -262,6 +262,12 @@ Object.defineProperty(exports, "tasksAndDecisionsMessages", {
|
|
|
262
262
|
return _tasksAndDecsisions.tasksAndDecisionsMessages;
|
|
263
263
|
}
|
|
264
264
|
});
|
|
265
|
+
Object.defineProperty(exports, "templateGalleryMessages", {
|
|
266
|
+
enumerable: true,
|
|
267
|
+
get: function get() {
|
|
268
|
+
return _snippets.templateGalleryMessages;
|
|
269
|
+
}
|
|
270
|
+
});
|
|
265
271
|
Object.defineProperty(exports, "textColorMessages", {
|
|
266
272
|
enumerable: true,
|
|
267
273
|
get: function get() {
|
|
@@ -304,6 +310,7 @@ var _annotation = require("./annotation");
|
|
|
304
310
|
var _breakout = require("./breakout");
|
|
305
311
|
var _blockMenu = require("./block-menu");
|
|
306
312
|
var _blockType = require("./block-type");
|
|
313
|
+
var _snippets = require("./snippets");
|
|
307
314
|
var _codeBidiWarning = require("./codeBidiWarning");
|
|
308
315
|
var _colorAccessibility = require("./color-accessibility");
|
|
309
316
|
var _colorPickerButton = require("./color-picker-button");
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.templateGalleryMessages = void 0;
|
|
7
|
+
var _reactIntl = require("react-intl");
|
|
8
|
+
var templateGalleryMessages = exports.templateGalleryMessages = (0, _reactIntl.defineMessages)({
|
|
9
|
+
blockTemplates: {
|
|
10
|
+
id: 'editor-plugin-snippets.snippetsPlugin.blockTemplates',
|
|
11
|
+
defaultMessage: 'Block templates',
|
|
12
|
+
description: 'Label for the block templates submenu in the block menu'
|
|
13
|
+
},
|
|
14
|
+
browseTemplates: {
|
|
15
|
+
id: 'editor-plugin-snippets.snippetsPlugin.browseTemplates',
|
|
16
|
+
defaultMessage: 'Browse all templates',
|
|
17
|
+
description: 'Label for the action that opens the block template gallery'
|
|
18
|
+
},
|
|
19
|
+
newLozenge: {
|
|
20
|
+
id: 'editor-plugin-snippets.snippetsPlugin.newLozenge',
|
|
21
|
+
defaultMessage: 'New',
|
|
22
|
+
description: 'Lozenge label for the block templates menu item'
|
|
23
|
+
},
|
|
24
|
+
templateGalleryDescription: {
|
|
25
|
+
id: 'editor-plugin-snippets.snippetsPlugin.templateGalleryDescription',
|
|
26
|
+
defaultMessage: 'Create, discover, & insert block templates',
|
|
27
|
+
description: 'Description for the block template gallery quick insert item'
|
|
28
|
+
},
|
|
29
|
+
templateGalleryTitle: {
|
|
30
|
+
id: 'editor-plugin-snippets.snippetsPlugin.templateGalleryTitle',
|
|
31
|
+
defaultMessage: 'Block Template Gallery',
|
|
32
|
+
description: 'Title for the block template gallery quick insert item'
|
|
33
|
+
}
|
|
34
|
+
});
|
|
@@ -27,7 +27,7 @@ var NETWORK_FAILURE_REGEX = /^network failure/i;
|
|
|
27
27
|
var RESIZE_OBSERVER_LOOP_REGEX = /ResizeObserver loop completed with undelivered notifications/;
|
|
28
28
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
29
29
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
30
|
-
var packageVersion = "120.
|
|
30
|
+
var packageVersion = "120.16.1";
|
|
31
31
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
32
32
|
// Remove URL as it has UGC
|
|
33
33
|
// Ignored via go/ees007
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.getBlockTemplateMenuItem = exports.WARNING_PANEL_MENU_ITEM = exports.VIEW_ALL_ELEMENTS_MENU_ITEM = exports.UNORDERED_LIST_MENU_ITEM = exports.TWO_COLUMNS_LAYOUT_MENU_ITEM = exports.THREE_COLUMNS_LAYOUT_MENU_ITEM = exports.TEXT_FORMATTING_SECTION = exports.TABLE_MENU_ITEM = exports.SYNCED_BLOCK_MENU_ITEM = exports.SUCCESS_PANEL_MENU_ITEM = exports.STRUCTURE_SECTION = exports.STATUS_MENU_ITEM = exports.RULE_MENU_ITEM = exports.ROVO_SECTION = exports.RECOMMENDED_SECTION = exports.PLACEHOLDER_TEXT_MENU_ITEM = exports.OTHER_SECTION = exports.ORDERED_LIST_MENU_ITEM = exports.NOTE_PANEL_MENU_ITEM = exports.MENU = exports.MENTION_MENU_ITEM = exports.MEDIA_SECTION = exports.MEDIA_INSERT_MENU_ITEM = exports.LOOM_MENU_ITEM = exports.JIRA_WORK_ITEMS_MENU_ITEM = exports.INFO_PANEL_MENU_ITEM = exports.HYPERLINK_MENU_ITEM = exports.HELP_DIALOG_MENU_ITEM = exports.HEADING_6_MENU_ITEM = exports.HEADING_5_MENU_ITEM = exports.HEADING_4_MENU_ITEM = exports.HEADING_3_MENU_ITEM = exports.HEADING_2_MENU_ITEM = exports.HEADING_1_MENU_ITEM = exports.FOUR_COLUMNS_LAYOUT_MENU_ITEM = exports.FIVE_COLUMNS_LAYOUT_MENU_ITEM = exports.EXPAND_MENU_ITEM = exports.ERROR_PANEL_MENU_ITEM = exports.EMOJI_MENU_ITEM = exports.EMBED_SECTION = exports.DECISION_MENU_ITEM = exports.DATE_MENU_ITEM = exports.DATA_AND_CHARTS_SECTION = exports.CUSTOM_PANEL_MENU_ITEM = exports.CODE_BLOCK_MENU_ITEM = exports.BLOCK_TEMPLATES_SECTION = exports.BLOCKQUOTE_MENU_ITEM = exports.ASSETS_MENU_ITEM = exports.ASK_ROVO_MENU_ITEM = exports.AI_IMAGE_GENERATION_MENU_ITEM = exports.ACTION_MENU_ITEM = void 0;
|
|
6
|
+
exports.getBlockTemplateMenuItem = exports.WARNING_PANEL_MENU_ITEM = exports.VIEW_ALL_ELEMENTS_MENU_ITEM = exports.UNORDERED_LIST_MENU_ITEM = exports.TWO_COLUMNS_LAYOUT_MENU_ITEM = exports.THREE_COLUMNS_LAYOUT_MENU_ITEM = exports.TEXT_FORMATTING_SECTION = exports.TABLE_MENU_ITEM = exports.SYNCED_BLOCK_MENU_ITEM = exports.SUCCESS_PANEL_MENU_ITEM = exports.STRUCTURE_SECTION = exports.STATUS_MENU_ITEM = exports.RULE_MENU_ITEM = exports.ROVO_SECTION = exports.RECOMMENDED_SECTION = exports.PLACEHOLDER_TEXT_MENU_ITEM = exports.OTHER_SECTION = exports.ORDERED_LIST_MENU_ITEM = exports.NOTE_PANEL_MENU_ITEM = exports.MENU = exports.MENTION_MENU_ITEM = exports.MEDIA_SECTION = exports.MEDIA_INSERT_MENU_ITEM = exports.LOOM_MENU_ITEM = exports.JIRA_WORK_ITEMS_MENU_ITEM = exports.INFO_PANEL_MENU_ITEM = exports.HYPERLINK_MENU_ITEM = exports.HELP_DIALOG_MENU_ITEM = exports.HEADING_6_MENU_ITEM = exports.HEADING_5_MENU_ITEM = exports.HEADING_4_MENU_ITEM = exports.HEADING_3_MENU_ITEM = exports.HEADING_2_MENU_ITEM = exports.HEADING_1_MENU_ITEM = exports.FOUR_COLUMNS_LAYOUT_MENU_ITEM = exports.FIVE_COLUMNS_LAYOUT_MENU_ITEM = exports.EXPAND_MENU_ITEM = exports.ERROR_PANEL_MENU_ITEM = exports.EMOJI_MENU_ITEM = exports.EMBED_SECTION = exports.DECISION_MENU_ITEM = exports.DATE_MENU_ITEM = exports.DATA_AND_CHARTS_SECTION = exports.CUSTOM_PANEL_MENU_ITEM = exports.CONFLUENCE_LIST_MENU_ITEM = exports.CODE_BLOCK_MENU_ITEM = exports.BLOCK_TEMPLATES_SECTION = exports.BLOCKQUOTE_MENU_ITEM = exports.ASSETS_MENU_ITEM = exports.ASK_ROVO_MENU_ITEM = exports.AI_IMAGE_GENERATION_MENU_ITEM = exports.ACTION_MENU_ITEM = void 0;
|
|
7
7
|
/* eslint-disable @atlaskit/volt-strict-mode/no-multiple-exports */
|
|
8
8
|
var MENU = exports.MENU = {
|
|
9
9
|
key: 'quick-insert-menu',
|
|
@@ -201,6 +201,10 @@ var ASSETS_MENU_ITEM = exports.ASSETS_MENU_ITEM = {
|
|
|
201
201
|
key: 'quick-insert-assets-menu-item',
|
|
202
202
|
type: 'menu-item'
|
|
203
203
|
};
|
|
204
|
+
var CONFLUENCE_LIST_MENU_ITEM = exports.CONFLUENCE_LIST_MENU_ITEM = {
|
|
205
|
+
key: 'quick-insert-confluence-list-menu-item',
|
|
206
|
+
type: 'menu-item'
|
|
207
|
+
};
|
|
204
208
|
var HELP_DIALOG_MENU_ITEM = exports.HELP_DIALOG_MENU_ITEM = {
|
|
205
209
|
key: 'quick-insert-help-dialog-menu-item',
|
|
206
210
|
type: 'menu-item'
|
|
@@ -14,7 +14,7 @@ var STRUCTURE_SECTION_RANK = exports.STRUCTURE_SECTION_RANK = (_STRUCTURE_SECTIO
|
|
|
14
14
|
var MEDIA_SECTION_RANK = exports.MEDIA_SECTION_RANK = (0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)({}, _keys.MEDIA_INSERT_MENU_ITEM.key, 100), _keys.HYPERLINK_MENU_ITEM.key, 200), _keys.EMOJI_MENU_ITEM.key, 300), _keys.LOOM_MENU_ITEM.key, 400), _keys.MENTION_MENU_ITEM.key, 1500), _keys.AI_IMAGE_GENERATION_MENU_ITEM.key, 1600);
|
|
15
15
|
var TEXT_FORMATTING_SECTION_RANK = exports.TEXT_FORMATTING_SECTION_RANK = (0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)({}, _keys.HEADING_1_MENU_ITEM.key, 100), _keys.HEADING_2_MENU_ITEM.key, 200), _keys.HEADING_3_MENU_ITEM.key, 300), _keys.HEADING_4_MENU_ITEM.key, 400), _keys.HEADING_5_MENU_ITEM.key, 500), _keys.HEADING_6_MENU_ITEM.key, 600), _keys.BLOCKQUOTE_MENU_ITEM.key, 700), _keys.PLACEHOLDER_TEXT_MENU_ITEM.key, 900), _keys.UNORDERED_LIST_MENU_ITEM.key, 1100), _keys.ORDERED_LIST_MENU_ITEM.key, 1200);
|
|
16
16
|
var ROVO_SECTION_RANK = exports.ROVO_SECTION_RANK = (0, _defineProperty2.default)({}, _keys.ASK_ROVO_MENU_ITEM.key, 100);
|
|
17
|
-
var DATA_AND_CHARTS_SECTION_RANK = exports.DATA_AND_CHARTS_SECTION_RANK = (0, _defineProperty2.default)((0, _defineProperty2.default)({}, _keys.JIRA_WORK_ITEMS_MENU_ITEM.key, 300), _keys.ASSETS_MENU_ITEM.key, 500);
|
|
17
|
+
var DATA_AND_CHARTS_SECTION_RANK = exports.DATA_AND_CHARTS_SECTION_RANK = (0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)({}, _keys.JIRA_WORK_ITEMS_MENU_ITEM.key, 300), _keys.CONFLUENCE_LIST_MENU_ITEM.key, 400), _keys.ASSETS_MENU_ITEM.key, 500);
|
|
18
18
|
var OTHER_SECTION_RANK = exports.OTHER_SECTION_RANK = (0, _defineProperty2.default)({}, _keys.HELP_DIALOG_MENU_ITEM.key, 100);
|
|
19
19
|
var EXTENSION_ITEM_RANK = exports.EXTENSION_ITEM_RANK = 1500;
|
|
20
20
|
var CATEGORY_VIEW_MORE_RANK = exports.CATEGORY_VIEW_MORE_RANK = Number.MAX_SAFE_INTEGER;
|
|
@@ -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 = "120.
|
|
27
|
+
var packageVersion = "120.16.1";
|
|
28
28
|
var halfFocusRing = 1;
|
|
29
29
|
var dropOffset = '0, 8';
|
|
30
30
|
var fadeIn = (0, _react2.keyframes)({
|
|
@@ -145,6 +145,16 @@ export const aiSuggestionsMessages = defineMessages({
|
|
|
145
145
|
defaultMessage: 'Visible only to you',
|
|
146
146
|
description: 'Tooltip shown on the private indicator icon in the AI suggestions card'
|
|
147
147
|
},
|
|
148
|
+
cardRestrictedLabel: {
|
|
149
|
+
id: 'fabric.editor.ai.suggestions.card.restrictedLabel.non-final',
|
|
150
|
+
defaultMessage: 'Restricted',
|
|
151
|
+
description: 'Label for the restricted suggestion lozenge'
|
|
152
|
+
},
|
|
153
|
+
cardRestrictedTooltipLabel: {
|
|
154
|
+
id: 'fabric.editor.ai.suggestions.card.restrictedTooltip.non-final',
|
|
155
|
+
defaultMessage: 'Only editors with access to the source can see this suggestion',
|
|
156
|
+
description: 'Tooltip for the restricted suggestion lozenge'
|
|
157
|
+
},
|
|
148
158
|
cardDetailsButtonLabel: {
|
|
149
159
|
id: 'fabric.editor.ai.suggestions.card.detailsButtonLabel.non-final',
|
|
150
160
|
defaultMessage: 'Details',
|
|
@@ -7,6 +7,7 @@ export { annotationMessages } from './annotation';
|
|
|
7
7
|
export { messages as breakoutMessages } from './breakout';
|
|
8
8
|
export { messages as blockMenuMessages } from './block-menu';
|
|
9
9
|
export { messages as blockTypeMessages } from './block-type';
|
|
10
|
+
export { templateGalleryMessages } from './snippets';
|
|
10
11
|
export { codeBidiWarningMessages } from './codeBidiWarning';
|
|
11
12
|
export { colorAccessibilityMessages } from './color-accessibility';
|
|
12
13
|
export { colorPickerButtonMessages } from './color-picker-button';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { defineMessages } from 'react-intl';
|
|
2
|
+
export const templateGalleryMessages = defineMessages({
|
|
3
|
+
blockTemplates: {
|
|
4
|
+
id: 'editor-plugin-snippets.snippetsPlugin.blockTemplates',
|
|
5
|
+
defaultMessage: 'Block templates',
|
|
6
|
+
description: 'Label for the block templates submenu in the block menu'
|
|
7
|
+
},
|
|
8
|
+
browseTemplates: {
|
|
9
|
+
id: 'editor-plugin-snippets.snippetsPlugin.browseTemplates',
|
|
10
|
+
defaultMessage: 'Browse all templates',
|
|
11
|
+
description: 'Label for the action that opens the block template gallery'
|
|
12
|
+
},
|
|
13
|
+
newLozenge: {
|
|
14
|
+
id: 'editor-plugin-snippets.snippetsPlugin.newLozenge',
|
|
15
|
+
defaultMessage: 'New',
|
|
16
|
+
description: 'Lozenge label for the block templates menu item'
|
|
17
|
+
},
|
|
18
|
+
templateGalleryDescription: {
|
|
19
|
+
id: 'editor-plugin-snippets.snippetsPlugin.templateGalleryDescription',
|
|
20
|
+
defaultMessage: 'Create, discover, & insert block templates',
|
|
21
|
+
description: 'Description for the block template gallery quick insert item'
|
|
22
|
+
},
|
|
23
|
+
templateGalleryTitle: {
|
|
24
|
+
id: 'editor-plugin-snippets.snippetsPlugin.templateGalleryTitle',
|
|
25
|
+
defaultMessage: 'Block Template Gallery',
|
|
26
|
+
description: 'Title for the block template gallery quick insert item'
|
|
27
|
+
}
|
|
28
|
+
});
|
|
@@ -13,7 +13,7 @@ const NETWORK_FAILURE_REGEX = /^network failure/i;
|
|
|
13
13
|
const RESIZE_OBSERVER_LOOP_REGEX = /ResizeObserver loop completed with undelivered notifications/;
|
|
14
14
|
const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
15
15
|
const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
16
|
-
const packageVersion = "120.
|
|
16
|
+
const packageVersion = "120.16.1";
|
|
17
17
|
const sanitiseSentryEvents = (data, _hint) => {
|
|
18
18
|
// Remove URL as it has UGC
|
|
19
19
|
// Ignored via go/ees007
|
|
@@ -195,6 +195,10 @@ export const ASSETS_MENU_ITEM = {
|
|
|
195
195
|
key: 'quick-insert-assets-menu-item',
|
|
196
196
|
type: 'menu-item'
|
|
197
197
|
};
|
|
198
|
+
export const CONFLUENCE_LIST_MENU_ITEM = {
|
|
199
|
+
key: 'quick-insert-confluence-list-menu-item',
|
|
200
|
+
type: 'menu-item'
|
|
201
|
+
};
|
|
198
202
|
export const HELP_DIALOG_MENU_ITEM = {
|
|
199
203
|
key: 'quick-insert-help-dialog-menu-item',
|
|
200
204
|
type: 'menu-item'
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* eslint-disable @atlaskit/volt-strict-mode/no-multiple-exports */
|
|
2
|
-
import { ACTION_MENU_ITEM, AI_IMAGE_GENERATION_MENU_ITEM, ASK_ROVO_MENU_ITEM, ASSETS_MENU_ITEM, BLOCKQUOTE_MENU_ITEM, BLOCK_TEMPLATES_SECTION, CODE_BLOCK_MENU_ITEM, CUSTOM_PANEL_MENU_ITEM, DATE_MENU_ITEM, DATA_AND_CHARTS_SECTION, DECISION_MENU_ITEM, EMBED_SECTION, EMOJI_MENU_ITEM, ERROR_PANEL_MENU_ITEM, EXPAND_MENU_ITEM, FIVE_COLUMNS_LAYOUT_MENU_ITEM, FOUR_COLUMNS_LAYOUT_MENU_ITEM, HEADING_1_MENU_ITEM, HEADING_2_MENU_ITEM, HEADING_3_MENU_ITEM, HEADING_4_MENU_ITEM, HEADING_5_MENU_ITEM, HEADING_6_MENU_ITEM, HELP_DIALOG_MENU_ITEM, HYPERLINK_MENU_ITEM, INFO_PANEL_MENU_ITEM, JIRA_WORK_ITEMS_MENU_ITEM, LOOM_MENU_ITEM, MEDIA_INSERT_MENU_ITEM, MEDIA_SECTION, MENTION_MENU_ITEM, NOTE_PANEL_MENU_ITEM, ORDERED_LIST_MENU_ITEM, OTHER_SECTION, PLACEHOLDER_TEXT_MENU_ITEM, RECOMMENDED_SECTION, ROVO_SECTION, RULE_MENU_ITEM, STATUS_MENU_ITEM, STRUCTURE_SECTION, SUCCESS_PANEL_MENU_ITEM, SYNCED_BLOCK_MENU_ITEM, TABLE_MENU_ITEM, TEXT_FORMATTING_SECTION, THREE_COLUMNS_LAYOUT_MENU_ITEM, TWO_COLUMNS_LAYOUT_MENU_ITEM, UNORDERED_LIST_MENU_ITEM, WARNING_PANEL_MENU_ITEM } from './keys';
|
|
2
|
+
import { ACTION_MENU_ITEM, AI_IMAGE_GENERATION_MENU_ITEM, ASK_ROVO_MENU_ITEM, ASSETS_MENU_ITEM, BLOCKQUOTE_MENU_ITEM, BLOCK_TEMPLATES_SECTION, CODE_BLOCK_MENU_ITEM, CONFLUENCE_LIST_MENU_ITEM, CUSTOM_PANEL_MENU_ITEM, DATE_MENU_ITEM, DATA_AND_CHARTS_SECTION, DECISION_MENU_ITEM, EMBED_SECTION, EMOJI_MENU_ITEM, ERROR_PANEL_MENU_ITEM, EXPAND_MENU_ITEM, FIVE_COLUMNS_LAYOUT_MENU_ITEM, FOUR_COLUMNS_LAYOUT_MENU_ITEM, HEADING_1_MENU_ITEM, HEADING_2_MENU_ITEM, HEADING_3_MENU_ITEM, HEADING_4_MENU_ITEM, HEADING_5_MENU_ITEM, HEADING_6_MENU_ITEM, HELP_DIALOG_MENU_ITEM, HYPERLINK_MENU_ITEM, INFO_PANEL_MENU_ITEM, JIRA_WORK_ITEMS_MENU_ITEM, LOOM_MENU_ITEM, MEDIA_INSERT_MENU_ITEM, MEDIA_SECTION, MENTION_MENU_ITEM, NOTE_PANEL_MENU_ITEM, ORDERED_LIST_MENU_ITEM, OTHER_SECTION, PLACEHOLDER_TEXT_MENU_ITEM, RECOMMENDED_SECTION, ROVO_SECTION, RULE_MENU_ITEM, STATUS_MENU_ITEM, STRUCTURE_SECTION, SUCCESS_PANEL_MENU_ITEM, SYNCED_BLOCK_MENU_ITEM, TABLE_MENU_ITEM, TEXT_FORMATTING_SECTION, THREE_COLUMNS_LAYOUT_MENU_ITEM, TWO_COLUMNS_LAYOUT_MENU_ITEM, UNORDERED_LIST_MENU_ITEM, WARNING_PANEL_MENU_ITEM } from './keys';
|
|
3
3
|
export const QUICK_INSERT_MENU_RANK = {
|
|
4
4
|
[RECOMMENDED_SECTION.key]: 0,
|
|
5
5
|
[STRUCTURE_SECTION.key]: 1,
|
|
@@ -57,6 +57,7 @@ export const ROVO_SECTION_RANK = {
|
|
|
57
57
|
};
|
|
58
58
|
export const DATA_AND_CHARTS_SECTION_RANK = {
|
|
59
59
|
[JIRA_WORK_ITEMS_MENU_ITEM.key]: 300,
|
|
60
|
+
[CONFLUENCE_LIST_MENU_ITEM.key]: 400,
|
|
60
61
|
[ASSETS_MENU_ITEM.key]: 500
|
|
61
62
|
};
|
|
62
63
|
export const OTHER_SECTION_RANK = {
|
|
@@ -14,7 +14,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
|
14
14
|
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
15
15
|
import Layer from '../Layer';
|
|
16
16
|
const packageName = "@atlaskit/editor-common";
|
|
17
|
-
const packageVersion = "120.
|
|
17
|
+
const packageVersion = "120.16.1";
|
|
18
18
|
const halfFocusRing = 1;
|
|
19
19
|
const dropOffset = '0, 8';
|
|
20
20
|
const fadeIn = keyframes({
|
|
@@ -145,6 +145,16 @@ export var aiSuggestionsMessages = defineMessages({
|
|
|
145
145
|
defaultMessage: 'Visible only to you',
|
|
146
146
|
description: 'Tooltip shown on the private indicator icon in the AI suggestions card'
|
|
147
147
|
},
|
|
148
|
+
cardRestrictedLabel: {
|
|
149
|
+
id: 'fabric.editor.ai.suggestions.card.restrictedLabel.non-final',
|
|
150
|
+
defaultMessage: 'Restricted',
|
|
151
|
+
description: 'Label for the restricted suggestion lozenge'
|
|
152
|
+
},
|
|
153
|
+
cardRestrictedTooltipLabel: {
|
|
154
|
+
id: 'fabric.editor.ai.suggestions.card.restrictedTooltip.non-final',
|
|
155
|
+
defaultMessage: 'Only editors with access to the source can see this suggestion',
|
|
156
|
+
description: 'Tooltip for the restricted suggestion lozenge'
|
|
157
|
+
},
|
|
148
158
|
cardDetailsButtonLabel: {
|
|
149
159
|
id: 'fabric.editor.ai.suggestions.card.detailsButtonLabel.non-final',
|
|
150
160
|
defaultMessage: 'Details',
|
|
@@ -7,6 +7,7 @@ export { annotationMessages } from './annotation';
|
|
|
7
7
|
export { messages as breakoutMessages } from './breakout';
|
|
8
8
|
export { messages as blockMenuMessages } from './block-menu';
|
|
9
9
|
export { messages as blockTypeMessages } from './block-type';
|
|
10
|
+
export { templateGalleryMessages } from './snippets';
|
|
10
11
|
export { codeBidiWarningMessages } from './codeBidiWarning';
|
|
11
12
|
export { colorAccessibilityMessages } from './color-accessibility';
|
|
12
13
|
export { colorPickerButtonMessages } from './color-picker-button';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { defineMessages } from 'react-intl';
|
|
2
|
+
export var templateGalleryMessages = defineMessages({
|
|
3
|
+
blockTemplates: {
|
|
4
|
+
id: 'editor-plugin-snippets.snippetsPlugin.blockTemplates',
|
|
5
|
+
defaultMessage: 'Block templates',
|
|
6
|
+
description: 'Label for the block templates submenu in the block menu'
|
|
7
|
+
},
|
|
8
|
+
browseTemplates: {
|
|
9
|
+
id: 'editor-plugin-snippets.snippetsPlugin.browseTemplates',
|
|
10
|
+
defaultMessage: 'Browse all templates',
|
|
11
|
+
description: 'Label for the action that opens the block template gallery'
|
|
12
|
+
},
|
|
13
|
+
newLozenge: {
|
|
14
|
+
id: 'editor-plugin-snippets.snippetsPlugin.newLozenge',
|
|
15
|
+
defaultMessage: 'New',
|
|
16
|
+
description: 'Lozenge label for the block templates menu item'
|
|
17
|
+
},
|
|
18
|
+
templateGalleryDescription: {
|
|
19
|
+
id: 'editor-plugin-snippets.snippetsPlugin.templateGalleryDescription',
|
|
20
|
+
defaultMessage: 'Create, discover, & insert block templates',
|
|
21
|
+
description: 'Description for the block template gallery quick insert item'
|
|
22
|
+
},
|
|
23
|
+
templateGalleryTitle: {
|
|
24
|
+
id: 'editor-plugin-snippets.snippetsPlugin.templateGalleryTitle',
|
|
25
|
+
defaultMessage: 'Block Template Gallery',
|
|
26
|
+
description: 'Title for the block template gallery quick insert item'
|
|
27
|
+
}
|
|
28
|
+
});
|
|
@@ -19,7 +19,7 @@ var NETWORK_FAILURE_REGEX = /^network failure/i;
|
|
|
19
19
|
var RESIZE_OBSERVER_LOOP_REGEX = /ResizeObserver loop completed with undelivered notifications/;
|
|
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 = "120.
|
|
22
|
+
var packageVersion = "120.16.1";
|
|
23
23
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
24
24
|
// Remove URL as it has UGC
|
|
25
25
|
// Ignored via go/ees007
|
|
@@ -195,6 +195,10 @@ export var ASSETS_MENU_ITEM = {
|
|
|
195
195
|
key: 'quick-insert-assets-menu-item',
|
|
196
196
|
type: 'menu-item'
|
|
197
197
|
};
|
|
198
|
+
export var CONFLUENCE_LIST_MENU_ITEM = {
|
|
199
|
+
key: 'quick-insert-confluence-list-menu-item',
|
|
200
|
+
type: 'menu-item'
|
|
201
|
+
};
|
|
198
202
|
export var HELP_DIALOG_MENU_ITEM = {
|
|
199
203
|
key: 'quick-insert-help-dialog-menu-item',
|
|
200
204
|
type: 'menu-item'
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
2
|
var _STRUCTURE_SECTION_RA;
|
|
3
3
|
/* eslint-disable @atlaskit/volt-strict-mode/no-multiple-exports */
|
|
4
|
-
import { ACTION_MENU_ITEM, AI_IMAGE_GENERATION_MENU_ITEM, ASK_ROVO_MENU_ITEM, ASSETS_MENU_ITEM, BLOCKQUOTE_MENU_ITEM, BLOCK_TEMPLATES_SECTION, CODE_BLOCK_MENU_ITEM, CUSTOM_PANEL_MENU_ITEM, DATE_MENU_ITEM, DATA_AND_CHARTS_SECTION, DECISION_MENU_ITEM, EMBED_SECTION, EMOJI_MENU_ITEM, ERROR_PANEL_MENU_ITEM, EXPAND_MENU_ITEM, FIVE_COLUMNS_LAYOUT_MENU_ITEM, FOUR_COLUMNS_LAYOUT_MENU_ITEM, HEADING_1_MENU_ITEM, HEADING_2_MENU_ITEM, HEADING_3_MENU_ITEM, HEADING_4_MENU_ITEM, HEADING_5_MENU_ITEM, HEADING_6_MENU_ITEM, HELP_DIALOG_MENU_ITEM, HYPERLINK_MENU_ITEM, INFO_PANEL_MENU_ITEM, JIRA_WORK_ITEMS_MENU_ITEM, LOOM_MENU_ITEM, MEDIA_INSERT_MENU_ITEM, MEDIA_SECTION, MENTION_MENU_ITEM, NOTE_PANEL_MENU_ITEM, ORDERED_LIST_MENU_ITEM, OTHER_SECTION, PLACEHOLDER_TEXT_MENU_ITEM, RECOMMENDED_SECTION, ROVO_SECTION, RULE_MENU_ITEM, STATUS_MENU_ITEM, STRUCTURE_SECTION, SUCCESS_PANEL_MENU_ITEM, SYNCED_BLOCK_MENU_ITEM, TABLE_MENU_ITEM, TEXT_FORMATTING_SECTION, THREE_COLUMNS_LAYOUT_MENU_ITEM, TWO_COLUMNS_LAYOUT_MENU_ITEM, UNORDERED_LIST_MENU_ITEM, WARNING_PANEL_MENU_ITEM } from './keys';
|
|
4
|
+
import { ACTION_MENU_ITEM, AI_IMAGE_GENERATION_MENU_ITEM, ASK_ROVO_MENU_ITEM, ASSETS_MENU_ITEM, BLOCKQUOTE_MENU_ITEM, BLOCK_TEMPLATES_SECTION, CODE_BLOCK_MENU_ITEM, CONFLUENCE_LIST_MENU_ITEM, CUSTOM_PANEL_MENU_ITEM, DATE_MENU_ITEM, DATA_AND_CHARTS_SECTION, DECISION_MENU_ITEM, EMBED_SECTION, EMOJI_MENU_ITEM, ERROR_PANEL_MENU_ITEM, EXPAND_MENU_ITEM, FIVE_COLUMNS_LAYOUT_MENU_ITEM, FOUR_COLUMNS_LAYOUT_MENU_ITEM, HEADING_1_MENU_ITEM, HEADING_2_MENU_ITEM, HEADING_3_MENU_ITEM, HEADING_4_MENU_ITEM, HEADING_5_MENU_ITEM, HEADING_6_MENU_ITEM, HELP_DIALOG_MENU_ITEM, HYPERLINK_MENU_ITEM, INFO_PANEL_MENU_ITEM, JIRA_WORK_ITEMS_MENU_ITEM, LOOM_MENU_ITEM, MEDIA_INSERT_MENU_ITEM, MEDIA_SECTION, MENTION_MENU_ITEM, NOTE_PANEL_MENU_ITEM, ORDERED_LIST_MENU_ITEM, OTHER_SECTION, PLACEHOLDER_TEXT_MENU_ITEM, RECOMMENDED_SECTION, ROVO_SECTION, RULE_MENU_ITEM, STATUS_MENU_ITEM, STRUCTURE_SECTION, SUCCESS_PANEL_MENU_ITEM, SYNCED_BLOCK_MENU_ITEM, TABLE_MENU_ITEM, TEXT_FORMATTING_SECTION, THREE_COLUMNS_LAYOUT_MENU_ITEM, TWO_COLUMNS_LAYOUT_MENU_ITEM, UNORDERED_LIST_MENU_ITEM, WARNING_PANEL_MENU_ITEM } from './keys';
|
|
5
5
|
export var QUICK_INSERT_MENU_RANK = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, RECOMMENDED_SECTION.key, 0), STRUCTURE_SECTION.key, 1), MEDIA_SECTION.key, 2), EMBED_SECTION.key, 3), TEXT_FORMATTING_SECTION.key, 4), ROVO_SECTION.key, 5), DATA_AND_CHARTS_SECTION.key, 6), BLOCK_TEMPLATES_SECTION.key, 7), OTHER_SECTION.key, 8);
|
|
6
6
|
export var STRUCTURE_SECTION_RANK = (_STRUCTURE_SECTION_RA = {}, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_STRUCTURE_SECTION_RA, ACTION_MENU_ITEM.key, 100), TABLE_MENU_ITEM.key, 200), STATUS_MENU_ITEM.key, 300), DATE_MENU_ITEM.key, 400), EXPAND_MENU_ITEM.key, 700), CODE_BLOCK_MENU_ITEM.key, 800), INFO_PANEL_MENU_ITEM.key, 900), NOTE_PANEL_MENU_ITEM.key, 1000), SUCCESS_PANEL_MENU_ITEM.key, 1100), WARNING_PANEL_MENU_ITEM.key, 1200), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_STRUCTURE_SECTION_RA, ERROR_PANEL_MENU_ITEM.key, 1300), CUSTOM_PANEL_MENU_ITEM.key, 1400), TWO_COLUMNS_LAYOUT_MENU_ITEM.key, 1500), THREE_COLUMNS_LAYOUT_MENU_ITEM.key, 1600), FOUR_COLUMNS_LAYOUT_MENU_ITEM.key, 1700), FIVE_COLUMNS_LAYOUT_MENU_ITEM.key, 1800), SYNCED_BLOCK_MENU_ITEM.key, 2300), RULE_MENU_ITEM.key, 2400), DECISION_MENU_ITEM.key, 2800));
|
|
7
7
|
export var MEDIA_SECTION_RANK = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, MEDIA_INSERT_MENU_ITEM.key, 100), HYPERLINK_MENU_ITEM.key, 200), EMOJI_MENU_ITEM.key, 300), LOOM_MENU_ITEM.key, 400), MENTION_MENU_ITEM.key, 1500), AI_IMAGE_GENERATION_MENU_ITEM.key, 1600);
|
|
8
8
|
export var TEXT_FORMATTING_SECTION_RANK = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, HEADING_1_MENU_ITEM.key, 100), HEADING_2_MENU_ITEM.key, 200), HEADING_3_MENU_ITEM.key, 300), HEADING_4_MENU_ITEM.key, 400), HEADING_5_MENU_ITEM.key, 500), HEADING_6_MENU_ITEM.key, 600), BLOCKQUOTE_MENU_ITEM.key, 700), PLACEHOLDER_TEXT_MENU_ITEM.key, 900), UNORDERED_LIST_MENU_ITEM.key, 1100), ORDERED_LIST_MENU_ITEM.key, 1200);
|
|
9
9
|
export var ROVO_SECTION_RANK = _defineProperty({}, ASK_ROVO_MENU_ITEM.key, 100);
|
|
10
|
-
export var DATA_AND_CHARTS_SECTION_RANK = _defineProperty(_defineProperty({}, JIRA_WORK_ITEMS_MENU_ITEM.key, 300), ASSETS_MENU_ITEM.key, 500);
|
|
10
|
+
export var DATA_AND_CHARTS_SECTION_RANK = _defineProperty(_defineProperty(_defineProperty({}, JIRA_WORK_ITEMS_MENU_ITEM.key, 300), CONFLUENCE_LIST_MENU_ITEM.key, 400), ASSETS_MENU_ITEM.key, 500);
|
|
11
11
|
export var OTHER_SECTION_RANK = _defineProperty({}, HELP_DIALOG_MENU_ITEM.key, 100);
|
|
12
12
|
export var EXTENSION_ITEM_RANK = 1500;
|
|
13
13
|
export var CATEGORY_VIEW_MORE_RANK = Number.MAX_SAFE_INTEGER;
|
|
@@ -21,7 +21,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
|
21
21
|
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
22
22
|
import Layer from '../Layer';
|
|
23
23
|
var packageName = "@atlaskit/editor-common";
|
|
24
|
-
var packageVersion = "120.
|
|
24
|
+
var packageVersion = "120.16.1";
|
|
25
25
|
var halfFocusRing = 1;
|
|
26
26
|
var dropOffset = '0, 8';
|
|
27
27
|
var fadeIn = keyframes({
|
|
@@ -89,6 +89,16 @@ export declare const aiSuggestionsMessages: {
|
|
|
89
89
|
description: string;
|
|
90
90
|
id: string;
|
|
91
91
|
};
|
|
92
|
+
cardRestrictedLabel: {
|
|
93
|
+
defaultMessage: string;
|
|
94
|
+
description: string;
|
|
95
|
+
id: string;
|
|
96
|
+
};
|
|
97
|
+
cardRestrictedTooltipLabel: {
|
|
98
|
+
defaultMessage: string;
|
|
99
|
+
description: string;
|
|
100
|
+
id: string;
|
|
101
|
+
};
|
|
92
102
|
/**
|
|
93
103
|
* @private
|
|
94
104
|
* @deprecated The suggestion card no longer displays a Rovo text label.
|
|
@@ -3,6 +3,7 @@ export { annotationMessages } from './annotation';
|
|
|
3
3
|
export { messages as breakoutMessages } from './breakout';
|
|
4
4
|
export { messages as blockMenuMessages } from './block-menu';
|
|
5
5
|
export { messages as blockTypeMessages } from './block-type';
|
|
6
|
+
export { templateGalleryMessages } from './snippets';
|
|
6
7
|
export { codeBidiWarningMessages } from './codeBidiWarning';
|
|
7
8
|
export { colorAccessibilityMessages } from './color-accessibility';
|
|
8
9
|
export { colorPickerButtonMessages } from './color-picker-button';
|
|
@@ -194,6 +194,10 @@ export declare const ASSETS_MENU_ITEM: {
|
|
|
194
194
|
readonly key: 'quick-insert-assets-menu-item';
|
|
195
195
|
readonly type: 'menu-item';
|
|
196
196
|
};
|
|
197
|
+
export declare const CONFLUENCE_LIST_MENU_ITEM: {
|
|
198
|
+
readonly key: 'quick-insert-confluence-list-menu-item';
|
|
199
|
+
readonly type: 'menu-item';
|
|
200
|
+
};
|
|
197
201
|
export declare const HELP_DIALOG_MENU_ITEM: {
|
|
198
202
|
readonly key: 'quick-insert-help-dialog-menu-item';
|
|
199
203
|
readonly type: 'menu-item';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-common",
|
|
3
|
-
"version": "120.
|
|
3
|
+
"version": "120.16.2",
|
|
4
4
|
"description": "A package that contains common classes and components for editor and renderer",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@atlaskit/editor-toolbar": "^2.6.0",
|
|
51
51
|
"@atlaskit/editor-toolbar-model": "^1.2.0",
|
|
52
52
|
"@atlaskit/editor-ui-control-model": "^2.9.0",
|
|
53
|
-
"@atlaskit/emoji": "^72.
|
|
53
|
+
"@atlaskit/emoji": "^72.3.0",
|
|
54
54
|
"@atlaskit/feature-gate-js-client": "^6.0.0",
|
|
55
55
|
"@atlaskit/icon": "^37.6.0",
|
|
56
56
|
"@atlaskit/link": "^5.1.0",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"@atlaskit/task-decision": "^21.9.0",
|
|
85
85
|
"@atlaskit/teams-app-config": "^3.1.0",
|
|
86
86
|
"@atlaskit/textfield": "^10.2.0",
|
|
87
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
87
|
+
"@atlaskit/tmp-editor-statsig": "^177.0.0",
|
|
88
88
|
"@atlaskit/tokens": "^16.11.0",
|
|
89
89
|
"@atlaskit/tooltip": "^24.3.0",
|
|
90
90
|
"@atlaskit/width-detector": "^7.2.0",
|