@atlaskit/editor-common 118.6.0 → 118.8.0
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 +52 -0
- package/afm-cc/tsconfig.json +3 -0
- package/afm-products/tsconfig.json +3 -0
- package/connectivity/isOfflineMode/package.json +10 -0
- package/connectivity/mode/package.json +10 -0
- package/dist/cjs/connectivity/isOfflineMode.js +12 -0
- package/dist/cjs/connectivity/mode.js +1 -0
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/provider-helpers/combine-providers.js +35 -1
- package/dist/cjs/quick-insert/getQuickInsertProviderMenuItemKey.js +9 -0
- package/dist/cjs/quick-insert/rank.js +2 -1
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/es2019/connectivity/isOfflineMode.js +6 -0
- package/dist/es2019/connectivity/mode.js +0 -0
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/provider-helpers/combine-providers.js +11 -1
- package/dist/es2019/quick-insert/getQuickInsertProviderMenuItemKey.js +1 -0
- package/dist/es2019/quick-insert/rank.js +1 -0
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/esm/connectivity/isOfflineMode.js +6 -0
- package/dist/esm/connectivity/mode.js +0 -0
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/provider-helpers/combine-providers.js +35 -1
- package/dist/esm/quick-insert/getQuickInsertProviderMenuItemKey.js +3 -0
- package/dist/esm/quick-insert/rank.js +1 -0
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/types/connectivity/isOfflineMode.d.ts +5 -0
- package/dist/types/connectivity/mode.d.ts +1 -0
- package/dist/types/extensions/types/extension-manifest.d.ts +5 -0
- package/dist/types/provider-factory/quick-insert-provider.d.ts +3 -0
- package/dist/types/provider-helpers/combine-providers.d.ts +1 -0
- package/dist/types/quick-insert/QuickInsertContext.d.ts +1 -0
- package/dist/types/quick-insert/getQuickInsertProviderMenuItemKey.d.ts +1 -0
- package/dist/types/quick-insert/rank.d.ts +1 -0
- package/package.json +2 -1
- package/quick-insert/get-provider-menu-item-key/package.json +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,57 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 118.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`c0cf420333ef1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c0cf420333ef1) -
|
|
8
|
+
Add public registration APIs for provider-backed Quick Insert components.
|
|
9
|
+
|
|
10
|
+
Providers can expose registered items directly:
|
|
11
|
+
|
|
12
|
+
```tsx
|
|
13
|
+
const getComponents = async () => [
|
|
14
|
+
{
|
|
15
|
+
key: 'insert-table',
|
|
16
|
+
component: TableItem,
|
|
17
|
+
parents: [{ type: 'menu-section', key: 'quick-insert', rank: 1 }],
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
|
|
26
|
+
## 118.7.0
|
|
27
|
+
|
|
28
|
+
### Minor Changes
|
|
29
|
+
|
|
30
|
+
- [`882186c3b96b6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/882186c3b96b6) -
|
|
31
|
+
Add an optional `hideCopyButton` capability to extension manifest nodes (`ExtensionModuleNode`).
|
|
32
|
+
When set, the extension's selection floating toolbar hides the copy button. Used by the redaction
|
|
33
|
+
extension so redacted content is delete-only (no copy, no configure).
|
|
34
|
+
|
|
35
|
+
The new toolbar behaviour is gated behind `platform_editor_extension_hide_copy_button`. When the
|
|
36
|
+
gate is off, the toolbar renders exactly as before. When the copy button is hidden, the trailing
|
|
37
|
+
toolbar separator is also hidden so delete-only toolbars do not render an orphaned divider.
|
|
38
|
+
|
|
39
|
+
```ts
|
|
40
|
+
const manifest: ExtensionManifest = {
|
|
41
|
+
// ...
|
|
42
|
+
modules: {
|
|
43
|
+
nodes: {
|
|
44
|
+
default: {
|
|
45
|
+
type: 'inlineExtension',
|
|
46
|
+
render: () => import('./MyExtension'),
|
|
47
|
+
// Hide the copy button on this node's selection toolbar
|
|
48
|
+
hideCopyButton: true,
|
|
49
|
+
},
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
};
|
|
53
|
+
```
|
|
54
|
+
|
|
3
55
|
## 118.6.0
|
|
4
56
|
|
|
5
57
|
### Minor Changes
|
package/afm-cc/tsconfig.json
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-common/connectivity/isOfflineMode",
|
|
3
|
+
"main": "../../dist/cjs/connectivity/isOfflineMode.js",
|
|
4
|
+
"module": "../../dist/esm/connectivity/isOfflineMode.js",
|
|
5
|
+
"module:es2019": "../../dist/es2019/connectivity/isOfflineMode.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../dist/types/connectivity/isOfflineMode.d.ts"
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-common/connectivity/mode",
|
|
3
|
+
"main": "../../dist/cjs/connectivity/mode.js",
|
|
4
|
+
"module": "../../dist/esm/connectivity/mode.js",
|
|
5
|
+
"module:es2019": "../../dist/es2019/connectivity/mode.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../dist/types/connectivity/mode.d.ts"
|
|
10
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.isOfflineMode = void 0;
|
|
7
|
+
/**
|
|
8
|
+
* Check if the connectivity mode represents ANY offline state
|
|
9
|
+
*/
|
|
10
|
+
var isOfflineMode = exports.isOfflineMode = function isOfflineMode(mode) {
|
|
11
|
+
return mode === 'offline' || mode === 'collab-offline' || mode === 'internet-offline';
|
|
12
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -28,7 +28,7 @@ var NETWORK_FAILURE_REGEX = /^network failure/i;
|
|
|
28
28
|
var RESIZE_OBSERVER_LOOP_REGEX = /ResizeObserver loop completed with undelivered notifications/;
|
|
29
29
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
30
30
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
31
|
-
var packageVersion = "118.
|
|
31
|
+
var packageVersion = "118.7.0";
|
|
32
32
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
33
33
|
// Remove URL as it has UGC
|
|
34
34
|
// Ignored via go/ees007
|
|
@@ -148,8 +148,42 @@ var _default = exports.default = function _default(providers) {
|
|
|
148
148
|
return _ref5.apply(this, arguments);
|
|
149
149
|
};
|
|
150
150
|
}();
|
|
151
|
+
|
|
152
|
+
// Ignored via go/ees005
|
|
153
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
154
|
+
var invokeOptionalList = /*#__PURE__*/function () {
|
|
155
|
+
var _ref6 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee5(methodName, args) {
|
|
156
|
+
var providersWithMethod, results, fulfilledResults;
|
|
157
|
+
return _regenerator.default.wrap(function (_context5) {
|
|
158
|
+
while (1) switch (_context5.prev = _context5.next) {
|
|
159
|
+
case 0:
|
|
160
|
+
_context5.next = 1;
|
|
161
|
+
return getFulfilledProviders();
|
|
162
|
+
case 1:
|
|
163
|
+
providersWithMethod = _context5.sent.filter(function (provider) {
|
|
164
|
+
return typeof provider[methodName] === 'function';
|
|
165
|
+
});
|
|
166
|
+
_context5.next = 2;
|
|
167
|
+
return (0, _promiseHelpers.waitForAllPromises)(providersWithMethod.map(createCallback(methodName, args)));
|
|
168
|
+
case 2:
|
|
169
|
+
results = _context5.sent;
|
|
170
|
+
fulfilledResults = (0, _promiseHelpers.getOnlyFulfilled)(results);
|
|
171
|
+
return _context5.abrupt("return", flatten(fulfilledResults).filter(function (result) {
|
|
172
|
+
return result;
|
|
173
|
+
}));
|
|
174
|
+
case 3:
|
|
175
|
+
case "end":
|
|
176
|
+
return _context5.stop();
|
|
177
|
+
}
|
|
178
|
+
}, _callee5);
|
|
179
|
+
}));
|
|
180
|
+
return function invokeOptionalList(_x6, _x7) {
|
|
181
|
+
return _ref6.apply(this, arguments);
|
|
182
|
+
};
|
|
183
|
+
}();
|
|
151
184
|
return {
|
|
152
185
|
invokeSingle: invokeSingle,
|
|
153
|
-
invokeList: invokeList
|
|
186
|
+
invokeList: invokeList,
|
|
187
|
+
invokeOptionalList: invokeOptionalList
|
|
154
188
|
};
|
|
155
189
|
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.getQuickInsertProviderMenuItemKey = void 0;
|
|
7
|
+
var getQuickInsertProviderMenuItemKey = exports.getQuickInsertProviderMenuItemKey = function getQuickInsertProviderMenuItemKey(key) {
|
|
8
|
+
return "quick-insert-provider-".concat(key);
|
|
9
|
+
};
|
|
@@ -4,7 +4,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
|
-
exports.TEXT_FORMATTING_SECTION_RANK = exports.STRUCTURE_SECTION_RANK = exports.ROVO_SECTION_RANK = exports.QUICK_INSERT_MENU_RANK = exports.MEDIA_SECTION_RANK = exports.DATA_AND_CHARTS_SECTION_RANK = exports.CATEGORY_VIEW_MORE_RANK = void 0;
|
|
7
|
+
exports.TEXT_FORMATTING_SECTION_RANK = exports.STRUCTURE_SECTION_RANK = exports.ROVO_SECTION_RANK = exports.QUICK_INSERT_MENU_RANK = exports.MEDIA_SECTION_RANK = exports.EXTENSION_ITEM_RANK = exports.DATA_AND_CHARTS_SECTION_RANK = exports.CATEGORY_VIEW_MORE_RANK = void 0;
|
|
8
8
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
9
9
|
var _keys = require("./keys");
|
|
10
10
|
/* eslint-disable @atlaskit/volt-strict-mode/no-multiple-exports */
|
|
@@ -15,4 +15,5 @@ var MEDIA_SECTION_RANK = exports.MEDIA_SECTION_RANK = (0, _defineProperty2.defau
|
|
|
15
15
|
var TEXT_FORMATTING_SECTION_RANK = exports.TEXT_FORMATTING_SECTION_RANK = (0, _defineProperty2.default)((0, _defineProperty2.default)({}, _keys.UNORDERED_LIST_MENU_ITEM.key, 1100), _keys.ORDERED_LIST_MENU_ITEM.key, 1200);
|
|
16
16
|
var ROVO_SECTION_RANK = exports.ROVO_SECTION_RANK = (0, _defineProperty2.default)({}, _keys.ASK_ROVO_MENU_ITEM.key, 100);
|
|
17
17
|
var DATA_AND_CHARTS_SECTION_RANK = exports.DATA_AND_CHARTS_SECTION_RANK = (0, _defineProperty2.default)((0, _defineProperty2.default)({}, _keys.JIRA_WORK_ITEMS_MENU_ITEM.key, 300), _keys.ASSETS_MENU_ITEM.key, 500);
|
|
18
|
+
var EXTENSION_ITEM_RANK = exports.EXTENSION_ITEM_RANK = 1500;
|
|
18
19
|
var CATEGORY_VIEW_MORE_RANK = exports.CATEGORY_VIEW_MORE_RANK = Number.MAX_SAFE_INTEGER;
|
|
@@ -24,7 +24,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
|
|
|
24
24
|
* @jsx jsx
|
|
25
25
|
*/ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
26
26
|
var packageName = "@atlaskit/editor-common";
|
|
27
|
-
var packageVersion = "118.
|
|
27
|
+
var packageVersion = "118.7.0";
|
|
28
28
|
var halfFocusRing = 1;
|
|
29
29
|
var dropOffset = '0, 8';
|
|
30
30
|
var fadeIn = (0, _react2.keyframes)({
|
|
File without changes
|
|
@@ -14,7 +14,7 @@ const NETWORK_FAILURE_REGEX = /^network failure/i;
|
|
|
14
14
|
const RESIZE_OBSERVER_LOOP_REGEX = /ResizeObserver loop completed with undelivered notifications/;
|
|
15
15
|
const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
16
16
|
const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
17
|
-
const packageVersion = "118.
|
|
17
|
+
const packageVersion = "118.7.0";
|
|
18
18
|
const sanitiseSentryEvents = (data, _hint) => {
|
|
19
19
|
// Remove URL as it has UGC
|
|
20
20
|
// Ignored via go/ees007
|
|
@@ -55,8 +55,18 @@ export default (providers => {
|
|
|
55
55
|
const fulfilledResults = getOnlyFulfilled(results);
|
|
56
56
|
return flatten(fulfilledResults).filter(result => result);
|
|
57
57
|
};
|
|
58
|
+
|
|
59
|
+
// Ignored via go/ees005
|
|
60
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
61
|
+
const invokeOptionalList = async (methodName, args) => {
|
|
62
|
+
const providersWithMethod = (await getFulfilledProviders()).filter(provider => typeof provider[methodName] === 'function');
|
|
63
|
+
const results = await waitForAllPromises(providersWithMethod.map(createCallback(methodName, args)));
|
|
64
|
+
const fulfilledResults = getOnlyFulfilled(results);
|
|
65
|
+
return flatten(fulfilledResults).filter(result => result);
|
|
66
|
+
};
|
|
58
67
|
return {
|
|
59
68
|
invokeSingle,
|
|
60
|
-
invokeList
|
|
69
|
+
invokeList,
|
|
70
|
+
invokeOptionalList
|
|
61
71
|
};
|
|
62
72
|
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const getQuickInsertProviderMenuItemKey = key => `quick-insert-provider-${key}`;
|
|
@@ -14,7 +14,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
|
14
14
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
15
15
|
import Layer from '../Layer';
|
|
16
16
|
const packageName = "@atlaskit/editor-common";
|
|
17
|
-
const packageVersion = "118.
|
|
17
|
+
const packageVersion = "118.7.0";
|
|
18
18
|
const halfFocusRing = 1;
|
|
19
19
|
const dropOffset = '0, 8';
|
|
20
20
|
const fadeIn = keyframes({
|
|
File without changes
|
|
@@ -20,7 +20,7 @@ var NETWORK_FAILURE_REGEX = /^network failure/i;
|
|
|
20
20
|
var RESIZE_OBSERVER_LOOP_REGEX = /ResizeObserver loop completed with undelivered notifications/;
|
|
21
21
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
22
22
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
23
|
-
var packageVersion = "118.
|
|
23
|
+
var packageVersion = "118.7.0";
|
|
24
24
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
25
25
|
// Remove URL as it has UGC
|
|
26
26
|
// Ignored via go/ees007
|
|
@@ -141,8 +141,42 @@ export default (function (providers) {
|
|
|
141
141
|
return _ref5.apply(this, arguments);
|
|
142
142
|
};
|
|
143
143
|
}();
|
|
144
|
+
|
|
145
|
+
// Ignored via go/ees005
|
|
146
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
147
|
+
var invokeOptionalList = /*#__PURE__*/function () {
|
|
148
|
+
var _ref6 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee5(methodName, args) {
|
|
149
|
+
var providersWithMethod, results, fulfilledResults;
|
|
150
|
+
return _regeneratorRuntime.wrap(function (_context5) {
|
|
151
|
+
while (1) switch (_context5.prev = _context5.next) {
|
|
152
|
+
case 0:
|
|
153
|
+
_context5.next = 1;
|
|
154
|
+
return getFulfilledProviders();
|
|
155
|
+
case 1:
|
|
156
|
+
providersWithMethod = _context5.sent.filter(function (provider) {
|
|
157
|
+
return typeof provider[methodName] === 'function';
|
|
158
|
+
});
|
|
159
|
+
_context5.next = 2;
|
|
160
|
+
return waitForAllPromises(providersWithMethod.map(createCallback(methodName, args)));
|
|
161
|
+
case 2:
|
|
162
|
+
results = _context5.sent;
|
|
163
|
+
fulfilledResults = getOnlyFulfilled(results);
|
|
164
|
+
return _context5.abrupt("return", flatten(fulfilledResults).filter(function (result) {
|
|
165
|
+
return result;
|
|
166
|
+
}));
|
|
167
|
+
case 3:
|
|
168
|
+
case "end":
|
|
169
|
+
return _context5.stop();
|
|
170
|
+
}
|
|
171
|
+
}, _callee5);
|
|
172
|
+
}));
|
|
173
|
+
return function invokeOptionalList(_x6, _x7) {
|
|
174
|
+
return _ref6.apply(this, arguments);
|
|
175
|
+
};
|
|
176
|
+
}();
|
|
144
177
|
return {
|
|
145
178
|
invokeSingle: invokeSingle,
|
|
146
|
-
invokeList: invokeList
|
|
179
|
+
invokeList: invokeList,
|
|
180
|
+
invokeOptionalList: invokeOptionalList
|
|
147
181
|
};
|
|
148
182
|
});
|
|
@@ -7,4 +7,5 @@ export var MEDIA_SECTION_RANK = _defineProperty(_defineProperty(_defineProperty(
|
|
|
7
7
|
export var TEXT_FORMATTING_SECTION_RANK = _defineProperty(_defineProperty({}, UNORDERED_LIST_MENU_ITEM.key, 1100), ORDERED_LIST_MENU_ITEM.key, 1200);
|
|
8
8
|
export var ROVO_SECTION_RANK = _defineProperty({}, ASK_ROVO_MENU_ITEM.key, 100);
|
|
9
9
|
export var DATA_AND_CHARTS_SECTION_RANK = _defineProperty(_defineProperty({}, JIRA_WORK_ITEMS_MENU_ITEM.key, 300), ASSETS_MENU_ITEM.key, 500);
|
|
10
|
+
export var EXTENSION_ITEM_RANK = 1500;
|
|
10
11
|
export var CATEGORY_VIEW_MORE_RANK = Number.MAX_SAFE_INTEGER;
|
|
@@ -21,7 +21,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
|
21
21
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
22
22
|
import Layer from '../Layer';
|
|
23
23
|
var packageName = "@atlaskit/editor-common";
|
|
24
|
-
var packageVersion = "118.
|
|
24
|
+
var packageVersion = "118.7.0";
|
|
25
25
|
var halfFocusRing = 1;
|
|
26
26
|
var dropOffset = '0, 8';
|
|
27
27
|
var fadeIn = keyframes({
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type Mode = 'offline' | 'online' | 'collab-offline' | 'internet-offline';
|
|
@@ -43,6 +43,11 @@ export type DynamicFieldDefinitions<T> = (parameters: T) => FieldDefinition[];
|
|
|
43
43
|
export type ExtensionModuleNode<T extends Parameters = Parameters> = {
|
|
44
44
|
blockTransform?: BlockTransformExtension;
|
|
45
45
|
getFieldsDefinition?: (extensionParameters: T) => Promise<FieldDefinition[] | DynamicFieldDefinitions<T>>;
|
|
46
|
+
/**
|
|
47
|
+
* When true, the copy button is hidden from this node's selection toolbar.
|
|
48
|
+
* Use for nodes whose content should not be copied (e.g. redactions).
|
|
49
|
+
*/
|
|
50
|
+
hideCopyButton?: boolean;
|
|
46
51
|
render: () => ExtensionComponentModule<T>;
|
|
47
52
|
type: 'extension' | 'inlineExtension' | 'bodiedExtension' | 'multiBodiedExtension';
|
|
48
53
|
update?: UpdateExtension<T>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { Node } from '@atlaskit/editor-prosemirror/model';
|
|
2
2
|
import type { EditorState, Transaction } from '@atlaskit/editor-prosemirror/state';
|
|
3
|
+
import type { RegisterMenuItem } from '@atlaskit/editor-ui-control-model/types';
|
|
3
4
|
import type { INPUT_METHOD } from '../analytics/types/enums';
|
|
4
5
|
import type { TypeAheadItem } from '../types/type-ahead';
|
|
5
6
|
export type QuickInsertActionInsert = (node?: Node | Record<string, any> | string, opts?: {
|
|
@@ -25,5 +26,7 @@ export type QuickInsertItem = TypeAheadItem & {
|
|
|
25
26
|
keywords?: Array<string>;
|
|
26
27
|
};
|
|
27
28
|
export type QuickInsertProvider = {
|
|
29
|
+
/** Registered leaf items for the Quick Insert browse menu. */
|
|
30
|
+
getComponents?: () => Promise<Array<RegisterMenuItem>>;
|
|
28
31
|
getItems: () => Promise<Array<QuickInsertItem>>;
|
|
29
32
|
};
|
|
@@ -5,5 +5,6 @@ export default _default;
|
|
|
5
5
|
*/
|
|
6
6
|
declare function _default<P>(providers: (P | Promise<P>)[]): {
|
|
7
7
|
invokeList: <T>(methodName: keyof P, args?: any[]) => Promise<T[]>;
|
|
8
|
+
invokeOptionalList: <T>(methodName: keyof P, args?: any[]) => Promise<T[]>;
|
|
8
9
|
invokeSingle: <T>(methodName: keyof P, args?: any[]) => Promise<T>;
|
|
9
10
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const getQuickInsertProviderMenuItemKey: (key: string) => string;
|
|
@@ -37,4 +37,5 @@ export declare const DATA_AND_CHARTS_SECTION_RANK: {
|
|
|
37
37
|
readonly 'quick-insert-assets-menu-item': 500;
|
|
38
38
|
readonly 'quick-insert-jira-work-items-menu-item': 300;
|
|
39
39
|
};
|
|
40
|
+
export declare const EXTENSION_ITEM_RANK = 1500;
|
|
40
41
|
export declare const CATEGORY_VIEW_MORE_RANK: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-common",
|
|
3
|
-
"version": "118.
|
|
3
|
+
"version": "118.8.0",
|
|
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/"
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"@atlaskit/editor-tables": "^3.0.0",
|
|
50
50
|
"@atlaskit/editor-toolbar": "^2.4.0",
|
|
51
51
|
"@atlaskit/editor-toolbar-model": "^1.2.0",
|
|
52
|
+
"@atlaskit/editor-ui-control-model": "^2.5.0",
|
|
52
53
|
"@atlaskit/emoji": "^71.16.0",
|
|
53
54
|
"@atlaskit/feature-gate-js-client": "^6.0.0",
|
|
54
55
|
"@atlaskit/icon": "^37.3.0",
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-common/quick-insert/get-provider-menu-item-key",
|
|
3
|
+
"main": "../../dist/cjs/quick-insert/getQuickInsertProviderMenuItemKey.js",
|
|
4
|
+
"module": "../../dist/esm/quick-insert/getQuickInsertProviderMenuItemKey.js",
|
|
5
|
+
"module:es2019": "../../dist/es2019/quick-insert/getQuickInsertProviderMenuItemKey.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../dist/types/quick-insert/getQuickInsertProviderMenuItemKey.d.ts"
|
|
10
|
+
}
|