@bigbinary/neeto-editor 1.47.124 → 1.47.125
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/dist/Editor.js +6 -1
- package/dist/Editor.js.map +1 -1
- package/dist/cjs/Editor.cjs.js +6 -1
- package/dist/cjs/Editor.cjs.js.map +1 -1
- package/dist/editor-stats.html +1 -19
- package/package.json +1 -1
package/dist/cjs/Editor.cjs.js
CHANGED
|
@@ -2123,7 +2123,12 @@ var MentionList = /*#__PURE__*/function (_React$Component) {
|
|
|
2123
2123
|
children: /*#__PURE__*/jsxRuntime.jsx(Menu, {
|
|
2124
2124
|
className: "neeto-editor-mentions__wrapper",
|
|
2125
2125
|
"data-testid": "neeto-editor-mention-list",
|
|
2126
|
-
ref: this.mentionRef
|
|
2126
|
+
ref: this.mentionRef
|
|
2127
|
+
// Keep the list non-focusable so neetoUI's Menu can't auto-focus its
|
|
2128
|
+
// <ul> and steal focus from the editor; mention keystrokes and arrow
|
|
2129
|
+
// keys are handled through the editor's own keydown.
|
|
2130
|
+
,
|
|
2131
|
+
tabIndex: null,
|
|
2127
2132
|
children: items.map(function (_ref2, index) {
|
|
2128
2133
|
var key = _ref2.key,
|
|
2129
2134
|
name = _ref2.name,
|