@atlaskit/editor-common 102.7.2 → 102.9.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 +27 -0
- package/dist/cjs/ai-messages/ai-experience-application.js +10 -0
- package/dist/cjs/analytics/types/enums.js +1 -0
- package/dist/cjs/messages/insert-block.js +5 -0
- package/dist/cjs/messages/layout.js +6 -1
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/es2019/ai-messages/ai-experience-application.js +10 -0
- package/dist/es2019/analytics/types/enums.js +1 -0
- package/dist/es2019/messages/insert-block.js +5 -0
- package/dist/es2019/messages/layout.js +6 -1
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/esm/ai-messages/ai-experience-application.js +10 -0
- package/dist/esm/analytics/types/enums.js +1 -0
- package/dist/esm/messages/insert-block.js +5 -0
- package/dist/esm/messages/layout.js +6 -1
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/types/ai-messages/ai-experience-application.d.ts +10 -0
- package/dist/types/analytics/types/enums.d.ts +2 -1
- package/dist/types/messages/insert-block.d.ts +5 -0
- package/dist/types/messages/layout.d.ts +5 -0
- package/dist/types-ts4.5/ai-messages/ai-experience-application.d.ts +10 -0
- package/dist/types-ts4.5/analytics/types/enums.d.ts +2 -1
- package/dist/types-ts4.5/messages/insert-block.d.ts +5 -0
- package/dist/types-ts4.5/messages/layout.d.ts +5 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 102.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#115815](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/115815)
|
|
8
|
+
[`ad7c517ed3b47`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ad7c517ed3b47) -
|
|
9
|
+
ED-26661 add option enables single column layout
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
15
|
+
## 102.8.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- [#125530](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/125530)
|
|
20
|
+
[`15d02ee1c1b7b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/15d02ee1c1b7b) -
|
|
21
|
+
EDF-2567: Add copy for updated group headings in AI command palette.
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- [#127208](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/127208)
|
|
26
|
+
[`c2951b65d3aac`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c2951b65d3aac) -
|
|
27
|
+
[ux] ED-26896 Move list option to link dropdown
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
|
|
3
30
|
## 102.7.2
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
|
@@ -63,6 +63,11 @@ var aiExperienceApplicationMessages = exports.aiExperienceApplicationMessages =
|
|
|
63
63
|
defaultMessage: 'Atlassian Intelligence',
|
|
64
64
|
description: 'Righthand side text for Rovo general knowledge suggestion'
|
|
65
65
|
},
|
|
66
|
+
actionsGroupHeading: {
|
|
67
|
+
id: 'fabric.editor.ai.experience.suggestionGroupHeading.actions',
|
|
68
|
+
defaultMessage: 'Actions',
|
|
69
|
+
description: 'Heading text to indicate that the next set of features are for general AI actions'
|
|
70
|
+
},
|
|
66
71
|
atlassianIntelligenceGroupHeading: {
|
|
67
72
|
id: 'fabric.editor.ai.experience.suggestionGroupHeading.atlassianIntelligence',
|
|
68
73
|
defaultMessage: 'Atlassian intelligence',
|
|
@@ -73,6 +78,11 @@ var aiExperienceApplicationMessages = exports.aiExperienceApplicationMessages =
|
|
|
73
78
|
defaultMessage: 'Knowledge source',
|
|
74
79
|
description: 'Heading text to indicate that the next set of features are for Knowledge source'
|
|
75
80
|
},
|
|
81
|
+
studioGroupHeading: {
|
|
82
|
+
id: 'fabric.editor.ai.experience.suggestionGroupHeading.studio',
|
|
83
|
+
defaultMessage: 'Studio',
|
|
84
|
+
description: 'Heading text to indicate that the next set of features are related to agents.'
|
|
85
|
+
},
|
|
76
86
|
agentsSuggestionGroupHeading: {
|
|
77
87
|
id: 'fabric.editor.ai.experience.suggestionGroupHeading.agents',
|
|
78
88
|
defaultMessage: 'Agents',
|
|
@@ -209,6 +209,7 @@ var INPUT_METHOD = exports.INPUT_METHOD = /*#__PURE__*/function (INPUT_METHOD) {
|
|
|
209
209
|
INPUT_METHOD["BROWSER"] = "browser";
|
|
210
210
|
INPUT_METHOD["DOUBLE_CLICK"] = "doubleClick";
|
|
211
211
|
INPUT_METHOD["INLINE_SUGGESTION_FLOATING_TB"] = "inlineSuggestionFloatingToolbar";
|
|
212
|
+
INPUT_METHOD["PAGE_OVERFLOW_MENU"] = "confluencePageOverflowMenu";
|
|
212
213
|
return INPUT_METHOD;
|
|
213
214
|
}({});
|
|
214
215
|
var INSERT_MEDIA_VIA = exports.INSERT_MEDIA_VIA = /*#__PURE__*/function (INSERT_MEDIA_VIA) {
|
|
@@ -181,6 +181,11 @@ var toolbarInsertBlockMessages = exports.toolbarInsertBlockMessages = (0, _react
|
|
|
181
181
|
defaultMessage: 'Insert {numberOfColumns} equal {numberOfColumns, plural, one {column} other {columns}}',
|
|
182
182
|
description: 'Create a multi column section or layout'
|
|
183
183
|
},
|
|
184
|
+
singleColumnsDescriptionAdvancedLayout: {
|
|
185
|
+
id: 'fabric.editor.columns.advanced.layout.single.description',
|
|
186
|
+
defaultMessage: 'Insert a single column layout',
|
|
187
|
+
description: 'Create a multi column section or layout'
|
|
188
|
+
},
|
|
184
189
|
status: {
|
|
185
190
|
id: 'fabric.editor.status',
|
|
186
191
|
defaultMessage: 'Status',
|
|
@@ -16,6 +16,11 @@ var toolbarMessages = exports.toolbarMessages = (0, _reactIntlNext.defineMessage
|
|
|
16
16
|
defaultMessage: 'Two columns layout',
|
|
17
17
|
description: 'Layout with two columns of equal width'
|
|
18
18
|
},
|
|
19
|
+
singleColumnAdvancedLayout: {
|
|
20
|
+
id: 'fabric.editor.singleColumns',
|
|
21
|
+
defaultMessage: '1 Column layout',
|
|
22
|
+
description: 'Layout with one column of equal width'
|
|
23
|
+
},
|
|
19
24
|
twoColumnsAdvancedLayout: {
|
|
20
25
|
id: 'fabric.editor.twoColumns',
|
|
21
26
|
defaultMessage: '2 Column layout',
|
|
@@ -83,7 +88,7 @@ var toolbarMessages = exports.toolbarMessages = (0, _reactIntlNext.defineMessage
|
|
|
83
88
|
},
|
|
84
89
|
columnOption: {
|
|
85
90
|
id: 'fabric.editor.layout.columnOption',
|
|
86
|
-
defaultMessage: '{count, plural, one { Column} other {{count} Columns}}',
|
|
91
|
+
defaultMessage: '{count, plural, one {{count} Column} other {{count} Columns}}',
|
|
87
92
|
description: 'column option text for layout'
|
|
88
93
|
},
|
|
89
94
|
resizeLayout: {
|
|
@@ -17,7 +17,7 @@ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return
|
|
|
17
17
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
18
18
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
19
19
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
20
|
-
var packageVersion = "102.
|
|
20
|
+
var packageVersion = "102.9.0";
|
|
21
21
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
22
22
|
// Remove URL as it has UGC
|
|
23
23
|
// Ignored via go/ees007
|
|
@@ -23,7 +23,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
|
|
|
23
23
|
* @jsx jsx
|
|
24
24
|
*/ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
25
25
|
var packageName = "@atlaskit/editor-common";
|
|
26
|
-
var packageVersion = "102.
|
|
26
|
+
var packageVersion = "102.9.0";
|
|
27
27
|
var halfFocusRing = 1;
|
|
28
28
|
var dropOffset = '0, 8';
|
|
29
29
|
// Ignored via go/ees005
|
|
@@ -56,6 +56,11 @@ export const aiExperienceApplicationMessages = defineMessages({
|
|
|
56
56
|
defaultMessage: 'Atlassian Intelligence',
|
|
57
57
|
description: 'Righthand side text for Rovo general knowledge suggestion'
|
|
58
58
|
},
|
|
59
|
+
actionsGroupHeading: {
|
|
60
|
+
id: 'fabric.editor.ai.experience.suggestionGroupHeading.actions',
|
|
61
|
+
defaultMessage: 'Actions',
|
|
62
|
+
description: 'Heading text to indicate that the next set of features are for general AI actions'
|
|
63
|
+
},
|
|
59
64
|
atlassianIntelligenceGroupHeading: {
|
|
60
65
|
id: 'fabric.editor.ai.experience.suggestionGroupHeading.atlassianIntelligence',
|
|
61
66
|
defaultMessage: 'Atlassian intelligence',
|
|
@@ -66,6 +71,11 @@ export const aiExperienceApplicationMessages = defineMessages({
|
|
|
66
71
|
defaultMessage: 'Knowledge source',
|
|
67
72
|
description: 'Heading text to indicate that the next set of features are for Knowledge source'
|
|
68
73
|
},
|
|
74
|
+
studioGroupHeading: {
|
|
75
|
+
id: 'fabric.editor.ai.experience.suggestionGroupHeading.studio',
|
|
76
|
+
defaultMessage: 'Studio',
|
|
77
|
+
description: 'Heading text to indicate that the next set of features are related to agents.'
|
|
78
|
+
},
|
|
69
79
|
agentsSuggestionGroupHeading: {
|
|
70
80
|
id: 'fabric.editor.ai.experience.suggestionGroupHeading.agents',
|
|
71
81
|
defaultMessage: 'Agents',
|
|
@@ -203,6 +203,7 @@ export let INPUT_METHOD = /*#__PURE__*/function (INPUT_METHOD) {
|
|
|
203
203
|
INPUT_METHOD["BROWSER"] = "browser";
|
|
204
204
|
INPUT_METHOD["DOUBLE_CLICK"] = "doubleClick";
|
|
205
205
|
INPUT_METHOD["INLINE_SUGGESTION_FLOATING_TB"] = "inlineSuggestionFloatingToolbar";
|
|
206
|
+
INPUT_METHOD["PAGE_OVERFLOW_MENU"] = "confluencePageOverflowMenu";
|
|
206
207
|
return INPUT_METHOD;
|
|
207
208
|
}({});
|
|
208
209
|
export let INSERT_MEDIA_VIA = /*#__PURE__*/function (INSERT_MEDIA_VIA) {
|
|
@@ -175,6 +175,11 @@ export const toolbarInsertBlockMessages = defineMessages({
|
|
|
175
175
|
defaultMessage: 'Insert {numberOfColumns} equal {numberOfColumns, plural, one {column} other {columns}}',
|
|
176
176
|
description: 'Create a multi column section or layout'
|
|
177
177
|
},
|
|
178
|
+
singleColumnsDescriptionAdvancedLayout: {
|
|
179
|
+
id: 'fabric.editor.columns.advanced.layout.single.description',
|
|
180
|
+
defaultMessage: 'Insert a single column layout',
|
|
181
|
+
description: 'Create a multi column section or layout'
|
|
182
|
+
},
|
|
178
183
|
status: {
|
|
179
184
|
id: 'fabric.editor.status',
|
|
180
185
|
defaultMessage: 'Status',
|
|
@@ -10,6 +10,11 @@ export const toolbarMessages = defineMessages({
|
|
|
10
10
|
defaultMessage: 'Two columns layout',
|
|
11
11
|
description: 'Layout with two columns of equal width'
|
|
12
12
|
},
|
|
13
|
+
singleColumnAdvancedLayout: {
|
|
14
|
+
id: 'fabric.editor.singleColumns',
|
|
15
|
+
defaultMessage: '1 Column layout',
|
|
16
|
+
description: 'Layout with one column of equal width'
|
|
17
|
+
},
|
|
13
18
|
twoColumnsAdvancedLayout: {
|
|
14
19
|
id: 'fabric.editor.twoColumns',
|
|
15
20
|
defaultMessage: '2 Column layout',
|
|
@@ -77,7 +82,7 @@ export const toolbarMessages = defineMessages({
|
|
|
77
82
|
},
|
|
78
83
|
columnOption: {
|
|
79
84
|
id: 'fabric.editor.layout.columnOption',
|
|
80
|
-
defaultMessage: '{count, plural, one { Column} other {{count} Columns}}',
|
|
85
|
+
defaultMessage: '{count, plural, one {{count} Column} other {{count} Columns}}',
|
|
81
86
|
description: 'column option text for layout'
|
|
82
87
|
},
|
|
83
88
|
resizeLayout: {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { isFedRamp } from './environment';
|
|
2
2
|
const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
3
3
|
const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
4
|
-
const packageVersion = "102.
|
|
4
|
+
const packageVersion = "102.9.0";
|
|
5
5
|
const sanitiseSentryEvents = (data, _hint) => {
|
|
6
6
|
// Remove URL as it has UGC
|
|
7
7
|
// Ignored via go/ees007
|
|
@@ -13,7 +13,7 @@ import withAnalyticsContext from '@atlaskit/analytics-next/withAnalyticsContext'
|
|
|
13
13
|
import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
14
14
|
import Layer from '../Layer';
|
|
15
15
|
const packageName = "@atlaskit/editor-common";
|
|
16
|
-
const packageVersion = "102.
|
|
16
|
+
const packageVersion = "102.9.0";
|
|
17
17
|
const halfFocusRing = 1;
|
|
18
18
|
const dropOffset = '0, 8';
|
|
19
19
|
// Ignored via go/ees005
|
|
@@ -56,6 +56,11 @@ export var aiExperienceApplicationMessages = defineMessages({
|
|
|
56
56
|
defaultMessage: 'Atlassian Intelligence',
|
|
57
57
|
description: 'Righthand side text for Rovo general knowledge suggestion'
|
|
58
58
|
},
|
|
59
|
+
actionsGroupHeading: {
|
|
60
|
+
id: 'fabric.editor.ai.experience.suggestionGroupHeading.actions',
|
|
61
|
+
defaultMessage: 'Actions',
|
|
62
|
+
description: 'Heading text to indicate that the next set of features are for general AI actions'
|
|
63
|
+
},
|
|
59
64
|
atlassianIntelligenceGroupHeading: {
|
|
60
65
|
id: 'fabric.editor.ai.experience.suggestionGroupHeading.atlassianIntelligence',
|
|
61
66
|
defaultMessage: 'Atlassian intelligence',
|
|
@@ -66,6 +71,11 @@ export var aiExperienceApplicationMessages = defineMessages({
|
|
|
66
71
|
defaultMessage: 'Knowledge source',
|
|
67
72
|
description: 'Heading text to indicate that the next set of features are for Knowledge source'
|
|
68
73
|
},
|
|
74
|
+
studioGroupHeading: {
|
|
75
|
+
id: 'fabric.editor.ai.experience.suggestionGroupHeading.studio',
|
|
76
|
+
defaultMessage: 'Studio',
|
|
77
|
+
description: 'Heading text to indicate that the next set of features are related to agents.'
|
|
78
|
+
},
|
|
69
79
|
agentsSuggestionGroupHeading: {
|
|
70
80
|
id: 'fabric.editor.ai.experience.suggestionGroupHeading.agents',
|
|
71
81
|
defaultMessage: 'Agents',
|
|
@@ -203,6 +203,7 @@ export var INPUT_METHOD = /*#__PURE__*/function (INPUT_METHOD) {
|
|
|
203
203
|
INPUT_METHOD["BROWSER"] = "browser";
|
|
204
204
|
INPUT_METHOD["DOUBLE_CLICK"] = "doubleClick";
|
|
205
205
|
INPUT_METHOD["INLINE_SUGGESTION_FLOATING_TB"] = "inlineSuggestionFloatingToolbar";
|
|
206
|
+
INPUT_METHOD["PAGE_OVERFLOW_MENU"] = "confluencePageOverflowMenu";
|
|
206
207
|
return INPUT_METHOD;
|
|
207
208
|
}({});
|
|
208
209
|
export var INSERT_MEDIA_VIA = /*#__PURE__*/function (INSERT_MEDIA_VIA) {
|
|
@@ -175,6 +175,11 @@ export var toolbarInsertBlockMessages = defineMessages({
|
|
|
175
175
|
defaultMessage: 'Insert {numberOfColumns} equal {numberOfColumns, plural, one {column} other {columns}}',
|
|
176
176
|
description: 'Create a multi column section or layout'
|
|
177
177
|
},
|
|
178
|
+
singleColumnsDescriptionAdvancedLayout: {
|
|
179
|
+
id: 'fabric.editor.columns.advanced.layout.single.description',
|
|
180
|
+
defaultMessage: 'Insert a single column layout',
|
|
181
|
+
description: 'Create a multi column section or layout'
|
|
182
|
+
},
|
|
178
183
|
status: {
|
|
179
184
|
id: 'fabric.editor.status',
|
|
180
185
|
defaultMessage: 'Status',
|
|
@@ -10,6 +10,11 @@ export var toolbarMessages = defineMessages({
|
|
|
10
10
|
defaultMessage: 'Two columns layout',
|
|
11
11
|
description: 'Layout with two columns of equal width'
|
|
12
12
|
},
|
|
13
|
+
singleColumnAdvancedLayout: {
|
|
14
|
+
id: 'fabric.editor.singleColumns',
|
|
15
|
+
defaultMessage: '1 Column layout',
|
|
16
|
+
description: 'Layout with one column of equal width'
|
|
17
|
+
},
|
|
13
18
|
twoColumnsAdvancedLayout: {
|
|
14
19
|
id: 'fabric.editor.twoColumns',
|
|
15
20
|
defaultMessage: '2 Column layout',
|
|
@@ -77,7 +82,7 @@ export var toolbarMessages = defineMessages({
|
|
|
77
82
|
},
|
|
78
83
|
columnOption: {
|
|
79
84
|
id: 'fabric.editor.layout.columnOption',
|
|
80
|
-
defaultMessage: '{count, plural, one { Column} other {{count} Columns}}',
|
|
85
|
+
defaultMessage: '{count, plural, one {{count} Column} other {{count} Columns}}',
|
|
81
86
|
description: 'column option text for layout'
|
|
82
87
|
},
|
|
83
88
|
resizeLayout: {
|
|
@@ -7,7 +7,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
7
7
|
import { isFedRamp } from './environment';
|
|
8
8
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
9
9
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
10
|
-
var packageVersion = "102.
|
|
10
|
+
var packageVersion = "102.9.0";
|
|
11
11
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
12
12
|
// Remove URL as it has UGC
|
|
13
13
|
// Ignored via go/ees007
|
|
@@ -20,7 +20,7 @@ import withAnalyticsContext from '@atlaskit/analytics-next/withAnalyticsContext'
|
|
|
20
20
|
import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
21
21
|
import Layer from '../Layer';
|
|
22
22
|
var packageName = "@atlaskit/editor-common";
|
|
23
|
-
var packageVersion = "102.
|
|
23
|
+
var packageVersion = "102.9.0";
|
|
24
24
|
var halfFocusRing = 1;
|
|
25
25
|
var dropOffset = '0, 8';
|
|
26
26
|
// Ignored via go/ees005
|
|
@@ -54,6 +54,11 @@ export declare const aiExperienceApplicationMessages: {
|
|
|
54
54
|
defaultMessage: string;
|
|
55
55
|
description: string;
|
|
56
56
|
};
|
|
57
|
+
actionsGroupHeading: {
|
|
58
|
+
id: string;
|
|
59
|
+
defaultMessage: string;
|
|
60
|
+
description: string;
|
|
61
|
+
};
|
|
57
62
|
atlassianIntelligenceGroupHeading: {
|
|
58
63
|
id: string;
|
|
59
64
|
defaultMessage: string;
|
|
@@ -64,6 +69,11 @@ export declare const aiExperienceApplicationMessages: {
|
|
|
64
69
|
defaultMessage: string;
|
|
65
70
|
description: string;
|
|
66
71
|
};
|
|
72
|
+
studioGroupHeading: {
|
|
73
|
+
id: string;
|
|
74
|
+
defaultMessage: string;
|
|
75
|
+
description: string;
|
|
76
|
+
};
|
|
67
77
|
agentsSuggestionGroupHeading: {
|
|
68
78
|
id: string;
|
|
69
79
|
defaultMessage: string;
|
|
@@ -219,7 +219,8 @@ export declare enum INPUT_METHOD {
|
|
|
219
219
|
MOUSE = "mouse",
|
|
220
220
|
BROWSER = "browser",
|
|
221
221
|
DOUBLE_CLICK = "doubleClick",
|
|
222
|
-
INLINE_SUGGESTION_FLOATING_TB = "inlineSuggestionFloatingToolbar"
|
|
222
|
+
INLINE_SUGGESTION_FLOATING_TB = "inlineSuggestionFloatingToolbar",
|
|
223
|
+
PAGE_OVERFLOW_MENU = "confluencePageOverflowMenu"
|
|
223
224
|
}
|
|
224
225
|
export declare enum INSERT_MEDIA_VIA {
|
|
225
226
|
LOCAL_UPLOAD = "localUpload",
|
|
@@ -174,6 +174,11 @@ export declare const toolbarInsertBlockMessages: {
|
|
|
174
174
|
defaultMessage: string;
|
|
175
175
|
description: string;
|
|
176
176
|
};
|
|
177
|
+
singleColumnsDescriptionAdvancedLayout: {
|
|
178
|
+
id: string;
|
|
179
|
+
defaultMessage: string;
|
|
180
|
+
description: string;
|
|
181
|
+
};
|
|
177
182
|
status: {
|
|
178
183
|
id: string;
|
|
179
184
|
defaultMessage: string;
|
|
@@ -9,6 +9,11 @@ export declare const toolbarMessages: {
|
|
|
9
9
|
defaultMessage: string;
|
|
10
10
|
description: string;
|
|
11
11
|
};
|
|
12
|
+
singleColumnAdvancedLayout: {
|
|
13
|
+
id: string;
|
|
14
|
+
defaultMessage: string;
|
|
15
|
+
description: string;
|
|
16
|
+
};
|
|
12
17
|
twoColumnsAdvancedLayout: {
|
|
13
18
|
id: string;
|
|
14
19
|
defaultMessage: string;
|
|
@@ -54,6 +54,11 @@ export declare const aiExperienceApplicationMessages: {
|
|
|
54
54
|
defaultMessage: string;
|
|
55
55
|
description: string;
|
|
56
56
|
};
|
|
57
|
+
actionsGroupHeading: {
|
|
58
|
+
id: string;
|
|
59
|
+
defaultMessage: string;
|
|
60
|
+
description: string;
|
|
61
|
+
};
|
|
57
62
|
atlassianIntelligenceGroupHeading: {
|
|
58
63
|
id: string;
|
|
59
64
|
defaultMessage: string;
|
|
@@ -64,6 +69,11 @@ export declare const aiExperienceApplicationMessages: {
|
|
|
64
69
|
defaultMessage: string;
|
|
65
70
|
description: string;
|
|
66
71
|
};
|
|
72
|
+
studioGroupHeading: {
|
|
73
|
+
id: string;
|
|
74
|
+
defaultMessage: string;
|
|
75
|
+
description: string;
|
|
76
|
+
};
|
|
67
77
|
agentsSuggestionGroupHeading: {
|
|
68
78
|
id: string;
|
|
69
79
|
defaultMessage: string;
|
|
@@ -219,7 +219,8 @@ export declare enum INPUT_METHOD {
|
|
|
219
219
|
MOUSE = "mouse",
|
|
220
220
|
BROWSER = "browser",
|
|
221
221
|
DOUBLE_CLICK = "doubleClick",
|
|
222
|
-
INLINE_SUGGESTION_FLOATING_TB = "inlineSuggestionFloatingToolbar"
|
|
222
|
+
INLINE_SUGGESTION_FLOATING_TB = "inlineSuggestionFloatingToolbar",
|
|
223
|
+
PAGE_OVERFLOW_MENU = "confluencePageOverflowMenu"
|
|
223
224
|
}
|
|
224
225
|
export declare enum INSERT_MEDIA_VIA {
|
|
225
226
|
LOCAL_UPLOAD = "localUpload",
|
|
@@ -174,6 +174,11 @@ export declare const toolbarInsertBlockMessages: {
|
|
|
174
174
|
defaultMessage: string;
|
|
175
175
|
description: string;
|
|
176
176
|
};
|
|
177
|
+
singleColumnsDescriptionAdvancedLayout: {
|
|
178
|
+
id: string;
|
|
179
|
+
defaultMessage: string;
|
|
180
|
+
description: string;
|
|
181
|
+
};
|
|
177
182
|
status: {
|
|
178
183
|
id: string;
|
|
179
184
|
defaultMessage: string;
|
|
@@ -9,6 +9,11 @@ export declare const toolbarMessages: {
|
|
|
9
9
|
defaultMessage: string;
|
|
10
10
|
description: string;
|
|
11
11
|
};
|
|
12
|
+
singleColumnAdvancedLayout: {
|
|
13
|
+
id: string;
|
|
14
|
+
defaultMessage: string;
|
|
15
|
+
description: string;
|
|
16
|
+
};
|
|
12
17
|
twoColumnsAdvancedLayout: {
|
|
13
18
|
id: string;
|
|
14
19
|
defaultMessage: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-common",
|
|
3
|
-
"version": "102.
|
|
3
|
+
"version": "102.9.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/"
|
|
@@ -160,7 +160,7 @@
|
|
|
160
160
|
"@atlaskit/spinner": "^18.0.0",
|
|
161
161
|
"@atlaskit/task-decision": "^19.1.0",
|
|
162
162
|
"@atlaskit/textfield": "^8.0.0",
|
|
163
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
163
|
+
"@atlaskit/tmp-editor-statsig": "^4.1.0",
|
|
164
164
|
"@atlaskit/tokens": "^4.5.0",
|
|
165
165
|
"@atlaskit/tooltip": "^20.0.0",
|
|
166
166
|
"@atlaskit/width-detector": "^5.0.0",
|