@atlaskit/editor-common 102.7.1 → 102.8.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 CHANGED
@@ -1,5 +1,26 @@
1
1
  # @atlaskit/editor-common
2
2
 
3
+ ## 102.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#125530](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/125530)
8
+ [`15d02ee1c1b7b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/15d02ee1c1b7b) -
9
+ EDF-2567: Add copy for updated group headings in AI command palette.
10
+
11
+ ### Patch Changes
12
+
13
+ - [#127208](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/127208)
14
+ [`c2951b65d3aac`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c2951b65d3aac) -
15
+ [ux] ED-26896 Move list option to link dropdown
16
+ - Updated dependencies
17
+
18
+ ## 102.7.2
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies
23
+
3
24
  ## 102.7.1
4
25
 
5
26
  ### 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) {
@@ -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.7.1";
20
+ var packageVersion = "102.8.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.7.1";
26
+ var packageVersion = "102.8.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) {
@@ -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.7.1";
4
+ const packageVersion = "102.8.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.7.1";
16
+ const packageVersion = "102.8.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) {
@@ -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.7.1";
10
+ var packageVersion = "102.8.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.7.1";
23
+ var packageVersion = "102.8.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",
@@ -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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common",
3
- "version": "102.7.1",
3
+ "version": "102.8.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/"
@@ -137,7 +137,7 @@
137
137
  "@atlaskit/emoji": "^68.0.0",
138
138
  "@atlaskit/icon": "^25.0.0",
139
139
  "@atlaskit/icon-object": "^7.0.0",
140
- "@atlaskit/link-datasource": "^3.22.0",
140
+ "@atlaskit/link-datasource": "^4.0.0",
141
141
  "@atlaskit/link-picker": "^3.0.0",
142
142
  "@atlaskit/media-card": "^79.0.0",
143
143
  "@atlaskit/media-client": "^32.0.0",
@@ -153,14 +153,14 @@
153
153
  "@atlaskit/platform-feature-flags": "^1.1.0",
154
154
  "@atlaskit/popper": "^7.0.0",
155
155
  "@atlaskit/primitives": "^14.1.0",
156
- "@atlaskit/profilecard": "^23.3.0",
156
+ "@atlaskit/profilecard": "^23.4.0",
157
157
  "@atlaskit/section-message": "^8.1.0",
158
158
  "@atlaskit/smart-card": "^35.2.0",
159
159
  "@atlaskit/smart-user-picker": "^8.0.0",
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": "^3.6.0",
163
+ "@atlaskit/tmp-editor-statsig": "^4.0.0",
164
164
  "@atlaskit/tokens": "^4.5.0",
165
165
  "@atlaskit/tooltip": "^20.0.0",
166
166
  "@atlaskit/width-detector": "^5.0.0",