@atlaskit/editor-common 107.18.0 → 107.18.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.
Files changed (31) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/cjs/ai-messages/ai-failed-state.js +10 -0
  3. package/dist/cjs/ai-messages/ai.js +5 -0
  4. package/dist/cjs/element-browser/components/ElementList/ElementList.js +9 -4
  5. package/dist/cjs/element-browser/components/StatelessElementBrowser.js +5 -2
  6. package/dist/cjs/element-browser/constants.js +3 -2
  7. package/dist/cjs/monitoring/error.js +1 -1
  8. package/dist/cjs/ui/DropList/index.js +1 -1
  9. package/dist/es2019/ai-messages/ai-failed-state.js +10 -0
  10. package/dist/es2019/ai-messages/ai.js +5 -0
  11. package/dist/es2019/element-browser/components/ElementList/ElementList.js +9 -4
  12. package/dist/es2019/element-browser/components/StatelessElementBrowser.js +6 -3
  13. package/dist/es2019/element-browser/constants.js +2 -1
  14. package/dist/es2019/monitoring/error.js +1 -1
  15. package/dist/es2019/ui/DropList/index.js +1 -1
  16. package/dist/esm/ai-messages/ai-failed-state.js +10 -0
  17. package/dist/esm/ai-messages/ai.js +5 -0
  18. package/dist/esm/element-browser/components/ElementList/ElementList.js +9 -4
  19. package/dist/esm/element-browser/components/StatelessElementBrowser.js +6 -3
  20. package/dist/esm/element-browser/constants.js +2 -1
  21. package/dist/esm/monitoring/error.js +1 -1
  22. package/dist/esm/ui/DropList/index.js +1 -1
  23. package/dist/types/ai-messages/ai-failed-state.d.ts +10 -0
  24. package/dist/types/ai-messages/ai.d.ts +5 -0
  25. package/dist/types/element-browser/components/ElementList/ElementList.d.ts +2 -1
  26. package/dist/types/element-browser/constants.d.ts +1 -0
  27. package/dist/types-ts4.5/ai-messages/ai-failed-state.d.ts +10 -0
  28. package/dist/types-ts4.5/ai-messages/ai.d.ts +5 -0
  29. package/dist/types-ts4.5/element-browser/components/ElementList/ElementList.d.ts +2 -1
  30. package/dist/types-ts4.5/element-browser/constants.d.ts +1 -0
  31. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @atlaskit/editor-common
2
2
 
