@atlaskit/editor-plugin-type-ahead 6.1.0 → 6.1.1
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 +6 -0
- package/dist/cjs/ui/TypeAheadPopup.js +1 -1
- package/dist/cjs/ui/modern/TypeAheadPopup.js +1 -1
- package/dist/es2019/ui/TypeAheadPopup.js +1 -1
- package/dist/es2019/ui/modern/TypeAheadPopup.js +1 -1
- package/dist/esm/ui/TypeAheadPopup.js +1 -1
- package/dist/esm/ui/modern/TypeAheadPopup.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -337,7 +337,7 @@ var TypeAheadPopup = exports.TypeAheadPopup = /*#__PURE__*/_react.default.memo(f
|
|
|
337
337
|
}
|
|
338
338
|
}, (0, _react2.jsx)("div", {
|
|
339
339
|
css: [typeAheadContent, moreElementsInQuickInsertViewEnabled && typeAheadContentOverride, showMoreOptionsButton && typeAheadWrapperWithViewMoreOverride]
|
|
340
|
-
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex
|
|
340
|
+
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex, @atlassian/a11y/no-noninteractive-tabindex
|
|
341
341
|
,
|
|
342
342
|
tabIndex: 0
|
|
343
343
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
|
@@ -311,7 +311,7 @@ var TypeAheadPopup = exports.TypeAheadPopup = /*#__PURE__*/_react.default.memo(f
|
|
|
311
311
|
preventOverflow: true
|
|
312
312
|
}, (0, _react2.jsx)("div", {
|
|
313
313
|
css: [typeAheadContent]
|
|
314
|
-
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex
|
|
314
|
+
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex, @atlassian/a11y/no-noninteractive-tabindex
|
|
315
315
|
,
|
|
316
316
|
tabIndex: 0
|
|
317
317
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
|
@@ -333,7 +333,7 @@ export const TypeAheadPopup = /*#__PURE__*/React.memo(props => {
|
|
|
333
333
|
}
|
|
334
334
|
}, jsx("div", {
|
|
335
335
|
css: [typeAheadContent, moreElementsInQuickInsertViewEnabled && typeAheadContentOverride, showMoreOptionsButton && typeAheadWrapperWithViewMoreOverride]
|
|
336
|
-
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex
|
|
336
|
+
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex, @atlassian/a11y/no-noninteractive-tabindex
|
|
337
337
|
,
|
|
338
338
|
tabIndex: 0
|
|
339
339
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
|
@@ -305,7 +305,7 @@ export const TypeAheadPopup = /*#__PURE__*/React.memo(props => {
|
|
|
305
305
|
preventOverflow: true
|
|
306
306
|
}, jsx("div", {
|
|
307
307
|
css: [typeAheadContent]
|
|
308
|
-
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex
|
|
308
|
+
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex, @atlassian/a11y/no-noninteractive-tabindex
|
|
309
309
|
,
|
|
310
310
|
tabIndex: 0
|
|
311
311
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
|
@@ -327,7 +327,7 @@ export var TypeAheadPopup = /*#__PURE__*/React.memo(function (props) {
|
|
|
327
327
|
}
|
|
328
328
|
}, jsx("div", {
|
|
329
329
|
css: [typeAheadContent, moreElementsInQuickInsertViewEnabled && typeAheadContentOverride, showMoreOptionsButton && typeAheadWrapperWithViewMoreOverride]
|
|
330
|
-
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex
|
|
330
|
+
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex, @atlassian/a11y/no-noninteractive-tabindex
|
|
331
331
|
,
|
|
332
332
|
tabIndex: 0
|
|
333
333
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
|
@@ -302,7 +302,7 @@ export var TypeAheadPopup = /*#__PURE__*/React.memo(function (props) {
|
|
|
302
302
|
preventOverflow: true
|
|
303
303
|
}, jsx("div", {
|
|
304
304
|
css: [typeAheadContent]
|
|
305
|
-
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex
|
|
305
|
+
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex, @atlassian/a11y/no-noninteractive-tabindex
|
|
306
306
|
,
|
|
307
307
|
tabIndex: 0
|
|
308
308
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-type-ahead",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.1",
|
|
4
4
|
"description": "Type-ahead plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@atlaskit/adf-schema": "^51.2.0",
|
|
33
33
|
"@atlaskit/editor-element-browser": "^4.0.0",
|
|
34
|
-
"@atlaskit/editor-plugin-analytics": "^6.
|
|
34
|
+
"@atlaskit/editor-plugin-analytics": "^6.1.0",
|
|
35
35
|
"@atlaskit/editor-plugin-connectivity": "^6.0.0",
|
|
36
36
|
"@atlaskit/editor-plugin-context-panel": "^8.0.0",
|
|
37
37
|
"@atlaskit/editor-plugin-metrics": "^7.0.0",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@atlaskit/primitives": "^14.15.0",
|
|
46
46
|
"@atlaskit/prosemirror-input-rules": "^3.4.0",
|
|
47
47
|
"@atlaskit/theme": "^21.0.0",
|
|
48
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
48
|
+
"@atlaskit/tmp-editor-statsig": "^13.0.0",
|
|
49
49
|
"@atlaskit/tokens": "^6.4.0",
|
|
50
50
|
"@babel/runtime": "^7.0.0",
|
|
51
51
|
"@emotion/react": "^11.7.1",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"w3c-keyname": "^2.1.8"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@atlaskit/editor-common": "^110.
|
|
59
|
+
"@atlaskit/editor-common": "^110.4.0",
|
|
60
60
|
"react": "^18.2.0",
|
|
61
61
|
"react-dom": "^18.2.0",
|
|
62
62
|
"react-intl-next": "npm:react-intl@^5.18.1"
|