@atlaskit/editor-plugin-type-ahead 6.5.7 → 6.5.8

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,13 @@
1
1
  # @atlaskit/editor-plugin-type-ahead
2
2
 
3
+ ## 6.5.8
4
+
5
+ ### Patch Changes
6
+
7
+ - [`2ab1e9998d893`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2ab1e9998d893) -
8
+ Removed tab-index on list container
9
+ - Updated dependencies
10
+
3
11
  ## 6.5.7
4
12
 
5
13
  ### Patch Changes
@@ -339,7 +339,7 @@ var TypeAheadPopup = exports.TypeAheadPopup = /*#__PURE__*/_react.default.memo(f
339
339
  css: [typeAheadContent, moreElementsInQuickInsertViewEnabled && typeAheadContentOverride, showMoreOptionsButton && typeAheadWrapperWithViewMoreOverride]
340
340
  // eslint-disable-next-line @atlassian/a11y/no-noninteractive-tabindex
341
341
  ,
342
- tabIndex: 0
342
+ tabIndex: (0, _platformFeatureFlags.fg)('platform_editor_a11y_fix_typeahead_tabindex') ? undefined : 0
343
343
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
344
344
  ,
345
345
  className: _constants.TYPE_AHEAD_POPUP_CONTENT_CLASS,
@@ -313,7 +313,7 @@ var TypeAheadPopup = exports.TypeAheadPopup = /*#__PURE__*/_react.default.memo(f
313
313
  css: [typeAheadContent]
314
314
  // eslint-disable-next-line @atlassian/a11y/no-noninteractive-tabindex
315
315
  ,
316
- tabIndex: 0
316
+ tabIndex: (0, _platformFeatureFlags.fg)('platform_editor_a11y_fix_typeahead_tabindex') ? undefined : 0
317
317
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
318
318
  ,
319
319
  className: _constants.TYPE_AHEAD_POPUP_CONTENT_CLASS,
@@ -335,7 +335,7 @@ export const TypeAheadPopup = /*#__PURE__*/React.memo(props => {
335
335
  css: [typeAheadContent, moreElementsInQuickInsertViewEnabled && typeAheadContentOverride, showMoreOptionsButton && typeAheadWrapperWithViewMoreOverride]
336
336
  // eslint-disable-next-line @atlassian/a11y/no-noninteractive-tabindex
337
337
  ,
338
- tabIndex: 0
338
+ tabIndex: fg('platform_editor_a11y_fix_typeahead_tabindex') ? undefined : 0
339
339
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
340
340
  ,
341
341
  className: TYPE_AHEAD_POPUP_CONTENT_CLASS,
@@ -307,7 +307,7 @@ export const TypeAheadPopup = /*#__PURE__*/React.memo(props => {
307
307
  css: [typeAheadContent]
308
308
  // eslint-disable-next-line @atlassian/a11y/no-noninteractive-tabindex
309
309
  ,
310
- tabIndex: 0
310
+ tabIndex: fg('platform_editor_a11y_fix_typeahead_tabindex') ? undefined : 0
311
311
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
312
312
  ,
313
313
  className: TYPE_AHEAD_POPUP_CONTENT_CLASS,
@@ -329,7 +329,7 @@ export var TypeAheadPopup = /*#__PURE__*/React.memo(function (props) {
329
329
  css: [typeAheadContent, moreElementsInQuickInsertViewEnabled && typeAheadContentOverride, showMoreOptionsButton && typeAheadWrapperWithViewMoreOverride]
330
330
  // eslint-disable-next-line @atlassian/a11y/no-noninteractive-tabindex
331
331
  ,
332
- tabIndex: 0
332
+ tabIndex: fg('platform_editor_a11y_fix_typeahead_tabindex') ? undefined : 0
333
333
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
334
334
  ,
335
335
  className: TYPE_AHEAD_POPUP_CONTENT_CLASS,
@@ -304,7 +304,7 @@ export var TypeAheadPopup = /*#__PURE__*/React.memo(function (props) {
304
304
  css: [typeAheadContent]
305
305
  // eslint-disable-next-line @atlassian/a11y/no-noninteractive-tabindex
306
306
  ,
307
- tabIndex: 0
307
+ tabIndex: fg('platform_editor_a11y_fix_typeahead_tabindex') ? undefined : 0
308
308
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
309
309
  ,
310
310
  className: TYPE_AHEAD_POPUP_CONTENT_CLASS,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-type-ahead",
3
- "version": "6.5.7",
3
+ "version": "6.5.8",
4
4
  "description": "Type-ahead plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -42,7 +42,7 @@
42
42
  "@atlaskit/insm": "^0.1.0",
43
43
  "@atlaskit/menu": "^8.4.0",
44
44
  "@atlaskit/platform-feature-flags": "^1.1.0",
45
- "@atlaskit/primitives": "^16.0.0",
45
+ "@atlaskit/primitives": "^16.1.0",
46
46
  "@atlaskit/prosemirror-history": "^0.2.0",
47
47
  "@atlaskit/prosemirror-input-rules": "^3.5.0",
48
48
  "@atlaskit/theme": "^21.0.0",
@@ -119,6 +119,9 @@
119
119
  },
120
120
  "platform_editor_a11y_fix_aria_description": {
121
121
  "type": "boolean"
122
+ },
123
+ "platform_editor_a11y_fix_typeahead_tabindex": {
124
+ "type": "boolean"
122
125
  }
123
126
  }
124
127
  }