@atlaskit/editor-plugin-type-ahead 16.1.13 → 16.1.15
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 +16 -0
- package/dist/cjs/pm-plugins/commands/insert-type-ahead-item.js +7 -7
- package/dist/cjs/pm-plugins/decorations.js +5 -4
- package/dist/cjs/pm-plugins/main.js +2 -2
- package/dist/cjs/pm-plugins/utils.js +2 -2
- package/dist/cjs/typeAheadPlugin.js +3 -3
- package/dist/cjs/ui/InputQuery.js +2 -2
- package/dist/cjs/ui/MoreOptions.js +5 -3
- package/dist/cjs/ui/TypeAheadErrorFallback/EmptyState.js +1 -1
- package/dist/cjs/ui/TypeAheadList.js +2 -2
- package/dist/cjs/ui/TypeAheadListItem.js +2 -2
- package/dist/cjs/ui/TypeAheadPopup.js +2 -2
- package/dist/cjs/ui/WrapperTypeAhead.js +2 -2
- package/dist/es2019/pm-plugins/commands/insert-type-ahead-item.js +1 -1
- package/dist/es2019/pm-plugins/decorations.js +3 -2
- package/dist/es2019/pm-plugins/main.js +1 -1
- package/dist/es2019/pm-plugins/utils.js +1 -1
- package/dist/es2019/typeAheadPlugin.js +1 -1
- package/dist/es2019/ui/InputQuery.js +1 -1
- package/dist/es2019/ui/MoreOptions.js +2 -1
- package/dist/es2019/ui/TypeAheadErrorFallback/EmptyState.js +1 -1
- package/dist/es2019/ui/TypeAheadList.js +1 -1
- package/dist/es2019/ui/TypeAheadListItem.js +1 -1
- package/dist/es2019/ui/TypeAheadPopup.js +1 -1
- package/dist/es2019/ui/WrapperTypeAhead.js +1 -1
- package/dist/esm/pm-plugins/commands/insert-type-ahead-item.js +1 -1
- package/dist/esm/pm-plugins/decorations.js +3 -2
- package/dist/esm/pm-plugins/main.js +1 -1
- package/dist/esm/pm-plugins/utils.js +1 -1
- package/dist/esm/typeAheadPlugin.js +1 -1
- package/dist/esm/ui/InputQuery.js +1 -1
- package/dist/esm/ui/MoreOptions.js +2 -1
- package/dist/esm/ui/TypeAheadErrorFallback/EmptyState.js +1 -1
- package/dist/esm/ui/TypeAheadList.js +1 -1
- package/dist/esm/ui/TypeAheadListItem.js +1 -1
- package/dist/esm/ui/TypeAheadPopup.js +1 -1
- package/dist/esm/ui/WrapperTypeAhead.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-type-ahead
|
|
2
2
|
|
|
3
|
+
## 16.1.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`656801b9e097c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/656801b9e097c) -
|
|
8
|
+
VOLTC-331 - Migrate updated package usage in platform/editor: rewrite barrel imports of
|
|
9
|
+
voltCompliant provider packages to deep/subpath imports (consumer-side debarrel). No public API
|
|
10
|
+
changes.
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
13
|
+
## 16.1.14
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 16.1.13
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -9,7 +9,7 @@ var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers
|
|
|
9
9
|
var _steps = require("@atlaskit/adf-schema/steps");
|
|
10
10
|
var _typeAhead = require("@atlaskit/editor-common/type-ahead");
|
|
11
11
|
var _model = require("@atlaskit/editor-prosemirror/model");
|
|
12
|
-
var
|
|
12
|
+
var _closeHistory = require("@atlaskit/prosemirror-history/closeHistory");
|
|
13
13
|
var _actions = require("../actions");
|
|
14
14
|
var _key = require("../key");
|
|
15
15
|
var _statsModifier = require("../stats-modifier");
|
|
@@ -72,7 +72,7 @@ var createInsertCallback = function createInsertCallback(_ref2) {
|
|
|
72
72
|
position: position,
|
|
73
73
|
selectInlineNode: Boolean(opts.selectInlineNode)
|
|
74
74
|
});
|
|
75
|
-
(0,
|
|
75
|
+
(0, _closeHistory.closeHistory)(tr);
|
|
76
76
|
if (wasInsertedBySpace) {
|
|
77
77
|
return tr;
|
|
78
78
|
}
|
|
@@ -95,7 +95,7 @@ var createDeleteRawTextCallback = function createDeleteRawTextCallback(_ref3) {
|
|
|
95
95
|
insertItem = _ref3.insertItem;
|
|
96
96
|
return function (newState) {
|
|
97
97
|
var tr = newState.tr;
|
|
98
|
-
(0,
|
|
98
|
+
(0, _closeHistory.closeHistory)(tr);
|
|
99
99
|
if (!wasInsertedBySpace) {
|
|
100
100
|
tr.delete(position.start, position.end);
|
|
101
101
|
var config = {
|
|
@@ -167,7 +167,7 @@ var insertTypeAheadItem = exports.insertTypeAheadItem = function insertTypeAhead
|
|
|
167
167
|
var insertCallbackProxy = new Proxy(insertCallback, proxyHandler);
|
|
168
168
|
var nextTr = handler.selectItem(newEditorSate, item, insertCallbackProxy, meta);
|
|
169
169
|
if (!wasInsertCallbackCalled && nextTr) {
|
|
170
|
-
(0,
|
|
170
|
+
(0, _closeHistory.closeHistory)(nextTr);
|
|
171
171
|
|
|
172
172
|
// In some cases we need to re-open the typeahead
|
|
173
173
|
// e.g.: addign mentions from the quick insert
|
|
@@ -198,7 +198,7 @@ var insertTypeAheadItem = exports.insertTypeAheadItem = function insertTypeAhead
|
|
|
198
198
|
})
|
|
199
199
|
});
|
|
200
200
|
tr.insertText(text);
|
|
201
|
-
(0,
|
|
201
|
+
(0, _closeHistory.closeHistory)(tr);
|
|
202
202
|
view.dispatch(tr);
|
|
203
203
|
view.focus();
|
|
204
204
|
};
|
|
@@ -250,7 +250,7 @@ var executeTypeAheadSelection = function executeTypeAheadSelection(view) {
|
|
|
250
250
|
});
|
|
251
251
|
var nextTr = selectItem(newEditorState, insertCallbackProxy, meta);
|
|
252
252
|
if (!wasInsertCallbackCalled && nextTr) {
|
|
253
|
-
(0,
|
|
253
|
+
(0, _closeHistory.closeHistory)(nextTr);
|
|
254
254
|
if (!nextTr.getMeta(_key.pluginKey)) {
|
|
255
255
|
(0, _closeTypeAhead.closeTypeAhead)(nextTr);
|
|
256
256
|
}
|
|
@@ -273,7 +273,7 @@ var executeTypeAheadSelection = function executeTypeAheadSelection(view) {
|
|
|
273
273
|
})
|
|
274
274
|
});
|
|
275
275
|
tr.insertText(text);
|
|
276
|
-
(0,
|
|
276
|
+
(0, _closeHistory.closeHistory)(tr);
|
|
277
277
|
view.dispatch(tr);
|
|
278
278
|
view.focus();
|
|
279
279
|
};
|
|
@@ -11,8 +11,9 @@ var _uuid = require("uuid");
|
|
|
11
11
|
var _w3cKeyname = require("w3c-keyname");
|
|
12
12
|
var _state = require("@atlaskit/editor-prosemirror/state");
|
|
13
13
|
var _view = require("@atlaskit/editor-prosemirror/view");
|
|
14
|
-
var
|
|
15
|
-
var
|
|
14
|
+
var _fg = require("@atlaskit/platform-feature-flags/fg");
|
|
15
|
+
var _redo = require("@atlaskit/prosemirror-history/redo");
|
|
16
|
+
var _undo = require("@atlaskit/prosemirror-history/undo");
|
|
16
17
|
var _WrapperTypeAhead = require("../ui/WrapperTypeAhead");
|
|
17
18
|
var _closeTypeAhead = require("./commands/close-type-ahead");
|
|
18
19
|
var _constants = require("./constants");
|
|
@@ -73,7 +74,7 @@ var factoryDecorations = exports.factoryDecorations = function factoryDecoration
|
|
|
73
74
|
var hasReopenQuery = typeof reopenQuery === 'string' && reopenQuery.trim().length > 0;
|
|
74
75
|
var currentQuery = (0, _utils.getTypeAheadQuery)(editorView.state);
|
|
75
76
|
if (hasReopenQuery || (currentQuery === null || currentQuery === void 0 ? void 0 : currentQuery.length) === 0) {
|
|
76
|
-
var command = inputType === 'historyUndo' ?
|
|
77
|
+
var command = inputType === 'historyUndo' ? _undo.undo : _redo.redo;
|
|
77
78
|
var _tr = editorView.state.tr;
|
|
78
79
|
var fakeDispatch = function fakeDispatch(customTr) {
|
|
79
80
|
_tr = customTr;
|
|
@@ -155,7 +156,7 @@ var factoryDecorations = exports.factoryDecorations = function factoryDecoration
|
|
|
155
156
|
}
|
|
156
157
|
nodeViewPortalProviderAPI.remove(spec.key);
|
|
157
158
|
});
|
|
158
|
-
if ((0,
|
|
159
|
+
if ((0, _fg.fg)('platform_editor_ease_of_use_metrics')) {
|
|
159
160
|
var _api$metrics;
|
|
160
161
|
api === null || api === void 0 || api.core.actions.execute(api === null || api === void 0 || (_api$metrics = api.metrics) === null || _api$metrics === void 0 ? void 0 : _api$metrics.commands.startActiveSessionTimer());
|
|
161
162
|
}
|
|
@@ -9,7 +9,7 @@ var _analytics = require("@atlaskit/editor-common/analytics");
|
|
|
9
9
|
var _safePlugin = require("@atlaskit/editor-common/safe-plugin");
|
|
10
10
|
var _utils = require("@atlaskit/editor-common/utils");
|
|
11
11
|
var _view = require("@atlaskit/editor-prosemirror/view");
|
|
12
|
-
var
|
|
12
|
+
var _fg = require("@atlaskit/platform-feature-flags/fg");
|
|
13
13
|
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
|
|
14
14
|
var _actions = require("./actions");
|
|
15
15
|
var _openTypeaheadAtCursor = require("./commands/open-typeahead-at-cursor");
|
|
@@ -94,7 +94,7 @@ function createPlugin(_ref) {
|
|
|
94
94
|
if (insertItemCallback) {
|
|
95
95
|
var tr = insertItemCallback(newState);
|
|
96
96
|
if (tr) {
|
|
97
|
-
if ((0,
|
|
97
|
+
if ((0, _fg.fg)('platform_editor_ease_of_use_metrics')) {
|
|
98
98
|
var _api$metrics;
|
|
99
99
|
api === null || api === void 0 || (_api$metrics = api.metrics) === null || _api$metrics === void 0 || _api$metrics.commands.startActiveSessionTimer()({
|
|
100
100
|
tr: tr
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.skipForwardToSafeItem = exports.skipBackwardToSafeItem = exports.moveSelectedIndex = exports.isTypeAheadOpen = exports.isTypeAheadHandler = exports.isTypeAheadAllowed = exports.getTypeAheadQuery = exports.getTypeAheadListAriaLabels = exports.getTypeAheadHandler = exports.getPluginState = exports.findHandlerByTrigger = exports.findHandler = void 0;
|
|
7
7
|
var _typeAhead = require("@atlaskit/editor-common/type-ahead");
|
|
8
|
-
var
|
|
8
|
+
var _fg = require("@atlaskit/platform-feature-flags/fg");
|
|
9
9
|
var _experiments = require("@atlaskit/tmp-editor-statsig/experiments");
|
|
10
10
|
var _updateSelectedIndex = require("./commands/update-selected-index");
|
|
11
11
|
var _itemIsDisabled = require("./item-is-disabled");
|
|
@@ -168,7 +168,7 @@ var getTypeAheadListAriaLabels = exports.getTypeAheadListAriaLabels = function g
|
|
|
168
168
|
case '@':
|
|
169
169
|
{
|
|
170
170
|
var _item$mention, _item$mention2, _item$mention3;
|
|
171
|
-
var description = (0, _experiments.editorExperiment)('platform_editor_agent_mentions', true) && (0,
|
|
171
|
+
var description = (0, _experiments.editorExperiment)('platform_editor_agent_mentions', true) && (0, _fg.fg)('platform_editor_mention_typeahead_profilecard') ? item === null || item === void 0 || (_item$mention = item.mention) === null || _item$mention === void 0 ? void 0 : _item$mention.description : undefined;
|
|
172
172
|
var name = (item === null || item === void 0 || (_item$mention2 = item.mention) === null || _item$mention2 === void 0 ? void 0 : _item$mention2.name) || '';
|
|
173
173
|
var shortName = (item === null || item === void 0 || (_item$mention3 = item.mention) === null || _item$mention3 === void 0 ? void 0 : _item$mention3.mentionName) || '';
|
|
174
174
|
return {
|
|
@@ -11,7 +11,7 @@ var _analytics = require("@atlaskit/editor-common/analytics");
|
|
|
11
11
|
var _safePlugin = require("@atlaskit/editor-common/safe-plugin");
|
|
12
12
|
var _typeAhead = require("@atlaskit/editor-common/type-ahead");
|
|
13
13
|
var _view2 = require("@atlaskit/editor-prosemirror/view");
|
|
14
|
-
var
|
|
14
|
+
var _fg = require("@atlaskit/platform-feature-flags/fg");
|
|
15
15
|
var _closeTypeAhead = require("./pm-plugins/commands/close-type-ahead");
|
|
16
16
|
var _insertTypeAheadItem = require("./pm-plugins/commands/insert-type-ahead-item");
|
|
17
17
|
var _openTypeaheadAtCursor = require("./pm-plugins/commands/open-typeahead-at-cursor");
|
|
@@ -288,7 +288,7 @@ var typeAheadPlugin = exports.typeAheadPlugin = function typeAheadPlugin(_ref) {
|
|
|
288
288
|
});
|
|
289
289
|
}
|
|
290
290
|
if (newTriggerHandler !== null && newTriggerHandler !== void 0 && newTriggerHandler.onOpen && isANewHandler) {
|
|
291
|
-
if ((0,
|
|
291
|
+
if ((0, _fg.fg)('platform_editor_ease_of_use_metrics')) {
|
|
292
292
|
var _api$metrics;
|
|
293
293
|
api === null || api === void 0 || (_api$metrics = api.metrics) === null || _api$metrics === void 0 || _api$metrics.commands.handleIntentToStartEdit({
|
|
294
294
|
shouldStartTimer: false,
|
|
@@ -318,7 +318,7 @@ var typeAheadPlugin = exports.typeAheadPlugin = function typeAheadPlugin(_ref) {
|
|
|
318
318
|
}
|
|
319
319
|
});
|
|
320
320
|
}
|
|
321
|
-
} else if (oldIsOpen && !newIsOpen && (0,
|
|
321
|
+
} else if (oldIsOpen && !newIsOpen && (0, _fg.fg)('platform_editor_ease_of_use_metrics')) {
|
|
322
322
|
var _api$metrics2;
|
|
323
323
|
api === null || api === void 0 || api.core.actions.execute(api === null || api === void 0 || (_api$metrics2 = api.metrics) === null || _api$metrics2 === void 0 ? void 0 : _api$metrics2.commands.startActiveSessionTimer());
|
|
324
324
|
}
|
|
@@ -16,7 +16,7 @@ var _typeAhead = require("@atlaskit/editor-common/type-ahead");
|
|
|
16
16
|
var _ui = require("@atlaskit/editor-common/ui");
|
|
17
17
|
var _utils = require("@atlaskit/editor-prosemirror/utils");
|
|
18
18
|
var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
|
|
19
|
-
var
|
|
19
|
+
var _fg = require("@atlaskit/platform-feature-flags/fg");
|
|
20
20
|
var _experiments = require("@atlaskit/tmp-editor-statsig/experiments");
|
|
21
21
|
var _constants = require("../pm-plugins/constants");
|
|
22
22
|
var _utils2 = require("../pm-plugins/utils");
|
|
@@ -117,7 +117,7 @@ var InputQuery = exports.InputQuery = /*#__PURE__*/_react.default.memo(function
|
|
|
117
117
|
query = _useState2[0],
|
|
118
118
|
setQuery = _useState2[1];
|
|
119
119
|
var isEditorControlsEnabled = (0, _experiments.editorExperiment)('platform_editor_controls', 'variant1');
|
|
120
|
-
var isSearchPlaceholderEnabled = (0, _experiments.editorExperiment)('platform_editor_controls', 'variant1') && (0,
|
|
120
|
+
var isSearchPlaceholderEnabled = (0, _experiments.editorExperiment)('platform_editor_controls', 'variant1') && (0, _fg.fg)('platform_editor_quick_insert_placeholder');
|
|
121
121
|
var selection = editorView.state.selection;
|
|
122
122
|
var table = editorView.state.schema.nodes.table;
|
|
123
123
|
var _useState3 = (0, _react.useState)(isSearchPlaceholderEnabled && triggerQueryPrefix === '/' &&
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
3
4
|
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
4
5
|
Object.defineProperty(exports, "__esModule", {
|
|
5
6
|
value: true
|
|
@@ -8,7 +9,8 @@ exports.MoreOptions = void 0;
|
|
|
8
9
|
var _react = _interopRequireWildcard(require("react"));
|
|
9
10
|
var _react2 = require("@emotion/react");
|
|
10
11
|
var _browser = require("@atlaskit/editor-common/browser");
|
|
11
|
-
var
|
|
12
|
+
var _buttonItem = _interopRequireDefault(require("@atlaskit/menu/button-item"));
|
|
13
|
+
var _section = _interopRequireDefault(require("@atlaskit/menu/section"));
|
|
12
14
|
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); }
|
|
13
15
|
/**
|
|
14
16
|
* @jsxRuntime classic
|
|
@@ -66,11 +68,11 @@ var MoreOptions = exports.MoreOptions = function MoreOptions(_ref) {
|
|
|
66
68
|
element === null || element === void 0 || element.removeEventListener('keydown', handleEnter);
|
|
67
69
|
};
|
|
68
70
|
});
|
|
69
|
-
return (0, _react2.jsx)(
|
|
71
|
+
return (0, _react2.jsx)(_section.default, {
|
|
70
72
|
hasSeparator: true
|
|
71
73
|
}, (0, _react2.jsx)("span", {
|
|
72
74
|
css: buttonStyles
|
|
73
|
-
}, (0, _react2.jsx)(
|
|
75
|
+
}, (0, _react2.jsx)(_buttonItem.default, {
|
|
74
76
|
ref: ref
|
|
75
77
|
/* eslint-disable-next-line @atlassian/perf-linting/no-unstable-inline-props -- Ignored via go/ees017 (to be fixed) */,
|
|
76
78
|
onMouseDown: function onMouseDown(e) {
|
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
});
|
|
7
7
|
exports.EmptyState = void 0;
|
|
8
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
|
-
var _heading = _interopRequireDefault(require("@atlaskit/heading"));
|
|
9
|
+
var _heading = _interopRequireDefault(require("@atlaskit/heading/heading"));
|
|
10
10
|
var _primitives = require("@atlaskit/primitives");
|
|
11
11
|
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
12
12
|
|
|
@@ -17,7 +17,7 @@ var _analytics = require("@atlaskit/editor-common/analytics");
|
|
|
17
17
|
var _messages = require("@atlaskit/editor-common/messages");
|
|
18
18
|
var _typeAhead = require("@atlaskit/editor-common/type-ahead");
|
|
19
19
|
var _ui = require("@atlaskit/editor-common/ui");
|
|
20
|
-
var
|
|
20
|
+
var _menuGroup = _interopRequireDefault(require("@atlaskit/menu/menu-group"));
|
|
21
21
|
var _fg = require("@atlaskit/platform-feature-flags/fg");
|
|
22
22
|
var _compiled = require("@atlaskit/primitives/compiled");
|
|
23
23
|
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
|
|
@@ -531,7 +531,7 @@ var TypeAheadListComponent = /*#__PURE__*/_react.default.memo(function (_ref4) {
|
|
|
531
531
|
}
|
|
532
532
|
}), moreElementsInQuickInsertViewEnabled && list]
|
|
533
533
|
});
|
|
534
|
-
return (0, _react2.jsx)(
|
|
534
|
+
return (0, _react2.jsx)(_menuGroup.default, {
|
|
535
535
|
"aria-label": popupAriaLabel,
|
|
536
536
|
"aria-relevant": "additions removals"
|
|
537
537
|
}, (0, _react2.jsx)("div", {
|
|
@@ -17,7 +17,7 @@ var _typeAhead = require("@atlaskit/editor-common/type-ahead");
|
|
|
17
17
|
var _editorPluginConnectivity = require("@atlaskit/editor-plugin-connectivity");
|
|
18
18
|
var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
|
|
19
19
|
var _shortcut = require("@atlaskit/editor-shared-styles/shortcut");
|
|
20
|
-
var
|
|
20
|
+
var _buttonItem = _interopRequireDefault(require("@atlaskit/menu/button-item"));
|
|
21
21
|
var _visuallyHidden = _interopRequireDefault(require("@atlaskit/visually-hidden/visually-hidden"));
|
|
22
22
|
var _templateObject, _templateObject2, _templateObject3, _templateObject4;
|
|
23
23
|
/**
|
|
@@ -258,7 +258,7 @@ var TypeAheadListItem = exports.TypeAheadListItem = /*#__PURE__*/_react.default.
|
|
|
258
258
|
css: listItemClasses
|
|
259
259
|
}, (descriptionText || shortcutText) && (0, _react2.jsx)(_visuallyHidden.default, {
|
|
260
260
|
id: descriptionId
|
|
261
|
-
}, descriptionText, " ", shortcutText), (0, _react2.jsx)(
|
|
261
|
+
}, descriptionText, " ", shortcutText), (0, _react2.jsx)(_buttonItem.default, {
|
|
262
262
|
onClick: insertSelectedItem,
|
|
263
263
|
iconBefore: elementIcon,
|
|
264
264
|
isSelected: isSelected,
|
|
@@ -15,7 +15,7 @@ var _hooks = require("@atlaskit/editor-common/hooks");
|
|
|
15
15
|
var _typeAhead = require("@atlaskit/editor-common/type-ahead");
|
|
16
16
|
var _ui = require("@atlaskit/editor-common/ui");
|
|
17
17
|
var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
|
|
18
|
-
var
|
|
18
|
+
var _featureGates = _interopRequireDefault(require("@atlaskit/feature-gate-js-client/feature-gates"));
|
|
19
19
|
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
|
|
20
20
|
var _experiments = require("@atlaskit/tmp-editor-statsig/experiments");
|
|
21
21
|
var _analytics2 = require("../pm-plugins/analytics");
|
|
@@ -118,7 +118,7 @@ var TypeAheadPopup = exports.TypeAheadPopup = /*#__PURE__*/_react.default.memo(f
|
|
|
118
118
|
var time = stopTime - startTime;
|
|
119
119
|
|
|
120
120
|
// eslint-disable-next-line @atlaskit/platform/use-recommended-utils
|
|
121
|
-
|
|
121
|
+
_featureGates.default.getExperimentValue('cc_fd_db_quick_insert_options', 'isEnabled', false);
|
|
122
122
|
api === null || api === void 0 || (_api$analytics2 = api.analytics) === null || _api$analytics2 === void 0 || (_api$analytics2 = _api$analytics2.actions) === null || _api$analytics2 === void 0 || _api$analytics2.fireAnalyticsEvent({
|
|
123
123
|
action: _analytics.ACTION.RENDERED,
|
|
124
124
|
actionSubject: _analytics.ACTION_SUBJECT.TYPEAHEAD,
|
|
@@ -11,7 +11,7 @@ var _react = _interopRequireWildcard(require("react"));
|
|
|
11
11
|
var _reactIntl = require("react-intl");
|
|
12
12
|
var _analytics = require("@atlaskit/editor-common/analytics");
|
|
13
13
|
var _typeAhead = require("@atlaskit/editor-common/type-ahead");
|
|
14
|
-
var
|
|
14
|
+
var _fg = require("@atlaskit/platform-feature-flags/fg");
|
|
15
15
|
var _experiments = require("@atlaskit/tmp-editor-statsig/experiments");
|
|
16
16
|
var _expVal = require("@atlaskit/tmp-editor-statsig/expVal");
|
|
17
17
|
var _analytics2 = require("../pm-plugins/analytics");
|
|
@@ -58,7 +58,7 @@ var WrapperTypeAhead = exports.WrapperTypeAhead = /*#__PURE__*/_react.default.me
|
|
|
58
58
|
var registeredSurface = (0, _typeAheadSurfaces.getTypeAheadSurface)(triggerHandler.id);
|
|
59
59
|
var items = (0, _useLoadItems.useLoadItems)(triggerHandler, editorView, query, showMoreOptionsButton, api, intl, !registeredSurface);
|
|
60
60
|
(0, _react.useEffect)(function () {
|
|
61
|
-
if (!closed && (0,
|
|
61
|
+
if (!closed && (0, _fg.fg)('platform_editor_ease_of_use_metrics')) {
|
|
62
62
|
var _api$metrics;
|
|
63
63
|
api === null || api === void 0 || api.core.actions.execute(api === null || api === void 0 || (_api$metrics = api.metrics) === null || _api$metrics === void 0 ? void 0 : _api$metrics.commands.handleIntentToStartEdit({
|
|
64
64
|
shouldStartTimer: false,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { InsertTypeAheadStages, InsertTypeAheadStep } from '@atlaskit/adf-schema/steps';
|
|
2
2
|
import { SelectItemMode } from '@atlaskit/editor-common/type-ahead';
|
|
3
3
|
import { Fragment, Node as PMNode } from '@atlaskit/editor-prosemirror/model';
|
|
4
|
-
import { closeHistory } from '@atlaskit/prosemirror-history';
|
|
4
|
+
import { closeHistory } from '@atlaskit/prosemirror-history/closeHistory';
|
|
5
5
|
import { ACTIONS } from '../actions';
|
|
6
6
|
import { pluginKey } from '../key';
|
|
7
7
|
import { StatsModifier } from '../stats-modifier';
|
|
@@ -5,8 +5,9 @@ import { v4 as uuid } from 'uuid';
|
|
|
5
5
|
import { keyName as keyNameNormalized } from 'w3c-keyname';
|
|
6
6
|
import { TextSelection } from '@atlaskit/editor-prosemirror/state';
|
|
7
7
|
import { Decoration, DecorationSet } from '@atlaskit/editor-prosemirror/view';
|
|
8
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
9
|
-
import { redo
|
|
8
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
9
|
+
import { redo } from '@atlaskit/prosemirror-history/redo';
|
|
10
|
+
import { undo } from '@atlaskit/prosemirror-history/undo';
|
|
10
11
|
import { WrapperTypeAhead } from '../ui/WrapperTypeAhead';
|
|
11
12
|
import { closeTypeAhead } from './commands/close-type-ahead';
|
|
12
13
|
import { TYPE_AHEAD_DECORATION_DATA_ATTRIBUTE, TYPE_AHEAD_DECORATION_KEY } from './constants';
|
|
@@ -3,7 +3,7 @@ import { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
|
3
3
|
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
4
4
|
import { closest } from '@atlaskit/editor-common/utils';
|
|
5
5
|
import { DecorationSet } from '@atlaskit/editor-prosemirror/view';
|
|
6
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
6
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
7
7
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
8
8
|
import { ACTIONS } from './actions';
|
|
9
9
|
import { openTypeAheadAtCursor } from './commands/open-typeahead-at-cursor';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypeAheadAvailableNodes, typeAheadListMessages } from '@atlaskit/editor-common/type-ahead';
|
|
2
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
2
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
3
3
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
4
4
|
import { updateSelectedIndex } from './commands/update-selected-index';
|
|
5
5
|
import { itemIsDisabled } from './item-is-disabled';
|
|
@@ -12,7 +12,7 @@ import { ACTION, ACTION_SUBJECT, EVENT_TYPE, INPUT_METHOD } from '@atlaskit/edit
|
|
|
12
12
|
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
13
13
|
import { SelectItemMode, TypeAheadAvailableNodes } from '@atlaskit/editor-common/type-ahead';
|
|
14
14
|
import { DecorationSet } from '@atlaskit/editor-prosemirror/view';
|
|
15
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
15
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
16
16
|
import { closeTypeAhead } from './pm-plugins/commands/close-type-ahead';
|
|
17
17
|
import { insertTypeAheadItem } from './pm-plugins/commands/insert-type-ahead-item';
|
|
18
18
|
import { openTypeAheadAtCursor } from './pm-plugins/commands/open-typeahead-at-cursor';
|
|
@@ -13,7 +13,7 @@ import { SelectItemMode, typeAheadListMessages } from '@atlaskit/editor-common/t
|
|
|
13
13
|
import { AssistiveText } from '@atlaskit/editor-common/ui';
|
|
14
14
|
import { findParentNodeOfType } from '@atlaskit/editor-prosemirror/utils';
|
|
15
15
|
import { blockNodesVerticalMargin } from '@atlaskit/editor-shared-styles';
|
|
16
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
16
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
17
17
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
18
18
|
import { CloseSelectionOptions, TYPE_AHEAD_DECORATION_ELEMENT_ID, TYPE_AHEAD_POPUP_CONTENT_CLASS } from '../pm-plugins/constants';
|
|
19
19
|
import { getPluginState } from '../pm-plugins/utils';
|
|
@@ -7,7 +7,8 @@ import React, { useEffect, useRef } from 'react';
|
|
|
7
7
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled, @typescript-eslint/consistent-type-imports
|
|
8
8
|
import { css, jsx } from '@emotion/react';
|
|
9
9
|
import { getBrowserInfo } from '@atlaskit/editor-common/browser';
|
|
10
|
-
import
|
|
10
|
+
import ButtonItem from '@atlaskit/menu/button-item';
|
|
11
|
+
import Section from '@atlaskit/menu/section';
|
|
11
12
|
const buttonStyles = css({
|
|
12
13
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
13
14
|
'& > button:hover': {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import Heading from '@atlaskit/heading';
|
|
2
|
+
import Heading from '@atlaskit/heading/heading';
|
|
3
3
|
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
4
4
|
import { Flex, Text, xcss } from '@atlaskit/primitives';
|
|
5
5
|
const containerStyles = xcss({
|
|
@@ -14,7 +14,7 @@ import { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
|
14
14
|
import { toolbarInsertBlockMessages as messages } from '@atlaskit/editor-common/messages';
|
|
15
15
|
import { SelectItemMode, typeAheadListMessages } from '@atlaskit/editor-common/type-ahead';
|
|
16
16
|
import { AssistiveText } from '@atlaskit/editor-common/ui';
|
|
17
|
-
import
|
|
17
|
+
import MenuGroup from '@atlaskit/menu/menu-group';
|
|
18
18
|
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
19
19
|
import { Box, Inline, Text } from '@atlaskit/primitives/compiled';
|
|
20
20
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
@@ -14,7 +14,7 @@ import { SelectItemMode, typeAheadListMessages } from '@atlaskit/editor-common/t
|
|
|
14
14
|
import { isOfflineMode } from '@atlaskit/editor-plugin-connectivity';
|
|
15
15
|
import { relativeFontSizeToBase16 } from '@atlaskit/editor-shared-styles';
|
|
16
16
|
import { shortcutStyle } from '@atlaskit/editor-shared-styles/shortcut';
|
|
17
|
-
import
|
|
17
|
+
import ButtonItem from '@atlaskit/menu/button-item';
|
|
18
18
|
import VisuallyHidden from '@atlaskit/visually-hidden/visually-hidden';
|
|
19
19
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
20
20
|
export const itemIcon = css({
|
|
@@ -12,7 +12,7 @@ import { useSharedPluginStateWithSelector } from '@atlaskit/editor-common/hooks'
|
|
|
12
12
|
import { TypeAheadAvailableNodes } from '@atlaskit/editor-common/type-ahead';
|
|
13
13
|
import { findOverflowScrollParent, Popup } from '@atlaskit/editor-common/ui';
|
|
14
14
|
import { akEditorFloatingDialogZIndex } from '@atlaskit/editor-shared-styles';
|
|
15
|
-
import FeatureGates from '@atlaskit/feature-gate-js-client';
|
|
15
|
+
import FeatureGates from '@atlaskit/feature-gate-js-client/feature-gates';
|
|
16
16
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
17
17
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
18
18
|
import { fireTypeAheadClosedAnalyticsEvent } from '../pm-plugins/analytics';
|
|
@@ -2,7 +2,7 @@ import React, { useCallback, useEffect, useLayoutEffect, useMemo, useRef, useSta
|
|
|
2
2
|
import { useIntl } from 'react-intl';
|
|
3
3
|
import { ACTION, INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
4
4
|
import { SelectItemMode } from '@atlaskit/editor-common/type-ahead';
|
|
5
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
5
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
6
6
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
7
7
|
import { expVal } from '@atlaskit/tmp-editor-statsig/expVal';
|
|
8
8
|
import { fireTypeAheadClosedAnalyticsEvent } from '../pm-plugins/analytics';
|
|
@@ -2,7 +2,7 @@ import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
|
|
|
2
2
|
import { InsertTypeAheadStages, InsertTypeAheadStep } from '@atlaskit/adf-schema/steps';
|
|
3
3
|
import { SelectItemMode } from '@atlaskit/editor-common/type-ahead';
|
|
4
4
|
import { Fragment, Node as PMNode } from '@atlaskit/editor-prosemirror/model';
|
|
5
|
-
import { closeHistory } from '@atlaskit/prosemirror-history';
|
|
5
|
+
import { closeHistory } from '@atlaskit/prosemirror-history/closeHistory';
|
|
6
6
|
import { ACTIONS } from '../actions';
|
|
7
7
|
import { pluginKey } from '../key';
|
|
8
8
|
import { StatsModifier } from '../stats-modifier';
|
|
@@ -5,8 +5,9 @@ import { v4 as uuid } from 'uuid';
|
|
|
5
5
|
import { keyName as keyNameNormalized } from 'w3c-keyname';
|
|
6
6
|
import { TextSelection } from '@atlaskit/editor-prosemirror/state';
|
|
7
7
|
import { Decoration, DecorationSet } from '@atlaskit/editor-prosemirror/view';
|
|
8
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
9
|
-
import { redo
|
|
8
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
9
|
+
import { redo } from '@atlaskit/prosemirror-history/redo';
|
|
10
|
+
import { undo } from '@atlaskit/prosemirror-history/undo';
|
|
10
11
|
import { WrapperTypeAhead } from '../ui/WrapperTypeAhead';
|
|
11
12
|
import { closeTypeAhead } from './commands/close-type-ahead';
|
|
12
13
|
import { TYPE_AHEAD_DECORATION_DATA_ATTRIBUTE, TYPE_AHEAD_DECORATION_KEY } from './constants';
|
|
@@ -3,7 +3,7 @@ import { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
|
3
3
|
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
4
4
|
import { closest } from '@atlaskit/editor-common/utils';
|
|
5
5
|
import { DecorationSet } from '@atlaskit/editor-prosemirror/view';
|
|
6
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
6
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
7
7
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
8
8
|
import { ACTIONS } from './actions';
|
|
9
9
|
import { openTypeAheadAtCursor } from './commands/open-typeahead-at-cursor';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypeAheadAvailableNodes, typeAheadListMessages } from '@atlaskit/editor-common/type-ahead';
|
|
2
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
2
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
3
3
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
4
4
|
import { updateSelectedIndex } from './commands/update-selected-index';
|
|
5
5
|
import { itemIsDisabled } from './item-is-disabled';
|
|
@@ -12,7 +12,7 @@ import { ACTION, ACTION_SUBJECT, EVENT_TYPE, INPUT_METHOD } from '@atlaskit/edit
|
|
|
12
12
|
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
13
13
|
import { SelectItemMode, TypeAheadAvailableNodes } from '@atlaskit/editor-common/type-ahead';
|
|
14
14
|
import { DecorationSet } from '@atlaskit/editor-prosemirror/view';
|
|
15
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
15
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
16
16
|
import { closeTypeAhead } from './pm-plugins/commands/close-type-ahead';
|
|
17
17
|
import { insertTypeAheadItem } from './pm-plugins/commands/insert-type-ahead-item';
|
|
18
18
|
import { openTypeAheadAtCursor } from './pm-plugins/commands/open-typeahead-at-cursor';
|
|
@@ -14,7 +14,7 @@ import { SelectItemMode, typeAheadListMessages } from '@atlaskit/editor-common/t
|
|
|
14
14
|
import { AssistiveText } from '@atlaskit/editor-common/ui';
|
|
15
15
|
import { findParentNodeOfType } from '@atlaskit/editor-prosemirror/utils';
|
|
16
16
|
import { blockNodesVerticalMargin } from '@atlaskit/editor-shared-styles';
|
|
17
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
17
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
18
18
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
19
19
|
import { CloseSelectionOptions, TYPE_AHEAD_DECORATION_ELEMENT_ID, TYPE_AHEAD_POPUP_CONTENT_CLASS } from '../pm-plugins/constants';
|
|
20
20
|
import { getPluginState } from '../pm-plugins/utils';
|
|
@@ -7,7 +7,8 @@ import React, { useEffect, useRef } from 'react';
|
|
|
7
7
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled, @typescript-eslint/consistent-type-imports
|
|
8
8
|
import { css, jsx } from '@emotion/react';
|
|
9
9
|
import { getBrowserInfo } from '@atlaskit/editor-common/browser';
|
|
10
|
-
import
|
|
10
|
+
import ButtonItem from '@atlaskit/menu/button-item';
|
|
11
|
+
import Section from '@atlaskit/menu/section';
|
|
11
12
|
var buttonStyles = css({
|
|
12
13
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
13
14
|
'& > button:hover': {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import Heading from '@atlaskit/heading';
|
|
2
|
+
import Heading from '@atlaskit/heading/heading';
|
|
3
3
|
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
4
4
|
import { Flex, Text, xcss } from '@atlaskit/primitives';
|
|
5
5
|
var containerStyles = xcss({
|
|
@@ -16,7 +16,7 @@ import { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
|
16
16
|
import { toolbarInsertBlockMessages as messages } from '@atlaskit/editor-common/messages';
|
|
17
17
|
import { SelectItemMode, typeAheadListMessages } from '@atlaskit/editor-common/type-ahead';
|
|
18
18
|
import { AssistiveText } from '@atlaskit/editor-common/ui';
|
|
19
|
-
import
|
|
19
|
+
import MenuGroup from '@atlaskit/menu/menu-group';
|
|
20
20
|
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
21
21
|
import { Box, Inline, Text } from '@atlaskit/primitives/compiled';
|
|
22
22
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
@@ -16,7 +16,7 @@ import { SelectItemMode, typeAheadListMessages } from '@atlaskit/editor-common/t
|
|
|
16
16
|
import { isOfflineMode } from '@atlaskit/editor-plugin-connectivity';
|
|
17
17
|
import { relativeFontSizeToBase16 } from '@atlaskit/editor-shared-styles';
|
|
18
18
|
import { shortcutStyle } from '@atlaskit/editor-shared-styles/shortcut';
|
|
19
|
-
import
|
|
19
|
+
import ButtonItem from '@atlaskit/menu/button-item';
|
|
20
20
|
import VisuallyHidden from '@atlaskit/visually-hidden/visually-hidden';
|
|
21
21
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
22
22
|
export var itemIcon = css({
|
|
@@ -13,7 +13,7 @@ import { useSharedPluginStateWithSelector } from '@atlaskit/editor-common/hooks'
|
|
|
13
13
|
import { TypeAheadAvailableNodes } from '@atlaskit/editor-common/type-ahead';
|
|
14
14
|
import { findOverflowScrollParent, Popup } from '@atlaskit/editor-common/ui';
|
|
15
15
|
import { akEditorFloatingDialogZIndex } from '@atlaskit/editor-shared-styles';
|
|
16
|
-
import FeatureGates from '@atlaskit/feature-gate-js-client';
|
|
16
|
+
import FeatureGates from '@atlaskit/feature-gate-js-client/feature-gates';
|
|
17
17
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
18
18
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
19
19
|
import { fireTypeAheadClosedAnalyticsEvent } from '../pm-plugins/analytics';
|
|
@@ -3,7 +3,7 @@ import React, { useCallback, useEffect, useLayoutEffect, useMemo, useRef, useSta
|
|
|
3
3
|
import { useIntl } from 'react-intl';
|
|
4
4
|
import { ACTION, INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
5
5
|
import { SelectItemMode } from '@atlaskit/editor-common/type-ahead';
|
|
6
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
6
|
+
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
7
7
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
8
8
|
import { expVal } from '@atlaskit/tmp-editor-statsig/expVal';
|
|
9
9
|
import { fireTypeAheadClosedAnalyticsEvent } from '../pm-plugins/analytics';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-type-ahead",
|
|
3
|
-
"version": "16.1.
|
|
3
|
+
"version": "16.1.15",
|
|
4
4
|
"description": "Type-ahead plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@atlaskit/primitives": "^22.4.0",
|
|
42
42
|
"@atlaskit/prosemirror-history": "^1.2.0",
|
|
43
43
|
"@atlaskit/prosemirror-input-rules": "^4.0.0",
|
|
44
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
44
|
+
"@atlaskit/tmp-editor-statsig": "^159.0.0",
|
|
45
45
|
"@atlaskit/tokens": "^16.8.0",
|
|
46
46
|
"@atlaskit/visually-hidden": "^4.3.0",
|
|
47
47
|
"@babel/runtime": "^7.0.0",
|