@atlaskit/editor-core 193.5.0 → 193.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/composable-editor/package.json +1 -1
- package/dist/cjs/ui/ContextPanel/index.js +25 -21
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ui/ContextPanel/index.js +27 -23
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ui/ContextPanel/index.js +25 -21
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/create-editor/ReactEditorView.d.ts +2 -2
- package/dist/types/create-editor/WithEditorView.d.ts +1 -1
- package/dist/types/create-editor/create-preset.d.ts +13 -13
- package/dist/types/presets/default.d.ts +10 -10
- package/dist/types/presets/universal.d.ts +13 -13
- package/dist/types/presets/useUniversalPreset.d.ts +652 -652
- package/dist/types/ui/Appearance/Comment/Comment.d.ts +2 -2
- package/dist/types/ui/Appearance/FullPage/FullPageContentArea.d.ts +2 -2
- package/dist/types/ui/Appearance/FullPage/FullPageToolbar.d.ts +2 -2
- package/dist/types/ui/ChromeCollapsed/index.d.ts +2 -2
- package/dist/types/ui/ToolbarHelp/index.d.ts +2 -2
- package/dist/types-ts4.5/create-editor/ReactEditorView.d.ts +2 -2
- package/dist/types-ts4.5/create-editor/WithEditorView.d.ts +1 -1
- package/dist/types-ts4.5/create-editor/create-preset.d.ts +13 -13
- package/dist/types-ts4.5/presets/default.d.ts +10 -10
- package/dist/types-ts4.5/presets/universal.d.ts +13 -13
- package/dist/types-ts4.5/presets/useUniversalPreset.d.ts +660 -660
- package/dist/types-ts4.5/ui/Appearance/Comment/Comment.d.ts +2 -2
- package/dist/types-ts4.5/ui/Appearance/FullPage/FullPageContentArea.d.ts +2 -2
- package/dist/types-ts4.5/ui/Appearance/FullPage/FullPageToolbar.d.ts +2 -2
- package/dist/types-ts4.5/ui/ChromeCollapsed/index.d.ts +2 -2
- package/dist/types-ts4.5/ui/ToolbarHelp/index.d.ts +2 -2
- package/editor/package.json +1 -1
- package/editor-context/package.json +1 -1
- package/element-browser/package.json +1 -1
- package/labs-next/package.json +1 -1
- package/messages/package.json +1 -1
- package/package.json +6 -6
- package/preset-default/package.json +1 -1
- package/preset-universal/package.json +1 -1
- package/test-utils/package.json +1 -1
- package/use-preset/package.json +1 -1
- package/version-wrapper/package.json +1 -1
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import type { WrappedComponentProps } from 'react-intl-next';
|
|
4
4
|
import type { EditorAppearanceComponentProps } from '../../../types';
|
|
5
|
-
export declare const CommentEditorWithIntl: React.FC<import("react-intl-next").WithIntlProps<EditorAppearanceComponentProps & WrappedComponentProps
|
|
6
|
-
WrappedComponent: React.ComponentType<EditorAppearanceComponentProps & WrappedComponentProps
|
|
5
|
+
export declare const CommentEditorWithIntl: React.FC<import("react-intl-next").WithIntlProps<EditorAppearanceComponentProps & WrappedComponentProps>> & {
|
|
6
|
+
WrappedComponent: React.ComponentType<EditorAppearanceComponentProps & WrappedComponentProps>;
|
|
7
7
|
};
|
|
@@ -34,7 +34,7 @@ type ScrollContainerRefs = {
|
|
|
34
34
|
scrollContainer: HTMLDivElement | null;
|
|
35
35
|
contentArea: HTMLDivElement | null;
|
|
36
36
|
};
|
|
37
|
-
export declare const FullPageContentArea: React.ForwardRefExoticComponent<Pick<import("react-intl-next").WithIntlProps<React.PropsWithChildren<FullPageEditorContentAreaProps & WrappedComponentProps
|
|
38
|
-
WrappedComponent: React.ComponentType<FullPageEditorContentAreaProps & WrappedComponentProps
|
|
37
|
+
export declare const FullPageContentArea: React.ForwardRefExoticComponent<Pick<import("react-intl-next").WithIntlProps<React.PropsWithChildren<FullPageEditorContentAreaProps & WrappedComponentProps & React.RefAttributes<ScrollContainerRefs>>>, "key" | "children" | keyof FullPageEditorContentAreaProps | "forwardedRef"> & React.RefAttributes<any>> & {
|
|
38
|
+
WrappedComponent: React.ComponentType<FullPageEditorContentAreaProps & WrappedComponentProps & React.RefAttributes<ScrollContainerRefs>>;
|
|
39
39
|
};
|
|
40
40
|
export {};
|
|
@@ -34,6 +34,6 @@ export interface FullPageToolbarProps {
|
|
|
34
34
|
hideAvatarGroup?: boolean;
|
|
35
35
|
}
|
|
36
36
|
export declare const EditorToolbar: React.MemoExoticComponent<(props: FullPageToolbarProps & WrappedComponentProps) => jsx.JSX.Element | null>;
|
|
37
|
-
export declare const FullPageToolbar: React.FC<import("react-intl-next").WithIntlProps<FullPageToolbarProps & WrappedComponentProps
|
|
38
|
-
WrappedComponent: React.ComponentType<FullPageToolbarProps & WrappedComponentProps
|
|
37
|
+
export declare const FullPageToolbar: React.FC<import("react-intl-next").WithIntlProps<FullPageToolbarProps & WrappedComponentProps>> & {
|
|
38
|
+
WrappedComponent: React.ComponentType<FullPageToolbarProps & WrappedComponentProps>;
|
|
39
39
|
};
|
|
@@ -5,7 +5,7 @@ export interface Props {
|
|
|
5
5
|
text?: string;
|
|
6
6
|
onFocus?: (e: React.FocusEvent<HTMLInputElement>) => void;
|
|
7
7
|
}
|
|
8
|
-
declare const _default: React.FC<import("react-intl-next").WithIntlProps<Props & WrappedComponentProps
|
|
9
|
-
WrappedComponent: React.ComponentType<Props & WrappedComponentProps
|
|
8
|
+
declare const _default: React.FC<import("react-intl-next").WithIntlProps<Props & WrappedComponentProps>> & {
|
|
9
|
+
WrappedComponent: React.ComponentType<Props & WrappedComponentProps>;
|
|
10
10
|
};
|
|
11
11
|
export default _default;
|
|
@@ -5,7 +5,7 @@ interface Props {
|
|
|
5
5
|
title?: string;
|
|
6
6
|
titlePosition?: PositionType;
|
|
7
7
|
}
|
|
8
|
-
declare const _default: React.FC<import("react-intl-next").WithIntlProps<Props & WrappedComponentProps
|
|
9
|
-
WrappedComponent: React.ComponentType<Props & WrappedComponentProps
|
|
8
|
+
declare const _default: React.FC<import("react-intl-next").WithIntlProps<Props & WrappedComponentProps>> & {
|
|
9
|
+
WrappedComponent: React.ComponentType<Props & WrappedComponentProps>;
|
|
10
10
|
};
|
|
11
11
|
export default _default;
|
|
@@ -116,7 +116,7 @@ export declare class ReactEditorView<T = {}> extends React.Component<EditorViewP
|
|
|
116
116
|
private editor;
|
|
117
117
|
render(): JSX.Element;
|
|
118
118
|
}
|
|
119
|
-
declare const _default: React.FC<import("react-intl-next").WithIntlProps<EditorViewProps & WrappedComponentProps
|
|
120
|
-
WrappedComponent: React.ComponentType<EditorViewProps & WrappedComponentProps
|
|
119
|
+
declare const _default: React.FC<import("react-intl-next").WithIntlProps<EditorViewProps & WrappedComponentProps>> & {
|
|
120
|
+
WrappedComponent: React.ComponentType<EditorViewProps & WrappedComponentProps>;
|
|
121
121
|
};
|
|
122
122
|
export default _default;
|
|
@@ -3,4 +3,4 @@ import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
|
3
3
|
export interface WithEditorViewInternalProps {
|
|
4
4
|
editorView?: EditorView | undefined;
|
|
5
5
|
}
|
|
6
|
-
export declare const WithEditorView: <P extends WithEditorViewInternalProps>(WrappedComponent: React.ComponentType<React.PropsWithChildren<P>>) => (props: React.PropsWithChildren<Omit<P,
|
|
6
|
+
export declare const WithEditorView: <P extends WithEditorViewInternalProps>(WrappedComponent: React.ComponentType<React.PropsWithChildren<P>>) => (props: React.PropsWithChildren<Omit<P, keyof WithEditorViewInternalProps>>) => JSX.Element;
|
|
@@ -307,7 +307,7 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
307
307
|
} | undefined;
|
|
308
308
|
actions: {
|
|
309
309
|
editSelectedExtension: () => boolean;
|
|
310
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
310
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
311
311
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
312
312
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
313
313
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -574,7 +574,7 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
574
574
|
} | undefined;
|
|
575
575
|
actions: {
|
|
576
576
|
editSelectedExtension: () => boolean;
|
|
577
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
577
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
578
578
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
579
579
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
580
580
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -819,7 +819,7 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
819
819
|
} | undefined;
|
|
820
820
|
actions: {
|
|
821
821
|
editSelectedExtension: () => boolean;
|
|
822
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
822
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
823
823
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
824
824
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
825
825
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -1371,7 +1371,7 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
1371
1371
|
} | undefined;
|
|
1372
1372
|
actions: {
|
|
1373
1373
|
editSelectedExtension: () => boolean;
|
|
1374
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
1374
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
1375
1375
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
1376
1376
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
1377
1377
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -1757,7 +1757,7 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
1757
1757
|
} | undefined;
|
|
1758
1758
|
actions: {
|
|
1759
1759
|
editSelectedExtension: () => boolean;
|
|
1760
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
1760
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
1761
1761
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
1762
1762
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
1763
1763
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -1964,7 +1964,7 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
1964
1964
|
} | undefined;
|
|
1965
1965
|
actions: {
|
|
1966
1966
|
editSelectedExtension: () => boolean;
|
|
1967
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
1967
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
1968
1968
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
1969
1969
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
1970
1970
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -2360,7 +2360,7 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
2360
2360
|
import("@atlaskit/editor-common/types").MaybePlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"table", {
|
|
2361
2361
|
pluginConfiguration: import("@atlaskit/editor-plugin-table").TablePluginOptions | undefined;
|
|
2362
2362
|
actions: {
|
|
2363
|
-
insertTable: (analyticsPayload: import("@atlaskit/editor-common/analytics").AnalyticsEventPayload
|
|
2363
|
+
insertTable: (analyticsPayload: import("@atlaskit/editor-common/analytics").AnalyticsEventPayload) => import("@atlaskit/editor-common/types").Command;
|
|
2364
2364
|
};
|
|
2365
2365
|
sharedState: {
|
|
2366
2366
|
isFullWidthModeEnabled: boolean;
|
|
@@ -2726,7 +2726,7 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
2726
2726
|
} | undefined;
|
|
2727
2727
|
actions: {
|
|
2728
2728
|
editSelectedExtension: () => boolean;
|
|
2729
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
2729
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
2730
2730
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
2731
2731
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
2732
2732
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -3296,7 +3296,7 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
3296
3296
|
} | undefined;
|
|
3297
3297
|
actions: {
|
|
3298
3298
|
editSelectedExtension: () => boolean;
|
|
3299
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
3299
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
3300
3300
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
3301
3301
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
3302
3302
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -3539,7 +3539,7 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
3539
3539
|
} | undefined;
|
|
3540
3540
|
actions: {
|
|
3541
3541
|
editSelectedExtension: () => boolean;
|
|
3542
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
3542
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
3543
3543
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
3544
3544
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
3545
3545
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -4316,7 +4316,7 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
4316
4316
|
} | undefined;
|
|
4317
4317
|
actions: {
|
|
4318
4318
|
editSelectedExtension: () => boolean;
|
|
4319
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
4319
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
4320
4320
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
4321
4321
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
4322
4322
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -4583,7 +4583,7 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
4583
4583
|
} | undefined;
|
|
4584
4584
|
actions: {
|
|
4585
4585
|
editSelectedExtension: () => boolean;
|
|
4586
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
4586
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
4587
4587
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
4588
4588
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
4589
4589
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -4828,7 +4828,7 @@ export declare function createPreset(props: EditorProps, prevProps?: EditorProps
|
|
|
4828
4828
|
} | undefined;
|
|
4829
4829
|
actions: {
|
|
4830
4830
|
editSelectedExtension: () => boolean;
|
|
4831
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
4831
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
4832
4832
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
4833
4833
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
4834
4834
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -179,7 +179,7 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
179
179
|
} | undefined;
|
|
180
180
|
actions: {
|
|
181
181
|
editSelectedExtension: () => boolean;
|
|
182
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
182
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
183
183
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: EditorView) => Promise<boolean>;
|
|
184
184
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
185
185
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -422,7 +422,7 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
422
422
|
} | undefined;
|
|
423
423
|
actions: {
|
|
424
424
|
editSelectedExtension: () => boolean;
|
|
425
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
425
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
426
426
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: EditorView) => Promise<boolean>;
|
|
427
427
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
428
428
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -1199,7 +1199,7 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1199
1199
|
} | undefined;
|
|
1200
1200
|
actions: {
|
|
1201
1201
|
editSelectedExtension: () => boolean;
|
|
1202
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
1202
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
1203
1203
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: EditorView) => Promise<boolean>;
|
|
1204
1204
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
1205
1205
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -1466,7 +1466,7 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1466
1466
|
} | undefined;
|
|
1467
1467
|
actions: {
|
|
1468
1468
|
editSelectedExtension: () => boolean;
|
|
1469
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
1469
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
1470
1470
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: EditorView) => Promise<boolean>;
|
|
1471
1471
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
1472
1472
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -1711,7 +1711,7 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1711
1711
|
} | undefined;
|
|
1712
1712
|
actions: {
|
|
1713
1713
|
editSelectedExtension: () => boolean;
|
|
1714
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
1714
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
1715
1715
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: EditorView) => Promise<boolean>;
|
|
1716
1716
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
1717
1717
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -1961,7 +1961,7 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
1961
1961
|
} | undefined;
|
|
1962
1962
|
actions: {
|
|
1963
1963
|
editSelectedExtension: () => boolean;
|
|
1964
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
1964
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
1965
1965
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: EditorView) => Promise<boolean>;
|
|
1966
1966
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
1967
1967
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -2204,7 +2204,7 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
2204
2204
|
} | undefined;
|
|
2205
2205
|
actions: {
|
|
2206
2206
|
editSelectedExtension: () => boolean;
|
|
2207
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
2207
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
2208
2208
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: EditorView) => Promise<boolean>;
|
|
2209
2209
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
2210
2210
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -2981,7 +2981,7 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
2981
2981
|
} | undefined;
|
|
2982
2982
|
actions: {
|
|
2983
2983
|
editSelectedExtension: () => boolean;
|
|
2984
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
2984
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
2985
2985
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: EditorView) => Promise<boolean>;
|
|
2986
2986
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
2987
2987
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -3248,7 +3248,7 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3248
3248
|
} | undefined;
|
|
3249
3249
|
actions: {
|
|
3250
3250
|
editSelectedExtension: () => boolean;
|
|
3251
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
3251
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
3252
3252
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: EditorView) => Promise<boolean>;
|
|
3253
3253
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
3254
3254
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -3493,7 +3493,7 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3493
3493
|
} | undefined;
|
|
3494
3494
|
actions: {
|
|
3495
3495
|
editSelectedExtension: () => boolean;
|
|
3496
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
3496
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
3497
3497
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: EditorView) => Promise<boolean>;
|
|
3498
3498
|
runMacroAutoConvert: import("@atlaskit/editor-plugin-extension").RunMacroAutoConvert;
|
|
3499
3499
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugin-context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugin-extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -324,7 +324,7 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
324
324
|
} | undefined;
|
|
325
325
|
actions: {
|
|
326
326
|
editSelectedExtension: () => boolean;
|
|
327
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
327
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
328
328
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
329
329
|
runMacroAutoConvert: import("@atlaskit/editor-plugins/extension").RunMacroAutoConvert;
|
|
330
330
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugins/context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugins/extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -591,7 +591,7 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
591
591
|
} | undefined;
|
|
592
592
|
actions: {
|
|
593
593
|
editSelectedExtension: () => boolean;
|
|
594
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
594
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
595
595
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
596
596
|
runMacroAutoConvert: import("@atlaskit/editor-plugins/extension").RunMacroAutoConvert;
|
|
597
597
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugins/context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugins/extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -836,7 +836,7 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
836
836
|
} | undefined;
|
|
837
837
|
actions: {
|
|
838
838
|
editSelectedExtension: () => boolean;
|
|
839
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
839
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
840
840
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
841
841
|
runMacroAutoConvert: import("@atlaskit/editor-plugins/extension").RunMacroAutoConvert;
|
|
842
842
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugins/context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugins/extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -1388,7 +1388,7 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
1388
1388
|
} | undefined;
|
|
1389
1389
|
actions: {
|
|
1390
1390
|
editSelectedExtension: () => boolean;
|
|
1391
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
1391
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
1392
1392
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
1393
1393
|
runMacroAutoConvert: import("@atlaskit/editor-plugins/extension").RunMacroAutoConvert;
|
|
1394
1394
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugins/context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugins/extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -1774,7 +1774,7 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
1774
1774
|
} | undefined;
|
|
1775
1775
|
actions: {
|
|
1776
1776
|
editSelectedExtension: () => boolean;
|
|
1777
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
1777
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
1778
1778
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
1779
1779
|
runMacroAutoConvert: import("@atlaskit/editor-plugins/extension").RunMacroAutoConvert;
|
|
1780
1780
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugins/context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugins/extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -1981,7 +1981,7 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
1981
1981
|
} | undefined;
|
|
1982
1982
|
actions: {
|
|
1983
1983
|
editSelectedExtension: () => boolean;
|
|
1984
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
1984
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
1985
1985
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
1986
1986
|
runMacroAutoConvert: import("@atlaskit/editor-plugins/extension").RunMacroAutoConvert;
|
|
1987
1987
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugins/context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugins/extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -2377,7 +2377,7 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
2377
2377
|
import("@atlaskit/editor-common/types").MaybePlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"table", {
|
|
2378
2378
|
pluginConfiguration: import("@atlaskit/editor-plugins/table").TablePluginOptions | undefined;
|
|
2379
2379
|
actions: {
|
|
2380
|
-
insertTable: (analyticsPayload: import("@atlaskit/editor-common/analytics").AnalyticsEventPayload
|
|
2380
|
+
insertTable: (analyticsPayload: import("@atlaskit/editor-common/analytics").AnalyticsEventPayload) => import("@atlaskit/editor-common/types").Command;
|
|
2381
2381
|
};
|
|
2382
2382
|
sharedState: {
|
|
2383
2383
|
isFullWidthModeEnabled: boolean;
|
|
@@ -2743,7 +2743,7 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
2743
2743
|
} | undefined;
|
|
2744
2744
|
actions: {
|
|
2745
2745
|
editSelectedExtension: () => boolean;
|
|
2746
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
2746
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
2747
2747
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
2748
2748
|
runMacroAutoConvert: import("@atlaskit/editor-plugins/extension").RunMacroAutoConvert;
|
|
2749
2749
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugins/context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugins/extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -3313,7 +3313,7 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
3313
3313
|
} | undefined;
|
|
3314
3314
|
actions: {
|
|
3315
3315
|
editSelectedExtension: () => boolean;
|
|
3316
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
3316
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
3317
3317
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
3318
3318
|
runMacroAutoConvert: import("@atlaskit/editor-plugins/extension").RunMacroAutoConvert;
|
|
3319
3319
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugins/context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugins/extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -3556,7 +3556,7 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
3556
3556
|
} | undefined;
|
|
3557
3557
|
actions: {
|
|
3558
3558
|
editSelectedExtension: () => boolean;
|
|
3559
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
3559
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
3560
3560
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
3561
3561
|
runMacroAutoConvert: import("@atlaskit/editor-plugins/extension").RunMacroAutoConvert;
|
|
3562
3562
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugins/context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugins/extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -4333,7 +4333,7 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
4333
4333
|
} | undefined;
|
|
4334
4334
|
actions: {
|
|
4335
4335
|
editSelectedExtension: () => boolean;
|
|
4336
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
4336
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
4337
4337
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
4338
4338
|
runMacroAutoConvert: import("@atlaskit/editor-plugins/extension").RunMacroAutoConvert;
|
|
4339
4339
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugins/context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugins/extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -4600,7 +4600,7 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
4600
4600
|
} | undefined;
|
|
4601
4601
|
actions: {
|
|
4602
4602
|
editSelectedExtension: () => boolean;
|
|
4603
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
4603
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
4604
4604
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
4605
4605
|
runMacroAutoConvert: import("@atlaskit/editor-plugins/extension").RunMacroAutoConvert;
|
|
4606
4606
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugins/context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugins/extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
@@ -4845,7 +4845,7 @@ export default function createUniversalPreset(appearance: EditorAppearance | und
|
|
|
4845
4845
|
} | undefined;
|
|
4846
4846
|
actions: {
|
|
4847
4847
|
editSelectedExtension: () => boolean;
|
|
4848
|
-
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI
|
|
4848
|
+
api: () => import("@atlaskit/editor-common/extensions").ExtensionAPI;
|
|
4849
4849
|
insertMacroFromMacroBrowser: (macroProvider: import("@atlaskit/editor-common/provider-factory").MacroProvider, macroNode?: import("prosemirror-model").Node | undefined, isEditing?: boolean | undefined) => (view: import("prosemirror-view").EditorView) => Promise<boolean>;
|
|
4850
4850
|
runMacroAutoConvert: import("@atlaskit/editor-plugins/extension").RunMacroAutoConvert;
|
|
4851
4851
|
forceAutoSave: (applyChangeToContextPanel: import("@atlaskit/editor-plugins/context-panel").ApplyChangeHandler | undefined) => (resolve: () => void, reject?: import("@atlaskit/editor-plugins/extension").RejectSave | undefined) => import("@atlaskit/editor-common/types").Command;
|