3
+ ## 107.18.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#197821](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/197821)
8
+ [`ceed6696867c2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ceed6696867c2) -
9
+ [ux] [EDITOR-1062] updated error screen design and texts
10
+ - Updated dependencies
11
+
12
+ ## 107.18.1
13
+
14
+ ### Patch Changes
15
+
16
+ - [#197573](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/197573)
17
+ [`066bb4840be19`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/066bb4840be19) -
18
+ [ENGHEALTH-32415] resolve aria issues with element browser
19
+ - Updated dependencies
20
+
3
21
  ## 107.18.0
4
22
 
5
23
  ### Minor Changes
@@ -13,6 +13,11 @@ var aiFailedStateMessages = exports.aiFailedStateMessages = (0, _reactIntlNext.d
13
13
  defaultMessage: 'Your prompt or content might not comply with our Acceptable Use Policy. Please review both and refer to our <link>Acceptable Use Policy</link> if needed. If the problem persists, consider trying a different prompt or content.',
14
14
  description: 'Message to indicate to user their prompt or content (this can be a range of content, such as a selection or document -- we used content to keep it vague -- as this will change without user knowing) has been detected as violating Atlassians acceptable use policy. Note the markdown link -- this is expected to remain as markdown as this string is converted to html.'
15
15
  },
16
+ cmdPaletteAupViolationMessage: {
17
+ id: 'fabric.editor.ai.experience.cmdPaletteAupViolationMessage',
18
+ defaultMessage: "We couldn’t complete that request because it doesn't comply with our <link>Acceptable Use Policy</link>.",
19
+ description: 'Message to indicate to user their prompt or content (this can be a range of content, such as a selection or document -- we used content to keep it vague -- as this will change without user knowing) has been detected as violating Atlassians acceptable use policy. Note the markdown link -- this is expected to remain as markdown as this string is converted to html.'
20
+ },
16
21
  documentInsertError: {
17
22
  id: 'fabric.editor.ai.experience-application.documentInsertError',
18
23
  defaultMessage: "We're having trouble inserting the response. Close the dialog and try again.",
@@ -33,6 +38,11 @@ var aiFailedStateMessages = exports.aiFailedStateMessages = (0, _reactIntlNext.d
33
38
  defaultMessage: "We couldn\u2019t get a response, please try again.",
34
39
  description: "We couldn't get a response due to an api error (ie. the backend responded with an error, or got a timeout)"
35
40
  },
41
+ cmdPaletteApiError: {
42
+ id: 'fabric.editor.ai.experience.cmdPaletteApiError',
43
+ defaultMessage: "An error occurred while generating your response.",
44
+ description: "We couldn't get a response due to an api error (ie. the backend responded with an error, or got a timeout)"
45
+ },
36
46
  elevateDisabledGenerateError: {
37
47
  id: 'fabric.editor.ai.experience.elevateDisabledGenetateError',
38
48
  defaultMessage: "Free generate is disabled in Elevate at this time.",
@@ -198,6 +198,11 @@ var aiMessages = exports.aiMessages = (0, _reactIntlNext.defineMessages)({
198
198
  defaultMessage: "We're having trouble. Close the dialog and try again.",
199
199
  description: 'Message to users that displays when an unexpected error happens'
200
200
  },
201
+ cmdPaletteUnhandledErrorMessage: {
202
+ id: 'fabric.editor.ai.experience-application.cmdPaletteUnhandledErrorMessage',
203
+ defaultMessage: "We're having issues and can't generate a response right now. Try again later.",
204
+ description: 'Message to users that displays when an unexpected error happens'
205
+ },
201
206
  markdownErrorMessage: {
202
207
  id: 'fabric.editor.ai.experience-application.error-boundary.markdownErrorMessage',
203
208
  defaultMessage: "We're having trouble generating the preview. Close the dialog and try again.",
@@ -20,6 +20,7 @@ var _shortcut = require("@atlaskit/editor-shared-styles/shortcut");
20
20
  var _menu = require("@atlaskit/menu");
21
21
  var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
22
22
  var _compiled = require("@atlaskit/primitives/compiled");
23
+ var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
23
24
  var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
24
25
  var _analytics = require("../../../analytics");
25
26
  var _quickInsert = require("../../../quick-insert");
@@ -231,7 +232,8 @@ var ElementListSingleColumn = function ElementListSingleColumn(props) {
231
232
  selected: selectedItemIndex === index,
232
233
  focus: focusedItemIndex === index,
233
234
  setFocusedItemIndex: setFocusedItemIndex,
234
- onInsertItem: onInsertItem
235
+ onInsertItem: onInsertItem,
236
+ role: (0, _expValEquals.expValEquals)('platform_editor_august_a11y', 'isEnabled', true) ? 'option' : undefined
235
237
  })));
236
238
  };
237
239
  },
@@ -361,7 +363,8 @@ function ElementItem(_ref6) {
361
363
  index = _ref6.index,
362
364
  onInsertItem = _ref6.onInsertItem,
363
365
  focus = _ref6.focus,
364
- setFocusedItemIndex = _ref6.setFocusedItemIndex;
366
+ setFocusedItemIndex = _ref6.setFocusedItemIndex,
367
+ role = _ref6.role;
365
368
  var ref = (0, _useFocus.default)(focus);
366
369
 
367
370
  /**
@@ -406,11 +409,13 @@ function ElementItem(_ref6) {
406
409
  title: title
407
410
  }),
408
411
  isSelected: selected,
409
- "aria-describedby": title,
412
+ "aria-describedby": (0, _expValEquals.expValEquals)('platform_editor_august_a11y', 'isEnabled', true) ? undefined : title,
413
+ "aria-label": (0, _expValEquals.expValEquals)('platform_editor_august_a11y', 'isEnabled', true) ? title : undefined,
410
414
  ref: ref,
411
415
  testId: "element-item-".concat(index),
412
416
  id: "searched-item-".concat(index),
413
- isDisabled: isDisabled
417
+ isDisabled: isDisabled,
418
+ role: role
414
419
  }, (0, _react2.jsx)(ItemContent
415
420
  // eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
416
421
  , {
@@ -14,6 +14,7 @@ var _reactIntlNext = require("react-intl-next");
14
14
  var _withAnalyticsContext = _interopRequireDefault(require("@atlaskit/analytics-next/withAnalyticsContext"));
15
15
  var _withAnalyticsEvents = _interopRequireDefault(require("@atlaskit/analytics-next/withAnalyticsEvents"));
16
16
  var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
17
+ var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
17
18
  var _analytics = require("../../analytics");
18
19
  var _getEditorUgcToken = _interopRequireDefault(require("../../ugc-tokens/get-editor-ugc-token"));
19
20
  var _ViewMore = require("../components/ViewMore");
@@ -323,7 +324,8 @@ function MobileBrowser(_ref) {
323
324
  onClick: setFocusOnSearch,
324
325
  searchTerm: searchTerm,
325
326
  items: items,
326
- selectedItemIndex: selectedItemIndex
327
+ selectedItemIndex: selectedItemIndex,
328
+ ariaControlsId: (0, _expValEquals.expValEquals)('platform_editor_august_a11y', 'isEnabled', true) ? _constants.ELEMENT_BROWSER_LIST_ID : undefined
327
329
  }), showCategories && (0, _react2.jsx)("nav", {
328
330
  css: mobileCategoryListWrapper,
329
331
  tabIndex: -1
@@ -336,7 +338,8 @@ function MobileBrowser(_ref) {
336
338
  setFocusedItemIndex: setFocusedItemIndex,
337
339
  setFocusOnSearch: setFocusOnSearch
338
340
  }))), (0, _react2.jsx)("div", {
339
- css: mobileMainContent
341
+ css: mobileMainContent,
342
+ id: (0, _expValEquals.expValEquals)('platform_editor_august_a11y', 'isEnabled', true) ? _constants.ELEMENT_BROWSER_LIST_ID : undefined
340
343
  }, (0, _react2.jsx)(_ElementList.default, {
341
344
  items: items,
342
345
  mode: mode,
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.SIDEBAR_WIDTH = exports.SIDEBAR_HEADING_WRAPPER_HEIGHT = exports.SIDEBAR_HEADING_PADDING_LEFT = exports.SEARCH_ITEM_HEIGHT_WIDTH = exports.SCROLLBAR_WIDTH = exports.INLINE_SIDEBAR_HEIGHT = exports.GRID_SIZE = exports.FLEX_ITEMS_CONTAINER_BREAKPOINT_NUMBERS = exports.ELEMENT_LIST_PADDING = exports.ELEMENT_ITEM_PADDING = exports.ELEMENT_ITEM_HEIGHT = exports.ELEMENT_BROWSER_ID = exports.DEVICE_BREAKPOINT_NUMBERS = void 0;
6
+ exports.SIDEBAR_WIDTH = exports.SIDEBAR_HEADING_WRAPPER_HEIGHT = exports.SIDEBAR_HEADING_PADDING_LEFT = exports.SEARCH_ITEM_HEIGHT_WIDTH = exports.SCROLLBAR_WIDTH = exports.INLINE_SIDEBAR_HEIGHT = exports.GRID_SIZE = exports.FLEX_ITEMS_CONTAINER_BREAKPOINT_NUMBERS = exports.ELEMENT_LIST_PADDING = exports.ELEMENT_ITEM_PADDING = exports.ELEMENT_ITEM_HEIGHT = exports.ELEMENT_BROWSER_LIST_ID = exports.ELEMENT_BROWSER_ID = exports.DEVICE_BREAKPOINT_NUMBERS = void 0;
7
7
  var GRID_SIZE = exports.GRID_SIZE = 8;
8
8
  var DEVICE_BREAKPOINT_NUMBERS = exports.DEVICE_BREAKPOINT_NUMBERS = {
9
9
  small: GRID_SIZE * 40,
@@ -24,4 +24,5 @@ var SCROLLBAR_WIDTH = exports.SCROLLBAR_WIDTH = 15;
24
24
  var ELEMENT_LIST_PADDING = exports.ELEMENT_LIST_PADDING = 2;
25
25
  var ELEMENT_ITEM_HEIGHT = exports.ELEMENT_ITEM_HEIGHT = 60;
26
26
  var ELEMENT_ITEM_PADDING = exports.ELEMENT_ITEM_PADDING = 10;
27
- var ELEMENT_BROWSER_ID = exports.ELEMENT_BROWSER_ID = 'editor-element-browser';
27
+ var ELEMENT_BROWSER_ID = exports.ELEMENT_BROWSER_ID = 'editor-element-browser';
28
+ var ELEMENT_BROWSER_LIST_ID = exports.ELEMENT_BROWSER_LIST_ID = 'editor-element-browser-list';
@@ -16,7 +16,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
16
16
  function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
17
17
  var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
18
18
  var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
19
- var packageVersion = "107.17.0";
19
+ var packageVersion = "107.18.1";
20
20
  var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
21
21
  // Remove URL as it has UGC
22
22
  // 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 = "107.17.0";
26
+ var packageVersion = "107.18.1";
27
27
  var halfFocusRing = 1;
28
28
  var dropOffset = '0, 8';
29
29
  // Ignored via go/ees005
@@ -6,6 +6,11 @@ export const aiFailedStateMessages = defineMessages({
6
6
  defaultMessage: 'Your prompt or content might not comply with our Acceptable Use Policy. Please review both and refer to our <link>Acceptable Use Policy</link> if needed. If the problem persists, consider trying a different prompt or content.',
7
7
  description: 'Message to indicate to user their prompt or content (this can be a range of content, such as a selection or document -- we used content to keep it vague -- as this will change without user knowing) has been detected as violating Atlassians acceptable use policy. Note the markdown link -- this is expected to remain as markdown as this string is converted to html.'
8
8
  },
9
+ cmdPaletteAupViolationMessage: {
10
+ id: 'fabric.editor.ai.experience.cmdPaletteAupViolationMessage',
11
+ defaultMessage: "We couldn’t complete that request because it doesn't comply with our <link>Acceptable Use Policy</link>.",
12
+ description: 'Message to indicate to user their prompt or content (this can be a range of content, such as a selection or document -- we used content to keep it vague -- as this will change without user knowing) has been detected as violating Atlassians acceptable use policy. Note the markdown link -- this is expected to remain as markdown as this string is converted to html.'
13
+ },
9
14
  documentInsertError: {
10
15
  id: 'fabric.editor.ai.experience-application.documentInsertError',
11
16
  defaultMessage: `We're having trouble inserting the response. Close the dialog and try again.`,
@@ -26,6 +31,11 @@ export const aiFailedStateMessages = defineMessages({
26
31
  defaultMessage: `We couldn’t get a response, please try again.`,
27
32
  description: `We couldn't get a response due to an api error (ie. the backend responded with an error, or got a timeout)`
28
33
  },
34
+ cmdPaletteApiError: {
35
+ id: 'fabric.editor.ai.experience.cmdPaletteApiError',
36
+ defaultMessage: `An error occurred while generating your response.`,
37
+ description: `We couldn't get a response due to an api error (ie. the backend responded with an error, or got a timeout)`
38
+ },
29
39
  elevateDisabledGenerateError: {
30
40
  id: 'fabric.editor.ai.experience.elevateDisabledGenetateError',
31
41
  defaultMessage: `Free generate is disabled in Elevate at this time.`,
@@ -192,6 +192,11 @@ export const aiMessages = defineMessages({
192
192
  defaultMessage: "We're having trouble. Close the dialog and try again.",
193
193
  description: 'Message to users that displays when an unexpected error happens'
194
194
  },
195
+ cmdPaletteUnhandledErrorMessage: {
196
+ id: 'fabric.editor.ai.experience-application.cmdPaletteUnhandledErrorMessage',
197
+ defaultMessage: "We're having issues and can't generate a response right now. Try again later.",
198
+ description: 'Message to users that displays when an unexpected error happens'
199
+ },
195
200
  markdownErrorMessage: {
196
201
  id: 'fabric.editor.ai.experience-application.error-boundary.markdownErrorMessage',
197
202
  defaultMessage: "We're having trouble generating the preview. Close the dialog and try again.",
@@ -16,6 +16,7 @@ import { shortcutStyle } from '@atlaskit/editor-shared-styles/shortcut';
16
16
  import { ButtonItem } from '@atlaskit/menu';
17
17
  import { fg } from '@atlaskit/platform-feature-flags';
18
18
  import { Stack, Text } from '@atlaskit/primitives/compiled';
19
+ import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
19
20
  import Tooltip from '@atlaskit/tooltip';
20
21
  import { ACTION, ACTION_SUBJECT, EVENT_TYPE, fireAnalyticsEvent } from '../../../analytics';
21
22
  import { IconFallback } from '../../../quick-insert';
@@ -220,7 +221,8 @@ const ElementListSingleColumn = props => {
220
221
  selected: selectedItemIndex === index,
221
222
  focus: focusedItemIndex === index,
222
223
  setFocusedItemIndex: setFocusedItemIndex,
223
- onInsertItem: onInsertItem
224
+ onInsertItem: onInsertItem,
225
+ role: expValEquals('platform_editor_august_a11y', 'isEnabled', true) ? 'option' : undefined
224
226
  })));
225
227
  },
226
228
  // eslint-disable-next-line react-hooks/exhaustive-deps
@@ -350,7 +352,8 @@ export function ElementItem({
350
352
  index,
351
353
  onInsertItem,
352
354
  focus,
353
- setFocusedItemIndex
355
+ setFocusedItemIndex,
356
+ role
354
357
  }) {
355
358
  const ref = useFocus(focus);
356
359
 
@@ -398,11 +401,13 @@ export function ElementItem({
398
401
  title: title
399
402
  }),
400
403
  isSelected: selected,
401
- "aria-describedby": title,
404
+ "aria-describedby": expValEquals('platform_editor_august_a11y', 'isEnabled', true) ? undefined : title,
405
+ "aria-label": expValEquals('platform_editor_august_a11y', 'isEnabled', true) ? title : undefined,
402
406
  ref: ref,
403
407
  testId: `element-item-${index}`,
404
408
  id: `searched-item-${index}`,
405
- isDisabled: isDisabled
409
+ isDisabled: isDisabled,
410
+ role: role
406
411
  }, jsx(ItemContent
407
412
  // eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
408
413
  , {
@@ -11,10 +11,11 @@ import { FormattedMessage } from 'react-intl-next';
11
11
  import withAnalyticsContext from '@atlaskit/analytics-next/withAnalyticsContext';
12
12
  import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
13
13
  import { fg } from '@atlaskit/platform-feature-flags';
14
+ import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
14
15
  import { ACTION, ACTION_SUBJECT, EVENT_TYPE, fireAnalyticsEvent } from '../../analytics';
15
16
  import editorUGCToken from '../../ugc-tokens/get-editor-ugc-token';
16
17
  import { ViewMore as ViewMoreNext } from '../components/ViewMore';
17
- import { DEVICE_BREAKPOINT_NUMBERS, ELEMENT_BROWSER_ID, GRID_SIZE, INLINE_SIDEBAR_HEIGHT, SIDEBAR_HEADING_WRAPPER_HEIGHT, SIDEBAR_WIDTH } from '../constants';
18
+ import { DEVICE_BREAKPOINT_NUMBERS, ELEMENT_BROWSER_ID, ELEMENT_BROWSER_LIST_ID, GRID_SIZE, INLINE_SIDEBAR_HEIGHT, SIDEBAR_HEADING_WRAPPER_HEIGHT, SIDEBAR_WIDTH } from '../constants';
18
19
  import useContainerWidth from '../hooks/use-container-width';
19
20
  import useSelectAndFocusOnArrowNavigation from '../hooks/use-select-and-focus-on-arrow-navigation';
20
21
  import { ViewMore } from '../ViewMore';
@@ -313,7 +314,8 @@ function MobileBrowser({
313
314
  onClick: setFocusOnSearch,
314
315
  searchTerm: searchTerm,
315
316
  items: items,
316
- selectedItemIndex: selectedItemIndex
317
+ selectedItemIndex: selectedItemIndex,
318
+ ariaControlsId: expValEquals('platform_editor_august_a11y', 'isEnabled', true) ? ELEMENT_BROWSER_LIST_ID : undefined
317
319
  }), showCategories && jsx("nav", {
318
320
  css: mobileCategoryListWrapper,
319
321
  tabIndex: -1
@@ -326,7 +328,8 @@ function MobileBrowser({
326
328
  setFocusedItemIndex: setFocusedItemIndex,
327
329
  setFocusOnSearch: setFocusOnSearch
328
330
  }))), jsx("div", {
329
- css: mobileMainContent
331
+ css: mobileMainContent,
332
+ id: expValEquals('platform_editor_august_a11y', 'isEnabled', true) ? ELEMENT_BROWSER_LIST_ID : undefined
330
333
  }, jsx(ElementList, {
331
334
  items: items,
332
335
  mode: mode,
@@ -18,4 +18,5 @@ export const SCROLLBAR_WIDTH = 15;
18
18
  export const ELEMENT_LIST_PADDING = 2;
19
19
  export const ELEMENT_ITEM_HEIGHT = 60;
20
20
  export const ELEMENT_ITEM_PADDING = 10;
21
- export const ELEMENT_BROWSER_ID = 'editor-element-browser';
21
+ export const ELEMENT_BROWSER_ID = 'editor-element-browser';
22
+ export const ELEMENT_BROWSER_LIST_ID = 'editor-element-browser-list';
@@ -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 = "107.17.0";
4
+ const packageVersion = "107.18.1";
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 = "107.17.0";
16
+ const packageVersion = "107.18.1";
17
17
  const halfFocusRing = 1;
18
18
  const dropOffset = '0, 8';
19
19
  // Ignored via go/ees005
@@ -6,6 +6,11 @@ export var aiFailedStateMessages = defineMessages({
6
6
  defaultMessage: 'Your prompt or content might not comply with our Acceptable Use Policy. Please review both and refer to our <link>Acceptable Use Policy</link> if needed. If the problem persists, consider trying a different prompt or content.',
7
7
  description: 'Message to indicate to user their prompt or content (this can be a range of content, such as a selection or document -- we used content to keep it vague -- as this will change without user knowing) has been detected as violating Atlassians acceptable use policy. Note the markdown link -- this is expected to remain as markdown as this string is converted to html.'
8
8
  },
9
+ cmdPaletteAupViolationMessage: {
10
+ id: 'fabric.editor.ai.experience.cmdPaletteAupViolationMessage',
11
+ defaultMessage: "We couldn’t complete that request because it doesn't comply with our <link>Acceptable Use Policy</link>.",
12
+ description: 'Message to indicate to user their prompt or content (this can be a range of content, such as a selection or document -- we used content to keep it vague -- as this will change without user knowing) has been detected as violating Atlassians acceptable use policy. Note the markdown link -- this is expected to remain as markdown as this string is converted to html.'
13
+ },
9
14
  documentInsertError: {
10
15
  id: 'fabric.editor.ai.experience-application.documentInsertError',
11
16
  defaultMessage: "We're having trouble inserting the response. Close the dialog and try again.",
@@ -26,6 +31,11 @@ export var aiFailedStateMessages = defineMessages({
26
31
  defaultMessage: "We couldn\u2019t get a response, please try again.",
27
32
  description: "We couldn't get a response due to an api error (ie. the backend responded with an error, or got a timeout)"
28
33
  },
34
+ cmdPaletteApiError: {
35
+ id: 'fabric.editor.ai.experience.cmdPaletteApiError',
36
+ defaultMessage: "An error occurred while generating your response.",
37
+ description: "We couldn't get a response due to an api error (ie. the backend responded with an error, or got a timeout)"
38
+ },
29
39
  elevateDisabledGenerateError: {
30
40
  id: 'fabric.editor.ai.experience.elevateDisabledGenetateError',
31
41
  defaultMessage: "Free generate is disabled in Elevate at this time.",
@@ -192,6 +192,11 @@ export var aiMessages = defineMessages({
192
192
  defaultMessage: "We're having trouble. Close the dialog and try again.",
193
193
  description: 'Message to users that displays when an unexpected error happens'
194
194
  },
195
+ cmdPaletteUnhandledErrorMessage: {
196
+ id: 'fabric.editor.ai.experience-application.cmdPaletteUnhandledErrorMessage',
197
+ defaultMessage: "We're having issues and can't generate a response right now. Try again later.",
198
+ description: 'Message to users that displays when an unexpected error happens'
199
+ },
195
200
  markdownErrorMessage: {
196
201
  id: 'fabric.editor.ai.experience-application.error-boundary.markdownErrorMessage',
197
202
  defaultMessage: "We're having trouble generating the preview. Close the dialog and try again.",
@@ -17,6 +17,7 @@ import { shortcutStyle } from '@atlaskit/editor-shared-styles/shortcut';
17
17
  import { ButtonItem } from '@atlaskit/menu';
18
18
  import { fg } from '@atlaskit/platform-feature-flags';
19
19
  import { Stack, Text } from '@atlaskit/primitives/compiled';
20
+ import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
20
21
  import Tooltip from '@atlaskit/tooltip';
21
22
  import { ACTION, ACTION_SUBJECT, EVENT_TYPE, fireAnalyticsEvent } from '../../../analytics';
22
23
  import { IconFallback } from '../../../quick-insert';
@@ -220,7 +221,8 @@ var ElementListSingleColumn = function ElementListSingleColumn(props) {
220
221
  selected: selectedItemIndex === index,
221
222
  focus: focusedItemIndex === index,
222
223
  setFocusedItemIndex: setFocusedItemIndex,
223
- onInsertItem: onInsertItem
224
+ onInsertItem: onInsertItem,
225
+ role: expValEquals('platform_editor_august_a11y', 'isEnabled', true) ? 'option' : undefined
224
226
  })));
225
227
  };
226
228
  },
@@ -350,7 +352,8 @@ export function ElementItem(_ref6) {
350
352
  index = _ref6.index,
351
353
  onInsertItem = _ref6.onInsertItem,
352
354
  focus = _ref6.focus,
353
- setFocusedItemIndex = _ref6.setFocusedItemIndex;
355
+ setFocusedItemIndex = _ref6.setFocusedItemIndex,
356
+ role = _ref6.role;
354
357
  var ref = useFocus(focus);
355
358
 
356
359
  /**
@@ -395,11 +398,13 @@ export function ElementItem(_ref6) {
395
398
  title: title
396
399
  }),
397
400
  isSelected: selected,
398
- "aria-describedby": title,
401
+ "aria-describedby": expValEquals('platform_editor_august_a11y', 'isEnabled', true) ? undefined : title,
402
+ "aria-label": expValEquals('platform_editor_august_a11y', 'isEnabled', true) ? title : undefined,
399
403
  ref: ref,
400
404
  testId: "element-item-".concat(index),
401
405
  id: "searched-item-".concat(index),
402
- isDisabled: isDisabled
406
+ isDisabled: isDisabled,
407
+ role: role
403
408
  }, jsx(ItemContent
404
409
  // eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
405
410
  , {
@@ -12,10 +12,11 @@ import { FormattedMessage } from 'react-intl-next';
12
12
  import withAnalyticsContext from '@atlaskit/analytics-next/withAnalyticsContext';
13
13
  import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
14
14
  import { fg } from '@atlaskit/platform-feature-flags';
15
+ import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
15
16
  import { ACTION, ACTION_SUBJECT, EVENT_TYPE, fireAnalyticsEvent } from '../../analytics';
16
17
  import editorUGCToken from '../../ugc-tokens/get-editor-ugc-token';
17
18
  import { ViewMore as ViewMoreNext } from '../components/ViewMore';
18
- import { DEVICE_BREAKPOINT_NUMBERS, ELEMENT_BROWSER_ID, GRID_SIZE, INLINE_SIDEBAR_HEIGHT, SIDEBAR_HEADING_WRAPPER_HEIGHT, SIDEBAR_WIDTH } from '../constants';
19
+ import { DEVICE_BREAKPOINT_NUMBERS, ELEMENT_BROWSER_ID, ELEMENT_BROWSER_LIST_ID, GRID_SIZE, INLINE_SIDEBAR_HEIGHT, SIDEBAR_HEADING_WRAPPER_HEIGHT, SIDEBAR_WIDTH } from '../constants';
19
20
  import useContainerWidth from '../hooks/use-container-width';
20
21
  import useSelectAndFocusOnArrowNavigation from '../hooks/use-select-and-focus-on-arrow-navigation';
21
22
  import { ViewMore } from '../ViewMore';
@@ -313,7 +314,8 @@ function MobileBrowser(_ref) {
313
314
  onClick: setFocusOnSearch,
314
315
  searchTerm: searchTerm,
315
316
  items: items,
316
- selectedItemIndex: selectedItemIndex
317
+ selectedItemIndex: selectedItemIndex,
318
+ ariaControlsId: expValEquals('platform_editor_august_a11y', 'isEnabled', true) ? ELEMENT_BROWSER_LIST_ID : undefined
317
319
  }), showCategories && jsx("nav", {
318
320
  css: mobileCategoryListWrapper,
319
321
  tabIndex: -1
@@ -326,7 +328,8 @@ function MobileBrowser(_ref) {
326
328
  setFocusedItemIndex: setFocusedItemIndex,
327
329
  setFocusOnSearch: setFocusOnSearch
328
330
  }))), jsx("div", {
329
- css: mobileMainContent
331
+ css: mobileMainContent,
332
+ id: expValEquals('platform_editor_august_a11y', 'isEnabled', true) ? ELEMENT_BROWSER_LIST_ID : undefined
330
333
  }, jsx(ElementList, {
331
334
  items: items,
332
335
  mode: mode,
@@ -18,4 +18,5 @@ export var SCROLLBAR_WIDTH = 15;
18
18
  export var ELEMENT_LIST_PADDING = 2;
19
19
  export var ELEMENT_ITEM_HEIGHT = 60;
20
20
  export var ELEMENT_ITEM_PADDING = 10;
21
- export var ELEMENT_BROWSER_ID = 'editor-element-browser';
21
+ export var ELEMENT_BROWSER_ID = 'editor-element-browser';
22
+ export var ELEMENT_BROWSER_LIST_ID = 'editor-element-browser-list';
@@ -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 = "107.17.0";
10
+ var packageVersion = "107.18.1";
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 = "107.17.0";
23
+ var packageVersion = "107.18.1";
24
24
  var halfFocusRing = 1;
25
25
  var dropOffset = '0, 8';
26
26
  // Ignored via go/ees005
@@ -4,6 +4,11 @@ export declare const aiFailedStateMessages: {
4
4
  defaultMessage: string;
5
5
  description: string;
6
6
  };
7
+ cmdPaletteAupViolationMessage: {
8
+ id: string;
9
+ defaultMessage: string;
10
+ description: string;
11
+ };
7
12
  documentInsertError: {
8
13
  id: string;
9
14
  defaultMessage: string;
@@ -24,6 +29,11 @@ export declare const aiFailedStateMessages: {
24
29
  defaultMessage: string;
25
30
  description: string;
26
31
  };
32
+ cmdPaletteApiError: {
33
+ id: string;
34
+ defaultMessage: string;
35
+ description: string;
36
+ };
27
37
  elevateDisabledGenerateError: {
28
38
  id: string;
29
39
  defaultMessage: string;
@@ -184,6 +184,11 @@ export declare const aiMessages: {
184
184
  defaultMessage: string;
185
185
  description: string;
186
186
  };
187
+ cmdPaletteUnhandledErrorMessage: {
188
+ id: string;
189
+ defaultMessage: string;
190
+ description: string;
191
+ };
187
192
  markdownErrorMessage: {
188
193
  id: string;
189
194
  defaultMessage: string;
@@ -36,7 +36,8 @@ type ElementItemType = {
36
36
  focus: boolean;
37
37
  setFocusedItemIndex: (index: number) => void;
38
38
  index: number;
39
+ role?: string;
39
40
  };
40
- export declare function ElementItem({ inlineMode, selected, item, index, onInsertItem, focus, setFocusedItemIndex, }: ElementItemType): jsx.JSX.Element;
41
+ export declare function ElementItem({ inlineMode, selected, item, index, onInsertItem, focus, setFocusedItemIndex, role, }: ElementItemType): jsx.JSX.Element;
41
42
  declare const MemoizedElementListWithAnalytics: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<Props & SelectedItemProps & WithAnalyticsEventsProps & import("@atlaskit/analytics-next").WithContextProps, "ref"> & React.RefAttributes<any>>>;
42
43
  export default MemoizedElementListWithAnalytics;
@@ -19,3 +19,4 @@ export declare const ELEMENT_LIST_PADDING = 2;
19
19
  export declare const ELEMENT_ITEM_HEIGHT = 60;
20
20
  export declare const ELEMENT_ITEM_PADDING = 10;
21
21
  export declare const ELEMENT_BROWSER_ID = "editor-element-browser";
22
+ export declare const ELEMENT_BROWSER_LIST_ID = "editor-element-browser-list";
@@ -4,6 +4,11 @@ export declare const aiFailedStateMessages: {
4
4
  defaultMessage: string;
5
5
  description: string;
6
6
  };
7
+ cmdPaletteAupViolationMessage: {
8
+ id: string;
9
+ defaultMessage: string;
10
+ description: string;
11
+ };
7
12
  documentInsertError: {
8
13
  id: string;
9
14
  defaultMessage: string;
@@ -24,6 +29,11 @@ export declare const aiFailedStateMessages: {
24
29
  defaultMessage: string;
25
30
  description: string;
26
31
  };
32
+ cmdPaletteApiError: {
33
+ id: string;
34
+ defaultMessage: string;
35
+ description: string;
36
+ };
27
37
  elevateDisabledGenerateError: {
28
38
  id: string;
29
39
  defaultMessage: string;
@@ -184,6 +184,11 @@ export declare const aiMessages: {
184
184
  defaultMessage: string;
185
185
  description: string;
186
186
  };
187
+ cmdPaletteUnhandledErrorMessage: {
188
+ id: string;
189
+ defaultMessage: string;
190
+ description: string;
191
+ };
187
192
  markdownErrorMessage: {
188
193
  id: string;
189
194
  defaultMessage: string;
@@ -36,7 +36,8 @@ type ElementItemType = {
36
36
  focus: boolean;
37
37
  setFocusedItemIndex: (index: number) => void;
38
38
  index: number;
39
+ role?: string;
39
40
  };
40
- export declare function ElementItem({ inlineMode, selected, item, index, onInsertItem, focus, setFocusedItemIndex, }: ElementItemType): jsx.JSX.Element;
41
+ export declare function ElementItem({ inlineMode, selected, item, index, onInsertItem, focus, setFocusedItemIndex, role, }: ElementItemType): jsx.JSX.Element;
41
42
  declare const MemoizedElementListWithAnalytics: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<Props & SelectedItemProps & WithAnalyticsEventsProps & import("@atlaskit/analytics-next").WithContextProps, "ref"> & React.RefAttributes<any>>>;
42
43
  export default MemoizedElementListWithAnalytics;
@@ -19,3 +19,4 @@ export declare const ELEMENT_LIST_PADDING = 2;
19
19
  export declare const ELEMENT_ITEM_HEIGHT = 60;
20
20
  export declare const ELEMENT_ITEM_PADDING = 10;
21
21
  export declare const ELEMENT_BROWSER_ID = "editor-element-browser";
22
+ export declare const ELEMENT_BROWSER_LIST_ID = "editor-element-browser-list";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common",
3
- "version": "107.18.0",
3
+ "version": "107.18.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/"
@@ -142,13 +142,13 @@
142
142
  "@atlaskit/editor-shared-styles": "^3.5.0",
143
143
  "@atlaskit/editor-tables": "^2.9.0",
144
144
  "@atlaskit/emoji": "^69.3.0",
145
- "@atlaskit/icon": "^27.9.0",
145
+ "@atlaskit/icon": "^27.10.0",
146
146
  "@atlaskit/icon-object": "^7.2.0",
147
147
  "@atlaskit/link": "^3.2.0",
148
148
  "@atlaskit/link-datasource": "^4.19.0",
149
149
  "@atlaskit/link-picker": "^3.9.0",
150
150
  "@atlaskit/media-card": "^79.5.0",
151
- "@atlaskit/media-client": "^35.2.0",
151
+ "@atlaskit/media-client": "^35.3.0",
152
152
  "@atlaskit/media-client-react": "^4.1.0",
153
153
  "@atlaskit/media-common": "^12.3.0",
154
154
  "@atlaskit/media-file-preview": "^0.11.0",
@@ -162,7 +162,7 @@
162
162
  "@atlaskit/platform-feature-flags-react": "^0.2.0",
163
163
  "@atlaskit/popper": "^7.1.0",
164
164
  "@atlaskit/primitives": "^14.11.0",
165
- "@atlaskit/profilecard": "^24.1.0",
165
+ "@atlaskit/profilecard": "^24.2.0",
166
166
  "@atlaskit/react-ufo": "^4.2.0",
167
167
  "@atlaskit/section-message": "^8.5.0",
168
168
  "@atlaskit/smart-card": "^40.7.0",