@atlaskit/editor-core 198.6.6 → 198.6.7
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 +11 -0
- package/dist/cjs/composable-editor/hooks/useProviders.js +3 -6
- package/dist/cjs/composable-editor/utils/handleProviders.js +1 -9
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/composable-editor/hooks/useProviders.js +3 -6
- package/dist/es2019/composable-editor/utils/handleProviders.js +0 -9
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/composable-editor/hooks/useProviders.js +3 -6
- package/dist/esm/composable-editor/utils/handleProviders.js +1 -10
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/composable-editor/utils/handleProviders.d.ts +1 -1
- package/dist/types/create-editor/create-universal-preset.d.ts +0 -11
- package/dist/types/presets/default.d.ts +0 -10
- package/dist/types/presets/universal.d.ts +0 -11
- package/dist/types/presets/useUniversalPreset.d.ts +0 -11
- package/dist/types-ts4.5/composable-editor/utils/handleProviders.d.ts +1 -1
- package/dist/types-ts4.5/create-editor/create-universal-preset.d.ts +0 -11
- package/dist/types-ts4.5/presets/default.d.ts +0 -10
- package/dist/types-ts4.5/presets/universal.d.ts +0 -11
- package/dist/types-ts4.5/presets/useUniversalPreset.d.ts +0 -11
- package/package.json +3 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 198.6.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#153147](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/153147)
|
|
8
|
+
[`b5698cb5073d6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b5698cb5073d6) -
|
|
9
|
+
NOISSUE: Remove legacy context unit test
|
|
10
|
+
- [`656886f933139`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/656886f933139) -
|
|
11
|
+
Cleanup FF platform_editor_af_provider_from_plugin_config
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 198.6.6
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -8,7 +8,6 @@ exports.useProviders = void 0;
|
|
|
8
8
|
var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
|
|
9
9
|
var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
|
|
10
10
|
var _react = require("react");
|
|
11
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
12
11
|
/**
|
|
13
12
|
* This hook is used to replace the old approach of using the `providerFactory`.
|
|
14
13
|
*
|
|
@@ -78,11 +77,9 @@ var useProviders = exports.useProviders = function useProviders(_ref) {
|
|
|
78
77
|
}
|
|
79
78
|
}, [emojiProvider, editorApi]);
|
|
80
79
|
(0, _react.useEffect)(function () {
|
|
81
|
-
if (
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
editorApi === null || editorApi === void 0 || (_editorApi$customAuto = editorApi.customAutoformat) === null || _editorApi$customAuto === void 0 || _editorApi$customAuto.actions.setProvider(autoformattingProvider);
|
|
85
|
-
}
|
|
80
|
+
if (autoformattingProvider) {
|
|
81
|
+
var _editorApi$customAuto;
|
|
82
|
+
editorApi === null || editorApi === void 0 || (_editorApi$customAuto = editorApi.customAutoformat) === null || _editorApi$customAuto === void 0 || _editorApi$customAuto.actions.setProvider(autoformattingProvider);
|
|
86
83
|
}
|
|
87
84
|
}, [autoformattingProvider, editorApi]);
|
|
88
85
|
(0, _react.useEffect)(function () {
|
|
@@ -4,7 +4,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = handleProviders;
|
|
7
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
8
7
|
/**
|
|
9
8
|
*
|
|
10
9
|
* Utility to set all the providers on a provider factory
|
|
@@ -15,18 +14,14 @@ var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
|
15
14
|
* @param quickInsertProvider
|
|
16
15
|
*/
|
|
17
16
|
function handleProviders(providerFactory, _ref, extensionProvider, quickInsertProvider) {
|
|
18
|
-
var
|
|
19
|
-
mentionProvider = _ref.mentionProvider,
|
|
20
|
-
taskDecisionProvider = _ref.taskDecisionProvider,
|
|
17
|
+
var mentionProvider = _ref.mentionProvider,
|
|
21
18
|
contextIdentifierProvider = _ref.contextIdentifierProvider,
|
|
22
19
|
collabEditProvider = _ref.collabEditProvider,
|
|
23
20
|
activityProvider = _ref.activityProvider,
|
|
24
21
|
presenceProvider = _ref.presenceProvider,
|
|
25
22
|
macroProvider = _ref.macroProvider,
|
|
26
23
|
imageUploadProvider = _ref.imageUploadProvider,
|
|
27
|
-
autoformattingProvider = _ref.autoformattingProvider,
|
|
28
24
|
searchProvider = _ref.searchProvider;
|
|
29
|
-
providerFactory.setProvider('emojiProvider', emojiProvider);
|
|
30
25
|
providerFactory.setProvider('mentionProvider', mentionProvider);
|
|
31
26
|
providerFactory.setProvider('contextIdentifierProvider', contextIdentifierProvider);
|
|
32
27
|
providerFactory.setProvider('imageUploadProvider', imageUploadProvider);
|
|
@@ -35,9 +30,6 @@ function handleProviders(providerFactory, _ref, extensionProvider, quickInsertPr
|
|
|
35
30
|
providerFactory.setProvider('searchProvider', searchProvider);
|
|
36
31
|
providerFactory.setProvider('presenceProvider', presenceProvider);
|
|
37
32
|
providerFactory.setProvider('macroProvider', macroProvider);
|
|
38
|
-
if (!(0, _platformFeatureFlags.fg)('platform_editor_af_provider_from_plugin_config')) {
|
|
39
|
-
providerFactory.setProvider('autoformattingProvider', autoformattingProvider);
|
|
40
|
-
}
|
|
41
33
|
if (extensionProvider) {
|
|
42
34
|
providerFactory.setProvider('extensionProvider', Promise.resolve(extensionProvider));
|
|
43
35
|
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { useEffect } from 'react';
|
|
2
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
3
2
|
/**
|
|
4
3
|
* This hook is used to replace the old approach of using the `providerFactory`.
|
|
5
4
|
*
|
|
@@ -49,11 +48,9 @@ export const useProviders = ({
|
|
|
49
48
|
}
|
|
50
49
|
}, [emojiProvider, editorApi]);
|
|
51
50
|
useEffect(() => {
|
|
52
|
-
if (
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
editorApi === null || editorApi === void 0 ? void 0 : (_editorApi$customAuto = editorApi.customAutoformat) === null || _editorApi$customAuto === void 0 ? void 0 : _editorApi$customAuto.actions.setProvider(autoformattingProvider);
|
|
56
|
-
}
|
|
51
|
+
if (autoformattingProvider) {
|
|
52
|
+
var _editorApi$customAuto;
|
|
53
|
+
editorApi === null || editorApi === void 0 ? void 0 : (_editorApi$customAuto = editorApi.customAutoformat) === null || _editorApi$customAuto === void 0 ? void 0 : _editorApi$customAuto.actions.setProvider(autoformattingProvider);
|
|
57
54
|
}
|
|
58
55
|
}, [autoformattingProvider, editorApi]);
|
|
59
56
|
useEffect(() => {
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
2
|
-
|
|
3
1
|
/**
|
|
4
2
|
*
|
|
5
3
|
* Utility to set all the providers on a provider factory
|
|
@@ -10,19 +8,15 @@ import { fg } from '@atlaskit/platform-feature-flags';
|
|
|
10
8
|
* @param quickInsertProvider
|
|
11
9
|
*/
|
|
12
10
|
export default function handleProviders(providerFactory, {
|
|
13
|
-
emojiProvider,
|
|
14
11
|
mentionProvider,
|
|
15
|
-
taskDecisionProvider,
|
|
16
12
|
contextIdentifierProvider,
|
|
17
13
|
collabEditProvider,
|
|
18
14
|
activityProvider,
|
|
19
15
|
presenceProvider,
|
|
20
16
|
macroProvider,
|
|
21
17
|
imageUploadProvider,
|
|
22
|
-
autoformattingProvider,
|
|
23
18
|
searchProvider
|
|
24
19
|
}, extensionProvider, quickInsertProvider) {
|
|
25
|
-
providerFactory.setProvider('emojiProvider', emojiProvider);
|
|
26
20
|
providerFactory.setProvider('mentionProvider', mentionProvider);
|
|
27
21
|
providerFactory.setProvider('contextIdentifierProvider', contextIdentifierProvider);
|
|
28
22
|
providerFactory.setProvider('imageUploadProvider', imageUploadProvider);
|
|
@@ -31,9 +25,6 @@ export default function handleProviders(providerFactory, {
|
|
|
31
25
|
providerFactory.setProvider('searchProvider', searchProvider);
|
|
32
26
|
providerFactory.setProvider('presenceProvider', presenceProvider);
|
|
33
27
|
providerFactory.setProvider('macroProvider', macroProvider);
|
|
34
|
-
if (!fg('platform_editor_af_provider_from_plugin_config')) {
|
|
35
|
-
providerFactory.setProvider('autoformattingProvider', autoformattingProvider);
|
|
36
|
-
}
|
|
37
28
|
if (extensionProvider) {
|
|
38
29
|
providerFactory.setProvider('extensionProvider', Promise.resolve(extensionProvider));
|
|
39
30
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "198.6.
|
|
2
|
+
export const version = "198.6.7";
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
|
|
2
2
|
import _regeneratorRuntime from "@babel/runtime/regenerator";
|
|
3
3
|
import { useEffect } from 'react';
|
|
4
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
5
4
|
/**
|
|
6
5
|
* This hook is used to replace the old approach of using the `providerFactory`.
|
|
7
6
|
*
|
|
@@ -71,11 +70,9 @@ export var useProviders = function useProviders(_ref) {
|
|
|
71
70
|
}
|
|
72
71
|
}, [emojiProvider, editorApi]);
|
|
73
72
|
useEffect(function () {
|
|
74
|
-
if (
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
editorApi === null || editorApi === void 0 || (_editorApi$customAuto = editorApi.customAutoformat) === null || _editorApi$customAuto === void 0 || _editorApi$customAuto.actions.setProvider(autoformattingProvider);
|
|
78
|
-
}
|
|
73
|
+
if (autoformattingProvider) {
|
|
74
|
+
var _editorApi$customAuto;
|
|
75
|
+
editorApi === null || editorApi === void 0 || (_editorApi$customAuto = editorApi.customAutoformat) === null || _editorApi$customAuto === void 0 || _editorApi$customAuto.actions.setProvider(autoformattingProvider);
|
|
79
76
|
}
|
|
80
77
|
}, [autoformattingProvider, editorApi]);
|
|
81
78
|
useEffect(function () {
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
2
|
-
|
|
3
1
|
/**
|
|
4
2
|
*
|
|
5
3
|
* Utility to set all the providers on a provider factory
|
|
@@ -10,18 +8,14 @@ import { fg } from '@atlaskit/platform-feature-flags';
|
|
|
10
8
|
* @param quickInsertProvider
|
|
11
9
|
*/
|
|
12
10
|
export default function handleProviders(providerFactory, _ref, extensionProvider, quickInsertProvider) {
|
|
13
|
-
var
|
|
14
|
-
mentionProvider = _ref.mentionProvider,
|
|
15
|
-
taskDecisionProvider = _ref.taskDecisionProvider,
|
|
11
|
+
var mentionProvider = _ref.mentionProvider,
|
|
16
12
|
contextIdentifierProvider = _ref.contextIdentifierProvider,
|
|
17
13
|
collabEditProvider = _ref.collabEditProvider,
|
|
18
14
|
activityProvider = _ref.activityProvider,
|
|
19
15
|
presenceProvider = _ref.presenceProvider,
|
|
20
16
|
macroProvider = _ref.macroProvider,
|
|
21
17
|
imageUploadProvider = _ref.imageUploadProvider,
|
|
22
|
-
autoformattingProvider = _ref.autoformattingProvider,
|
|
23
18
|
searchProvider = _ref.searchProvider;
|
|
24
|
-
providerFactory.setProvider('emojiProvider', emojiProvider);
|
|
25
19
|
providerFactory.setProvider('mentionProvider', mentionProvider);
|
|
26
20
|
providerFactory.setProvider('contextIdentifierProvider', contextIdentifierProvider);
|
|
27
21
|
providerFactory.setProvider('imageUploadProvider', imageUploadProvider);
|
|
@@ -30,9 +24,6 @@ export default function handleProviders(providerFactory, _ref, extensionProvider
|
|
|
30
24
|
providerFactory.setProvider('searchProvider', searchProvider);
|
|
31
25
|
providerFactory.setProvider('presenceProvider', presenceProvider);
|
|
32
26
|
providerFactory.setProvider('macroProvider', macroProvider);
|
|
33
|
-
if (!fg('platform_editor_af_provider_from_plugin_config')) {
|
|
34
|
-
providerFactory.setProvider('autoformattingProvider', autoformattingProvider);
|
|
35
|
-
}
|
|
36
27
|
if (extensionProvider) {
|
|
37
28
|
providerFactory.setProvider('extensionProvider', Promise.resolve(extensionProvider));
|
|
38
29
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "198.6.
|
|
2
|
+
export var version = "198.6.7";
|
|
@@ -9,4 +9,4 @@ import type { ProviderFactory, Providers, QuickInsertProvider } from '@atlaskit/
|
|
|
9
9
|
* @param extensionProvider
|
|
10
10
|
* @param quickInsertProvider
|
|
11
11
|
*/
|
|
12
|
-
export default function handleProviders(providerFactory: ProviderFactory, {
|
|
12
|
+
export default function handleProviders(providerFactory: ProviderFactory, { mentionProvider, contextIdentifierProvider, collabEditProvider, activityProvider, presenceProvider, macroProvider, imageUploadProvider, searchProvider, }: Providers, extensionProvider?: ExtensionProvider, quickInsertProvider?: Promise<QuickInsertProvider>): void;
|
|
@@ -295,7 +295,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
295
295
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
296
296
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
297
297
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
298
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
299
298
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
300
299
|
};
|
|
301
300
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -648,7 +647,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
648
647
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
649
648
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
650
649
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
651
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
652
650
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
653
651
|
};
|
|
654
652
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -1656,7 +1654,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
1656
1654
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
1657
1655
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1658
1656
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1659
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1660
1657
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1661
1658
|
};
|
|
1662
1659
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -2392,7 +2389,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
2392
2389
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
2393
2390
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2394
2391
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2395
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2396
2392
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2397
2393
|
};
|
|
2398
2394
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -3279,7 +3275,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
3279
3275
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
3280
3276
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3281
3277
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3282
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3283
3278
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3284
3279
|
};
|
|
3285
3280
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -3729,7 +3724,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
3729
3724
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
3730
3725
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3731
3726
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3732
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3733
3727
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3734
3728
|
};
|
|
3735
3729
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -4473,7 +4467,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
4473
4467
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
4474
4468
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4475
4469
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4476
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4477
4470
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4478
4471
|
};
|
|
4479
4472
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -4821,7 +4814,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
4821
4814
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
4822
4815
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4823
4816
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4824
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4825
4817
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4826
4818
|
};
|
|
4827
4819
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -5411,7 +5403,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
5411
5403
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
5412
5404
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5413
5405
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5414
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5415
5406
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5416
5407
|
};
|
|
5417
5408
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -5991,7 +5982,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
5991
5982
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
5992
5983
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5993
5984
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5994
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5995
5985
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5996
5986
|
};
|
|
5997
5987
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -6344,7 +6334,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
6344
6334
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
6345
6335
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6346
6336
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6347
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6348
6337
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6349
6338
|
};
|
|
6350
6339
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -271,7 +271,6 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
271
271
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
272
272
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
273
273
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
274
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
275
274
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
276
275
|
};
|
|
277
276
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -619,7 +618,6 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
619
618
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
620
619
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
621
620
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
622
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
623
621
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
624
622
|
};
|
|
625
623
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -1209,7 +1207,6 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1209
1207
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
1210
1208
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1211
1209
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1212
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1213
1210
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1214
1211
|
};
|
|
1215
1212
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -1789,7 +1786,6 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1789
1786
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
1790
1787
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1791
1788
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1792
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1793
1789
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1794
1790
|
};
|
|
1795
1791
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -2142,7 +2138,6 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
2142
2138
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
2143
2139
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2144
2140
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2145
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2146
2141
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2147
2142
|
};
|
|
2148
2143
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -2794,7 +2789,6 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
2794
2789
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
2795
2790
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2796
2791
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2797
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2798
2792
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2799
2793
|
};
|
|
2800
2794
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -3142,7 +3136,6 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3142
3136
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
3143
3137
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3144
3138
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3145
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3146
3139
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3147
3140
|
};
|
|
3148
3141
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -3732,7 +3725,6 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3732
3725
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
3733
3726
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3734
3727
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3735
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3736
3728
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3737
3729
|
};
|
|
3738
3730
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -4312,7 +4304,6 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
4312
4304
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
4313
4305
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4314
4306
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4315
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4316
4307
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4317
4308
|
};
|
|
4318
4309
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -4665,7 +4656,6 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
4665
4656
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
4666
4657
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4667
4658
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4668
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4669
4659
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4670
4660
|
};
|
|
4671
4661
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -346,7 +346,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
346
346
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
347
347
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
348
348
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
349
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
350
349
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
351
350
|
};
|
|
352
351
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -699,7 +698,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
699
698
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
700
699
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
701
700
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
702
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
703
701
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
704
702
|
};
|
|
705
703
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -1707,7 +1705,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
1707
1705
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
1708
1706
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1709
1707
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1710
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1711
1708
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1712
1709
|
};
|
|
1713
1710
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -2443,7 +2440,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
2443
2440
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
2444
2441
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2445
2442
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2446
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2447
2443
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2448
2444
|
};
|
|
2449
2445
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -3330,7 +3326,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
3330
3326
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
3331
3327
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3332
3328
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3333
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3334
3329
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3335
3330
|
};
|
|
3336
3331
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -3780,7 +3775,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
3780
3775
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
3781
3776
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3782
3777
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3783
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3784
3778
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3785
3779
|
};
|
|
3786
3780
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -4524,7 +4518,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
4524
4518
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
4525
4519
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4526
4520
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4527
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4528
4521
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4529
4522
|
};
|
|
4530
4523
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -4872,7 +4865,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
4872
4865
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
4873
4866
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4874
4867
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4875
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4876
4868
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4877
4869
|
};
|
|
4878
4870
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -5462,7 +5454,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
5462
5454
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
5463
5455
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5464
5456
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5465
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5466
5457
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5467
5458
|
};
|
|
5468
5459
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -6042,7 +6033,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
6042
6033
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
6043
6034
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6044
6035
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6045
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6046
6036
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6047
6037
|
};
|
|
6048
6038
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -6395,7 +6385,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
6395
6385
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
6396
6386
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6397
6387
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6398
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6399
6388
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6400
6389
|
};
|
|
6401
6390
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -295,7 +295,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
295
295
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
296
296
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
297
297
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
298
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
299
298
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
300
299
|
};
|
|
301
300
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -648,7 +647,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
648
647
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
649
648
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
650
649
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
651
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
652
650
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
653
651
|
};
|
|
654
652
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -1656,7 +1654,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
1656
1654
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
1657
1655
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1658
1656
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1659
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1660
1657
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1661
1658
|
};
|
|
1662
1659
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -2392,7 +2389,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
2392
2389
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
2393
2390
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2394
2391
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2395
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2396
2392
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2397
2393
|
};
|
|
2398
2394
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -3279,7 +3275,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
3279
3275
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
3280
3276
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3281
3277
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3282
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3283
3278
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3284
3279
|
};
|
|
3285
3280
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -3729,7 +3724,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
3729
3724
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
3730
3725
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3731
3726
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3732
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3733
3727
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3734
3728
|
};
|
|
3735
3729
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -4473,7 +4467,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
4473
4467
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
4474
4468
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4475
4469
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4476
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4477
4470
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4478
4471
|
};
|
|
4479
4472
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -4821,7 +4814,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
4821
4814
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
4822
4815
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4823
4816
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4824
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4825
4817
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4826
4818
|
};
|
|
4827
4819
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -5411,7 +5403,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
5411
5403
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
5412
5404
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5413
5405
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5414
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5415
5406
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5416
5407
|
};
|
|
5417
5408
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -5991,7 +5982,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
5991
5982
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
5992
5983
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5993
5984
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5994
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5995
5985
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5996
5986
|
};
|
|
5997
5987
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -6344,7 +6334,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
6344
6334
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
6345
6335
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6346
6336
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6347
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6348
6337
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6349
6338
|
};
|
|
6350
6339
|
}, undefined>>, import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
@@ -9,4 +9,4 @@ import type { ProviderFactory, Providers, QuickInsertProvider } from '@atlaskit/
|
|
|
9
9
|
* @param extensionProvider
|
|
10
10
|
* @param quickInsertProvider
|
|
11
11
|
*/
|
|
12
|
-
export default function handleProviders(providerFactory: ProviderFactory, {
|
|
12
|
+
export default function handleProviders(providerFactory: ProviderFactory, { mentionProvider, contextIdentifierProvider, collabEditProvider, activityProvider, presenceProvider, macroProvider, imageUploadProvider, searchProvider, }: Providers, extensionProvider?: ExtensionProvider, quickInsertProvider?: Promise<QuickInsertProvider>): void;
|
|
@@ -438,7 +438,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
438
438
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
439
439
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
440
440
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
441
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
442
441
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
443
442
|
};
|
|
444
443
|
}, undefined>>,
|
|
@@ -864,7 +863,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
864
863
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
865
864
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
866
865
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
867
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
868
866
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
869
867
|
};
|
|
870
868
|
}, undefined>>,
|
|
@@ -2072,7 +2070,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
2072
2070
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
2073
2071
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2074
2072
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2075
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2076
2073
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2077
2074
|
};
|
|
2078
2075
|
}, undefined>>,
|
|
@@ -2956,7 +2953,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
2956
2953
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
2957
2954
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2958
2955
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2959
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2960
2956
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2961
2957
|
};
|
|
2962
2958
|
}, undefined>>,
|
|
@@ -4022,7 +4018,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
4022
4018
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
4023
4019
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4024
4020
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4025
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4026
4021
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4027
4022
|
};
|
|
4028
4023
|
}, undefined>>,
|
|
@@ -4564,7 +4559,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
4564
4559
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
4565
4560
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4566
4561
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4567
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4568
4562
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4569
4563
|
};
|
|
4570
4564
|
}, undefined>>,
|
|
@@ -5470,7 +5464,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
5470
5464
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
5471
5465
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5472
5466
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5473
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5474
5467
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5475
5468
|
};
|
|
5476
5469
|
}, undefined>>,
|
|
@@ -5891,7 +5884,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
5891
5884
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
5892
5885
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5893
5886
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5894
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5895
5887
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5896
5888
|
};
|
|
5897
5889
|
}, undefined>>,
|
|
@@ -6600,7 +6592,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
6600
6592
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
6601
6593
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6602
6594
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6603
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6604
6595
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6605
6596
|
};
|
|
6606
6597
|
}, undefined>>,
|
|
@@ -7297,7 +7288,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
7297
7288
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
7298
7289
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7299
7290
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7300
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7301
7291
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7302
7292
|
};
|
|
7303
7293
|
}, undefined>>,
|
|
@@ -7723,7 +7713,6 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
7723
7713
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
7724
7714
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7725
7715
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7726
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7727
7716
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7728
7717
|
};
|
|
7729
7718
|
}, undefined>>,
|
|
@@ -350,7 +350,6 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
350
350
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
351
351
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
352
352
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
353
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
354
353
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
355
354
|
};
|
|
356
355
|
}, undefined>>,
|
|
@@ -771,7 +770,6 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
771
770
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
772
771
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
773
772
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
774
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
775
773
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
776
774
|
};
|
|
777
775
|
}, undefined>>,
|
|
@@ -1480,7 +1478,6 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1480
1478
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
1481
1479
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1482
1480
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1483
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1484
1481
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
1485
1482
|
};
|
|
1486
1483
|
}, undefined>>,
|
|
@@ -2177,7 +2174,6 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
2177
2174
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
2178
2175
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2179
2176
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2180
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2181
2177
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2182
2178
|
};
|
|
2183
2179
|
}, undefined>>,
|
|
@@ -2603,7 +2599,6 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
2603
2599
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
2604
2600
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2605
2601
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2606
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2607
2602
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2608
2603
|
};
|
|
2609
2604
|
}, undefined>>,
|
|
@@ -3417,7 +3412,6 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3417
3412
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
3418
3413
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3419
3414
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3420
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3421
3415
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3422
3416
|
};
|
|
3423
3417
|
}, undefined>>,
|
|
@@ -3838,7 +3832,6 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3838
3832
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
3839
3833
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3840
3834
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3841
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3842
3835
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3843
3836
|
};
|
|
3844
3837
|
}, undefined>>,
|
|
@@ -4547,7 +4540,6 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
4547
4540
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
4548
4541
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4549
4542
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4550
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4551
4543
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4552
4544
|
};
|
|
4553
4545
|
}, undefined>>,
|
|
@@ -5244,7 +5236,6 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
5244
5236
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
5245
5237
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5246
5238
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5247
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5248
5239
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5249
5240
|
};
|
|
5250
5241
|
}, undefined>>,
|
|
@@ -5670,7 +5661,6 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
5670
5661
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
5671
5662
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5672
5663
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5673
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5674
5664
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5675
5665
|
};
|
|
5676
5666
|
}, undefined>>,
|
|
@@ -489,7 +489,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
489
489
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
490
490
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
491
491
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
492
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
493
492
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
494
493
|
};
|
|
495
494
|
}, undefined>>,
|
|
@@ -915,7 +914,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
915
914
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
916
915
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
917
916
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
918
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
919
917
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
920
918
|
};
|
|
921
919
|
}, undefined>>,
|
|
@@ -2123,7 +2121,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
2123
2121
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
2124
2122
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2125
2123
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2126
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2127
2124
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2128
2125
|
};
|
|
2129
2126
|
}, undefined>>,
|
|
@@ -3007,7 +3004,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
3007
3004
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
3008
3005
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3009
3006
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3010
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3011
3007
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
3012
3008
|
};
|
|
3013
3009
|
}, undefined>>,
|
|
@@ -4073,7 +4069,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
4073
4069
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
4074
4070
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4075
4071
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4076
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4077
4072
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4078
4073
|
};
|
|
4079
4074
|
}, undefined>>,
|
|
@@ -4615,7 +4610,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
4615
4610
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
4616
4611
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4617
4612
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4618
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4619
4613
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4620
4614
|
};
|
|
4621
4615
|
}, undefined>>,
|
|
@@ -5521,7 +5515,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
5521
5515
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
5522
5516
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5523
5517
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5524
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5525
5518
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5526
5519
|
};
|
|
5527
5520
|
}, undefined>>,
|
|
@@ -5942,7 +5935,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
5942
5935
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
5943
5936
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5944
5937
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5945
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5946
5938
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5947
5939
|
};
|
|
5948
5940
|
}, undefined>>,
|
|
@@ -6651,7 +6643,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
6651
6643
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
6652
6644
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6653
6645
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6654
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6655
6646
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6656
6647
|
};
|
|
6657
6648
|
}, undefined>>,
|
|
@@ -7348,7 +7339,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
7348
7339
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
7349
7340
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7350
7341
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7351
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7352
7342
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7353
7343
|
};
|
|
7354
7344
|
}, undefined>>,
|
|
@@ -7774,7 +7764,6 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
7774
7764
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
7775
7765
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7776
7766
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7777
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7778
7767
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7779
7768
|
};
|
|
7780
7769
|
}, undefined>>,
|
|
@@ -438,7 +438,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
438
438
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
439
439
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
440
440
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
441
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
442
441
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
443
442
|
};
|
|
444
443
|
}, undefined>>,
|
|
@@ -864,7 +863,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
864
863
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
865
864
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
866
865
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
867
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
868
866
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
869
867
|
};
|
|
870
868
|
}, undefined>>,
|
|
@@ -2072,7 +2070,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
2072
2070
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
2073
2071
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2074
2072
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2075
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2076
2073
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2077
2074
|
};
|
|
2078
2075
|
}, undefined>>,
|
|
@@ -2956,7 +2953,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
2956
2953
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
2957
2954
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2958
2955
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2959
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2960
2956
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
2961
2957
|
};
|
|
2962
2958
|
}, undefined>>,
|
|
@@ -4022,7 +4018,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
4022
4018
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
4023
4019
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4024
4020
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4025
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4026
4021
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4027
4022
|
};
|
|
4028
4023
|
}, undefined>>,
|
|
@@ -4564,7 +4559,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
4564
4559
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
4565
4560
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4566
4561
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4567
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4568
4562
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
4569
4563
|
};
|
|
4570
4564
|
}, undefined>>,
|
|
@@ -5470,7 +5464,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
5470
5464
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
5471
5465
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5472
5466
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5473
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5474
5467
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5475
5468
|
};
|
|
5476
5469
|
}, undefined>>,
|
|
@@ -5891,7 +5884,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
5891
5884
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
5892
5885
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5893
5886
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5894
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5895
5887
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
5896
5888
|
};
|
|
5897
5889
|
}, undefined>>,
|
|
@@ -6600,7 +6592,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
6600
6592
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
6601
6593
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6602
6594
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6603
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6604
6595
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
6605
6596
|
};
|
|
6606
6597
|
}, undefined>>,
|
|
@@ -7297,7 +7288,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
7297
7288
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
7298
7289
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7299
7290
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7300
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7301
7291
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7302
7292
|
};
|
|
7303
7293
|
}, undefined>>,
|
|
@@ -7723,7 +7713,6 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
7723
7713
|
(descriptor: import("react-intl-next").MessageDescriptor, values?: Record<string, string | number | boolean | {} | import("react").ReactPortal | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNodeArray | Date | import("intl-messageformat").FormatXMLElementFn<import("react").ReactNode, import("react").ReactNode> | null | undefined> | undefined, opts?: import("intl-messageformat").Options | undefined): import("react").ReactNode;
|
|
7724
7714
|
} | undefined) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7725
7715
|
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugin-block-controls").HandleOptions) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7726
|
-
hideDragHandle: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7727
7716
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
7728
7717
|
};
|
|
7729
7718
|
}, undefined>>,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "198.6.
|
|
3
|
+
"version": "198.6.7",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@atlaskit/analytics-next": "^10.1.0",
|
|
44
44
|
"@atlaskit/analytics-next-stable-react-context": "1.0.1",
|
|
45
45
|
"@atlaskit/button": "^20.2.0",
|
|
46
|
-
"@atlaskit/editor-common": "^93.
|
|
46
|
+
"@atlaskit/editor-common": "^93.6.0",
|
|
47
47
|
"@atlaskit/editor-json-transformer": "^8.20.0",
|
|
48
48
|
"@atlaskit/editor-plugin-quick-insert": "1.4.5",
|
|
49
49
|
"@atlaskit/editor-plugins": "^5.5.0",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"@atlaskit/visual-regression": "*",
|
|
104
104
|
"@atlassian/adf-schema-json": "^1.22.0",
|
|
105
105
|
"@atlassian/feature-flags-test-utils": "*",
|
|
106
|
-
"@atlassian/search-provider": "2.4.
|
|
106
|
+
"@atlassian/search-provider": "2.4.151",
|
|
107
107
|
"@emotion/jest": "^11.8.0",
|
|
108
108
|
"@storybook/addon-knobs": "^5.3.18",
|
|
109
109
|
"@testing-library/react": "^12.1.5",
|
|
@@ -232,9 +232,6 @@
|
|
|
232
232
|
"platform_editor_breakout_use_css": {
|
|
233
233
|
"type": "boolean"
|
|
234
234
|
},
|
|
235
|
-
"platform_editor_af_provider_from_plugin_config": {
|
|
236
|
-
"type": "boolean"
|
|
237
|
-
},
|
|
238
235
|
"editor_request_to_edit_task": {
|
|
239
236
|
"type": "boolean"
|
|
240
237
|
},
|