@atlaskit/editor-core 202.5.0 → 203.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +58 -0
- package/dist/cjs/actions/index.js +6 -1
- package/dist/cjs/composable-editor/composable-editor.js +2 -2
- package/dist/cjs/create-editor/ReactEditorView.js +3 -3
- package/dist/cjs/create-editor/ReactEditorViewNext.js +3 -3
- package/dist/cjs/create-editor/create-editor.js +2 -2
- package/dist/cjs/create-editor/create-plugins-list.js +1 -1
- package/dist/cjs/create-editor/create-schema.js +3 -3
- package/dist/cjs/create-editor/get-ui-component.js +4 -4
- package/dist/cjs/editor-appearances/CommentEditor.js +2 -2
- package/dist/cjs/editor-appearances/FullPageEditor.js +2 -2
- package/dist/cjs/editor-appearances/FullWidthEditor.js +2 -2
- package/dist/cjs/editor.js +2 -1
- package/dist/cjs/index.js +4 -10
- package/dist/cjs/test-utils.js +4 -23
- package/dist/cjs/ui/Appearance/Comment/Comment.js +8 -8
- package/dist/cjs/ui/Appearance/FullPage/FullPageContentArea.js +2 -2
- package/dist/cjs/ui/Appearance/FullPage/FullPageToolbar.js +2 -2
- package/dist/cjs/ui/ContentStyles/layout.js +2 -14
- package/dist/cjs/ui/PluginSlot/index.js +2 -2
- package/dist/cjs/ui/Toolbar/Toolbar.js +1 -1
- package/dist/cjs/ui/Toolbar/ToolbarWithSizeDetector.js +1 -1
- package/dist/cjs/ui/Toolbar/toolbar-size.js +1 -1
- package/dist/cjs/ui/WithHelpTrigger/index.js +1 -1
- package/dist/cjs/utils/{index.js → whichTransitionEvent.js} +0 -15
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/actions/index.js +6 -1
- package/dist/es2019/composable-editor/composable-editor.js +1 -1
- package/dist/es2019/composable-editor.js +3 -0
- package/dist/es2019/create-editor/ReactEditorView.js +2 -2
- package/dist/es2019/create-editor/ReactEditorViewNext.js +2 -2
- package/dist/es2019/create-editor/create-editor.js +1 -1
- package/dist/es2019/create-editor/create-plugins-list.js +1 -1
- package/dist/es2019/create-editor/create-schema.js +1 -1
- package/dist/es2019/create-editor/get-ui-component.js +2 -2
- package/dist/es2019/editor-appearances/CommentEditor.js +1 -1
- package/dist/es2019/editor-appearances/FullPageEditor.js +1 -1
- package/dist/es2019/editor-appearances/FullWidthEditor.js +1 -1
- package/dist/es2019/editor-context.js +3 -0
- package/dist/es2019/editor.js +3 -0
- package/dist/es2019/i18n/index.js +3 -0
- package/dist/es2019/index.js +6 -2
- package/dist/es2019/labs-next.js +3 -0
- package/dist/es2019/preset-default.js +3 -0
- package/dist/es2019/preset-universal.js +3 -0
- package/dist/es2019/test-utils.js +4 -3
- package/dist/es2019/ui/Appearance/Comment/Comment.js +3 -3
- package/dist/es2019/ui/Appearance/FullPage/FullPageContentArea.js +1 -1
- package/dist/es2019/ui/Appearance/FullPage/FullPageToolbar.js +1 -1
- package/dist/es2019/ui/ContentStyles/layout.js +11 -7
- package/dist/es2019/ui/PluginSlot/index.js +1 -1
- package/dist/es2019/ui/Toolbar/Toolbar.js +1 -1
- package/dist/es2019/ui/Toolbar/ToolbarWithSizeDetector.js +1 -1
- package/dist/es2019/ui/Toolbar/toolbar-size.js +1 -2
- package/dist/es2019/ui/WithHelpTrigger/index.js +1 -1
- package/dist/es2019/utils/{index.js → whichTransitionEvent.js} +0 -3
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/actions/index.js +6 -1
- package/dist/esm/composable-editor/composable-editor.js +1 -1
- package/dist/esm/composable-editor.js +3 -0
- package/dist/esm/create-editor/ReactEditorView.js +2 -2
- package/dist/esm/create-editor/ReactEditorViewNext.js +2 -2
- package/dist/esm/create-editor/create-editor.js +1 -1
- package/dist/esm/create-editor/create-plugins-list.js +1 -1
- package/dist/esm/create-editor/create-schema.js +1 -1
- package/dist/esm/create-editor/get-ui-component.js +2 -2
- package/dist/esm/editor-appearances/CommentEditor.js +1 -1
- package/dist/esm/editor-appearances/FullPageEditor.js +1 -1
- package/dist/esm/editor-appearances/FullWidthEditor.js +1 -1
- package/dist/esm/editor-context.js +3 -0
- package/dist/esm/editor.js +3 -0
- package/dist/esm/i18n/index.js +3 -0
- package/dist/esm/index.js +6 -2
- package/dist/esm/labs-next.js +3 -0
- package/dist/esm/preset-default.js +3 -0
- package/dist/esm/preset-universal.js +3 -0
- package/dist/esm/test-utils.js +4 -3
- package/dist/esm/ui/Appearance/Comment/Comment.js +3 -3
- package/dist/esm/ui/Appearance/FullPage/FullPageContentArea.js +1 -1
- package/dist/esm/ui/Appearance/FullPage/FullPageToolbar.js +1 -1
- package/dist/esm/ui/ContentStyles/layout.js +2 -3
- package/dist/esm/ui/PluginSlot/index.js +1 -1
- package/dist/esm/ui/Toolbar/Toolbar.js +1 -1
- package/dist/esm/ui/Toolbar/ToolbarWithSizeDetector.js +1 -1
- package/dist/esm/ui/Toolbar/toolbar-size.js +1 -2
- package/dist/esm/ui/WithHelpTrigger/index.js +1 -1
- package/dist/esm/utils/{index.js → whichTransitionEvent.js} +0 -3
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/actions/index.d.ts +5 -1
- package/dist/types/composable-editor/editor-internal.d.ts +1 -1
- package/dist/types/create-editor/ErrorBoundary.d.ts +1 -1
- package/dist/types/create-editor/ReactEditorView/formatFullWidthAppearance.d.ts +1 -1
- package/dist/types/create-editor/ReactEditorView.d.ts +4 -4
- package/dist/types/create-editor/ReactEditorViewNext.d.ts +1 -1
- package/dist/types/create-editor/create-editor.d.ts +2 -1
- package/dist/types/create-editor/create-plugins-list.d.ts +2 -1
- package/dist/types/create-editor/create-schema.d.ts +1 -1
- package/dist/types/create-editor/create-universal-preset.d.ts +202 -101
- package/dist/types/create-editor/feature-flags-from-props.d.ts +1 -1
- package/dist/types/create-editor/get-plugins.d.ts +2 -4
- package/dist/types/create-editor/get-ui-component.d.ts +2 -1
- package/dist/types/editor.d.ts +1 -2
- package/dist/types/index.d.ts +3 -4
- package/dist/types/presets/default.d.ts +158 -70
- package/dist/types/presets/universal.d.ts +203 -103
- package/dist/types/presets/useUniversalPreset.d.ts +202 -101
- package/dist/types/test-utils.d.ts +1 -7
- package/dist/types/types/editor-appearance-component.d.ts +2 -6
- package/dist/types/types/editor-config.d.ts +1 -4
- package/dist/types/types/editor-instance.d.ts +2 -3
- package/dist/types/types/editor-props.d.ts +4 -8
- package/dist/types/types/index.d.ts +0 -9
- package/dist/types/types/pm-plugin-list.d.ts +1 -1
- package/dist/types/ui/Appearance/Chromeless.d.ts +1 -1
- package/dist/types/ui/Appearance/FullPage/FullPageContentArea.d.ts +3 -4
- package/dist/types/ui/Appearance/FullPage/FullPageToolbar.d.ts +2 -3
- package/dist/types/ui/Appearance/FullPage/StyledComponents.d.ts +4 -4
- package/dist/types/ui/ContentStyles/index.d.ts +3 -3
- package/dist/types/ui/ContentStyles/layout.d.ts +0 -2
- package/dist/types/ui/PluginSlot/index.d.ts +2 -3
- package/dist/types/ui/Toolbar/toolbar-size.d.ts +2 -2
- package/dist/types/ui/Toolbar/toolbar-types.d.ts +1 -2
- package/dist/types/utils/is-full-page.d.ts +1 -1
- package/dist/types/utils/performance/plugin-performance-observer.d.ts +2 -1
- package/dist/types/utils/performance/plugin-performance-report.d.ts +1 -2
- package/dist/types/utils/performance/track-transactions.d.ts +1 -1
- package/dist/types/utils/whichTransitionEvent.d.ts +1 -0
- package/dist/types-ts4.5/actions/index.d.ts +5 -1
- package/dist/types-ts4.5/composable-editor/editor-internal.d.ts +1 -1
- package/dist/types-ts4.5/create-editor/ErrorBoundary.d.ts +1 -1
- package/dist/types-ts4.5/create-editor/ReactEditorView/formatFullWidthAppearance.d.ts +1 -1
- package/dist/types-ts4.5/create-editor/ReactEditorView.d.ts +4 -4
- package/dist/types-ts4.5/create-editor/ReactEditorViewNext.d.ts +1 -1
- package/dist/types-ts4.5/create-editor/create-editor.d.ts +2 -1
- package/dist/types-ts4.5/create-editor/create-plugins-list.d.ts +2 -1
- package/dist/types-ts4.5/create-editor/create-schema.d.ts +1 -1
- package/dist/types-ts4.5/create-editor/create-universal-preset.d.ts +239 -101
- package/dist/types-ts4.5/create-editor/feature-flags-from-props.d.ts +1 -1
- package/dist/types-ts4.5/create-editor/get-plugins.d.ts +2 -4
- package/dist/types-ts4.5/create-editor/get-ui-component.d.ts +2 -1
- package/dist/types-ts4.5/editor.d.ts +1 -2
- package/dist/types-ts4.5/index.d.ts +3 -4
- package/dist/types-ts4.5/presets/default.d.ts +188 -70
- package/dist/types-ts4.5/presets/universal.d.ts +240 -103
- package/dist/types-ts4.5/presets/useUniversalPreset.d.ts +239 -101
- package/dist/types-ts4.5/test-utils.d.ts +1 -7
- package/dist/types-ts4.5/types/editor-appearance-component.d.ts +2 -6
- package/dist/types-ts4.5/types/editor-config.d.ts +1 -4
- package/dist/types-ts4.5/types/editor-instance.d.ts +2 -3
- package/dist/types-ts4.5/types/editor-props.d.ts +4 -8
- package/dist/types-ts4.5/types/index.d.ts +0 -9
- package/dist/types-ts4.5/types/pm-plugin-list.d.ts +1 -1
- package/dist/types-ts4.5/ui/Appearance/Chromeless.d.ts +1 -1
- package/dist/types-ts4.5/ui/Appearance/FullPage/FullPageContentArea.d.ts +3 -4
- package/dist/types-ts4.5/ui/Appearance/FullPage/FullPageToolbar.d.ts +2 -3
- package/dist/types-ts4.5/ui/Appearance/FullPage/StyledComponents.d.ts +4 -4
- package/dist/types-ts4.5/ui/ContentStyles/index.d.ts +3 -3
- package/dist/types-ts4.5/ui/ContentStyles/layout.d.ts +0 -2
- package/dist/types-ts4.5/ui/PluginSlot/index.d.ts +2 -3
- package/dist/types-ts4.5/ui/Toolbar/toolbar-size.d.ts +2 -2
- package/dist/types-ts4.5/ui/Toolbar/toolbar-types.d.ts +1 -2
- package/dist/types-ts4.5/utils/is-full-page.d.ts +1 -1
- package/dist/types-ts4.5/utils/performance/plugin-performance-observer.d.ts +2 -1
- package/dist/types-ts4.5/utils/performance/plugin-performance-report.d.ts +1 -2
- package/dist/types-ts4.5/utils/performance/track-transactions.d.ts +1 -1
- package/dist/types-ts4.5/utils/whichTransitionEvent.d.ts +1 -0
- package/package.json +14 -17
- package/dist/cjs/create-editor/ReactEditorViewContext.js +0 -8
- package/dist/cjs/create-editor/index.js +0 -42
- package/dist/cjs/create-editor/sort-by-order.js +0 -18
- package/dist/cjs/element-browser.js +0 -12
- package/dist/cjs/event-dispatcher/index.js +0 -18
- package/dist/cjs/messages.js +0 -36
- package/dist/cjs/nodeviews/index.js +0 -1
- package/dist/cjs/preset-builder.js +0 -12
- package/dist/cjs/types/browser.js +0 -1
- package/dist/cjs/types/editor-appearance.js +0 -1
- package/dist/cjs/types/editor-plugin.js +0 -1
- package/dist/cjs/types/editor-react-context.js +0 -1
- package/dist/cjs/types/empty-state-handler.js +0 -1
- package/dist/cjs/types/feature-flags.js +0 -1
- package/dist/cjs/types/performance-tracking.js +0 -1
- package/dist/cjs/types/pm-config.js +0 -1
- package/dist/cjs/types/pm-plugin.js +0 -1
- package/dist/cjs/types/ui-components.js +0 -1
- package/dist/cjs/ui/Addon/index.js +0 -27
- package/dist/cjs/ui/Appearance/Comment/index.js +0 -12
- package/dist/cjs/ui/Appearance/FullPage/index.js +0 -12
- package/dist/cjs/ui/Toolbar/index.js +0 -26
- package/dist/cjs/ui/Toolbar/types.js +0 -36
- package/dist/es2019/create-editor/ReactEditorViewContext.js +0 -2
- package/dist/es2019/create-editor/index.js +0 -3
- package/dist/es2019/create-editor/sort-by-order.js +0 -1
- package/dist/es2019/element-browser.js +0 -1
- package/dist/es2019/event-dispatcher/index.js +0 -1
- package/dist/es2019/messages.js +0 -7
- package/dist/es2019/nodeviews/index.js +0 -0
- package/dist/es2019/preset-builder.js +0 -1
- package/dist/es2019/types/browser.js +0 -0
- package/dist/es2019/types/editor-appearance.js +0 -0
- package/dist/es2019/types/editor-plugin.js +0 -0
- package/dist/es2019/types/editor-react-context.js +0 -0
- package/dist/es2019/types/empty-state-handler.js +0 -0
- package/dist/es2019/types/feature-flags.js +0 -0
- package/dist/es2019/types/performance-tracking.js +0 -0
- package/dist/es2019/types/pm-config.js +0 -0
- package/dist/es2019/types/pm-plugin.js +0 -0
- package/dist/es2019/types/ui-components.js +0 -0
- package/dist/es2019/ui/Addon/index.js +0 -3
- package/dist/es2019/ui/Appearance/Comment/index.js +0 -1
- package/dist/es2019/ui/Appearance/FullPage/index.js +0 -1
- package/dist/es2019/ui/Toolbar/index.js +0 -3
- package/dist/es2019/ui/Toolbar/types.js +0 -1
- package/dist/esm/create-editor/ReactEditorViewContext.js +0 -2
- package/dist/esm/create-editor/index.js +0 -3
- package/dist/esm/create-editor/sort-by-order.js +0 -1
- package/dist/esm/element-browser.js +0 -1
- package/dist/esm/event-dispatcher/index.js +0 -1
- package/dist/esm/messages.js +0 -7
- package/dist/esm/nodeviews/index.js +0 -0
- package/dist/esm/preset-builder.js +0 -1
- package/dist/esm/types/browser.js +0 -0
- package/dist/esm/types/editor-appearance.js +0 -0
- package/dist/esm/types/editor-plugin.js +0 -0
- package/dist/esm/types/editor-react-context.js +0 -0
- package/dist/esm/types/empty-state-handler.js +0 -0
- package/dist/esm/types/feature-flags.js +0 -0
- package/dist/esm/types/performance-tracking.js +0 -0
- package/dist/esm/types/pm-config.js +0 -0
- package/dist/esm/types/pm-plugin.js +0 -0
- package/dist/esm/types/ui-components.js +0 -0
- package/dist/esm/ui/Addon/index.js +0 -3
- package/dist/esm/ui/Appearance/Comment/index.js +0 -1
- package/dist/esm/ui/Appearance/FullPage/index.js +0 -1
- package/dist/esm/ui/Toolbar/index.js +0 -3
- package/dist/esm/ui/Toolbar/types.js +0 -1
- package/dist/types/create-editor/ReactEditorViewContext.d.ts +0 -2
- package/dist/types/create-editor/index.d.ts +0 -3
- package/dist/types/create-editor/sort-by-order.d.ts +0 -1
- package/dist/types/element-browser.d.ts +0 -1
- package/dist/types/event-dispatcher/index.d.ts +0 -2
- package/dist/types/messages.d.ts +0 -6
- package/dist/types/nodeviews/index.d.ts +0 -1
- package/dist/types/preset-builder.d.ts +0 -1
- package/dist/types/types/browser.d.ts +0 -1
- package/dist/types/types/editor-appearance.d.ts +0 -1
- package/dist/types/types/editor-plugin.d.ts +0 -1
- package/dist/types/types/editor-react-context.d.ts +0 -1
- package/dist/types/types/empty-state-handler.d.ts +0 -1
- package/dist/types/types/feature-flags.d.ts +0 -1
- package/dist/types/types/performance-tracking.d.ts +0 -1
- package/dist/types/types/pm-config.d.ts +0 -1
- package/dist/types/types/pm-plugin.d.ts +0 -1
- package/dist/types/types/ui-components.d.ts +0 -1
- package/dist/types/ui/Addon/index.d.ts +0 -4
- package/dist/types/ui/Appearance/Comment/index.d.ts +0 -1
- package/dist/types/ui/Appearance/FullPage/index.d.ts +0 -1
- package/dist/types/ui/Toolbar/index.d.ts +0 -4
- package/dist/types/ui/Toolbar/types.d.ts +0 -2
- package/dist/types/utils/index.d.ts +0 -3
- package/dist/types-ts4.5/create-editor/ReactEditorViewContext.d.ts +0 -2
- package/dist/types-ts4.5/create-editor/index.d.ts +0 -3
- package/dist/types-ts4.5/create-editor/sort-by-order.d.ts +0 -1
- package/dist/types-ts4.5/element-browser.d.ts +0 -1
- package/dist/types-ts4.5/event-dispatcher/index.d.ts +0 -2
- package/dist/types-ts4.5/messages.d.ts +0 -6
- package/dist/types-ts4.5/nodeviews/index.d.ts +0 -1
- package/dist/types-ts4.5/preset-builder.d.ts +0 -1
- package/dist/types-ts4.5/types/browser.d.ts +0 -1
- package/dist/types-ts4.5/types/editor-appearance.d.ts +0 -1
- package/dist/types-ts4.5/types/editor-plugin.d.ts +0 -1
- package/dist/types-ts4.5/types/editor-react-context.d.ts +0 -1
- package/dist/types-ts4.5/types/empty-state-handler.d.ts +0 -1
- package/dist/types-ts4.5/types/feature-flags.d.ts +0 -1
- package/dist/types-ts4.5/types/performance-tracking.d.ts +0 -1
- package/dist/types-ts4.5/types/pm-config.d.ts +0 -1
- package/dist/types-ts4.5/types/pm-plugin.d.ts +0 -1
- package/dist/types-ts4.5/types/ui-components.d.ts +0 -1
- package/dist/types-ts4.5/ui/Addon/index.d.ts +0 -4
- package/dist/types-ts4.5/ui/Appearance/Comment/index.d.ts +0 -1
- package/dist/types-ts4.5/ui/Appearance/FullPage/index.d.ts +0 -1
- package/dist/types-ts4.5/ui/Toolbar/index.d.ts +0 -4
- package/dist/types-ts4.5/ui/Toolbar/types.d.ts +0 -2
- package/dist/types-ts4.5/utils/index.d.ts +0 -3
- package/element-browser/package.json +0 -15
- package/messages/package.json +0 -15
- package/preset-builder/package.json +0 -15
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import type { FeatureFlags } from '@atlaskit/editor-common/types';
|
|
1
2
|
import type { EditorNextProps } from '../types/editor-props';
|
|
2
|
-
import type { FeatureFlags } from '../types/feature-flags';
|
|
3
3
|
/**
|
|
4
4
|
* Transforms EditorProps to an FeatureFlags object,
|
|
5
5
|
* which is used by both current and archv3 editors.
|
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
import type { IntlShape } from 'react-intl-next';
|
|
2
2
|
import type { DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics';
|
|
3
|
+
import type { Dispatch, EventDispatcher } from '@atlaskit/editor-common/event-dispatcher';
|
|
3
4
|
import { type PortalProviderAPI } from '@atlaskit/editor-common/portal';
|
|
4
5
|
import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
|
|
5
6
|
import type { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
|
|
6
|
-
import type { ReactHookFactory, UIComponentFactory } from '@atlaskit/editor-common/types';
|
|
7
|
+
import type { FeatureFlags, MarkConfig, NodeConfig, ReactHookFactory, UIComponentFactory } from '@atlaskit/editor-common/types';
|
|
7
8
|
import type { Schema } from '@atlaskit/editor-prosemirror/model';
|
|
8
9
|
import type { EditorState, Transaction } from '@atlaskit/editor-prosemirror/state';
|
|
9
|
-
import type { Dispatch, EventDispatcher } from '../event-dispatcher';
|
|
10
|
-
import type { FeatureFlags } from '../types/feature-flags';
|
|
11
|
-
import type { MarkConfig, NodeConfig } from '../types/pm-config';
|
|
12
10
|
export type LightPMPluginFactoryParams = {
|
|
13
11
|
schema: Schema;
|
|
14
12
|
dispatch: Dispatch;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { EditorAppearance
|
|
2
|
+
import type { EditorAppearance } from '@atlaskit/editor-common/types';
|
|
3
|
+
import type { EditorAppearanceComponentProps } from '../types';
|
|
3
4
|
type ReturnType = React.ComponentType<React.PropsWithChildren<EditorAppearanceComponentProps<any[]>>>;
|
|
4
5
|
export default function getUiComponent(appearance: EditorAppearance): ReturnType;
|
|
5
6
|
export {};
|
|
@@ -6,8 +6,7 @@ import React from 'react';
|
|
|
6
6
|
import { jsx } from '@emotion/react';
|
|
7
7
|
import type { InitialPluginConfiguration } from './preset-universal';
|
|
8
8
|
import type { EditorProps } from './types/editor-props';
|
|
9
|
-
export type {
|
|
10
|
-
export type { FeedbackInfo } from '@atlaskit/editor-common/types';
|
|
9
|
+
export type { Command, CommandDispatch, DomAtPos, EditorAppearanceComponentProps, EditorConfig, EditorInstance, EditorProps, ExtensionConfig, ExtensionProvidersProp, MessageDescriptor, PMPluginCreateConfig, } from './types';
|
|
11
10
|
interface EditorPropsWithInitialPluginConfiguration extends EditorProps {
|
|
12
11
|
initialPluginConfiguration?: InitialPluginConfiguration;
|
|
13
12
|
}
|
|
@@ -22,9 +22,8 @@ export {
|
|
|
22
22
|
* DO NOT USE THIS WILL BE REMOVED SOON. This was intended for internal usage only
|
|
23
23
|
*/
|
|
24
24
|
ContextPanel, } from './ui/ContextPanel';
|
|
25
|
-
export
|
|
26
|
-
export {
|
|
27
|
-
export {
|
|
28
|
-
export type { Command, EditorPlugin, EditorProps, EditorInstance, CommandDispatch } from './types';
|
|
25
|
+
export { getNodesCount } from './utils/getNodesCount';
|
|
26
|
+
export { default as measurements } from './utils/performance/measure-enum';
|
|
27
|
+
export type { Command, EditorProps, EditorInstance, CommandDispatch } from './types';
|
|
29
28
|
export { default as EditorActions } from './actions';
|
|
30
29
|
export { createEditorContentStyle } from './ui/ContentStyles';
|
|
@@ -300,7 +300,12 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
300
300
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
301
301
|
pluginConfiguration: FeatureFlags;
|
|
302
302
|
sharedState: FeatureFlags;
|
|
303
|
-
}, FeatureFlags
|
|
303
|
+
}, FeatureFlags>>,
|
|
304
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
305
|
+
sharedState: {
|
|
306
|
+
mode: "offline" | "online";
|
|
307
|
+
};
|
|
308
|
+
}, undefined>>
|
|
304
309
|
];
|
|
305
310
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
306
311
|
actions: {
|
|
@@ -399,7 +404,12 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
399
404
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
400
405
|
pluginConfiguration: FeatureFlags;
|
|
401
406
|
sharedState: FeatureFlags;
|
|
402
|
-
}, FeatureFlags
|
|
407
|
+
}, FeatureFlags>>,
|
|
408
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
409
|
+
sharedState: {
|
|
410
|
+
mode: "offline" | "online";
|
|
411
|
+
};
|
|
412
|
+
}, undefined>>
|
|
403
413
|
];
|
|
404
414
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
405
415
|
actions: {
|
|
@@ -531,11 +541,7 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
531
541
|
];
|
|
532
542
|
sharedState: import("@atlaskit/editor-plugin-grid").GridPluginState | null;
|
|
533
543
|
actions: {
|
|
534
|
-
displayGrid: (
|
|
535
|
-
visible: boolean;
|
|
536
|
-
gridType: import("@atlaskit/editor-common/types").GridType;
|
|
537
|
-
highlight: import("@atlaskit/editor-plugin-grid").Highlights;
|
|
538
|
-
}) => boolean;
|
|
544
|
+
displayGrid: import("@atlaskit/editor-plugin-grid").CreateDisplayGrid;
|
|
539
545
|
};
|
|
540
546
|
}, import("@atlaskit/editor-plugin-grid").GridPluginOptions | undefined>,
|
|
541
547
|
import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
@@ -723,7 +729,12 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
723
729
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
724
730
|
pluginConfiguration: FeatureFlags;
|
|
725
731
|
sharedState: FeatureFlags;
|
|
726
|
-
}, FeatureFlags
|
|
732
|
+
}, FeatureFlags>>,
|
|
733
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
734
|
+
sharedState: {
|
|
735
|
+
mode: "offline" | "online";
|
|
736
|
+
};
|
|
737
|
+
}, undefined>>
|
|
727
738
|
];
|
|
728
739
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
729
740
|
actions: {
|
|
@@ -822,7 +833,12 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
822
833
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
823
834
|
pluginConfiguration: FeatureFlags;
|
|
824
835
|
sharedState: FeatureFlags;
|
|
825
|
-
}, FeatureFlags
|
|
836
|
+
}, FeatureFlags>>,
|
|
837
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
838
|
+
sharedState: {
|
|
839
|
+
mode: "offline" | "online";
|
|
840
|
+
};
|
|
841
|
+
}, undefined>>
|
|
826
842
|
];
|
|
827
843
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
828
844
|
actions: {
|
|
@@ -1071,7 +1087,12 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1071
1087
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
1072
1088
|
pluginConfiguration: FeatureFlags;
|
|
1073
1089
|
sharedState: FeatureFlags;
|
|
1074
|
-
}, FeatureFlags
|
|
1090
|
+
}, FeatureFlags>>,
|
|
1091
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
1092
|
+
sharedState: {
|
|
1093
|
+
mode: "offline" | "online";
|
|
1094
|
+
};
|
|
1095
|
+
}, undefined>>
|
|
1075
1096
|
];
|
|
1076
1097
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
1077
1098
|
actions: {
|
|
@@ -1127,7 +1148,12 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1127
1148
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
1128
1149
|
pluginConfiguration: FeatureFlags;
|
|
1129
1150
|
sharedState: FeatureFlags;
|
|
1130
|
-
}, FeatureFlags
|
|
1151
|
+
}, FeatureFlags>>,
|
|
1152
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
1153
|
+
sharedState: {
|
|
1154
|
+
mode: "offline" | "online";
|
|
1155
|
+
};
|
|
1156
|
+
}, undefined>>
|
|
1131
1157
|
];
|
|
1132
1158
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
1133
1159
|
actions: {
|
|
@@ -1283,11 +1309,7 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1283
1309
|
];
|
|
1284
1310
|
sharedState: import("@atlaskit/editor-plugin-grid").GridPluginState | null;
|
|
1285
1311
|
actions: {
|
|
1286
|
-
displayGrid: (
|
|
1287
|
-
visible: boolean;
|
|
1288
|
-
gridType: import("@atlaskit/editor-common/types").GridType;
|
|
1289
|
-
highlight: import("@atlaskit/editor-plugin-grid").Highlights;
|
|
1290
|
-
}) => boolean;
|
|
1312
|
+
displayGrid: import("@atlaskit/editor-plugin-grid").CreateDisplayGrid;
|
|
1291
1313
|
};
|
|
1292
1314
|
}, import("@atlaskit/editor-plugin-grid").GridPluginOptions | undefined>,
|
|
1293
1315
|
import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"floatingToolbar", {
|
|
@@ -1465,7 +1487,12 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1465
1487
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
1466
1488
|
pluginConfiguration: FeatureFlags;
|
|
1467
1489
|
sharedState: FeatureFlags;
|
|
1468
|
-
}, FeatureFlags
|
|
1490
|
+
}, FeatureFlags>>,
|
|
1491
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
1492
|
+
sharedState: {
|
|
1493
|
+
mode: "offline" | "online";
|
|
1494
|
+
};
|
|
1495
|
+
}, undefined>>
|
|
1469
1496
|
];
|
|
1470
1497
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
1471
1498
|
actions: {
|
|
@@ -1564,7 +1591,12 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1564
1591
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
1565
1592
|
pluginConfiguration: FeatureFlags;
|
|
1566
1593
|
sharedState: FeatureFlags;
|
|
1567
|
-
}, FeatureFlags
|
|
1594
|
+
}, FeatureFlags>>,
|
|
1595
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
1596
|
+
sharedState: {
|
|
1597
|
+
mode: "offline" | "online";
|
|
1598
|
+
};
|
|
1599
|
+
}, undefined>>
|
|
1568
1600
|
];
|
|
1569
1601
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
1570
1602
|
actions: {
|
|
@@ -1740,7 +1772,12 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1740
1772
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
1741
1773
|
pluginConfiguration: FeatureFlags;
|
|
1742
1774
|
sharedState: FeatureFlags;
|
|
1743
|
-
}, FeatureFlags
|
|
1775
|
+
}, FeatureFlags>>,
|
|
1776
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
1777
|
+
sharedState: {
|
|
1778
|
+
mode: "offline" | "online";
|
|
1779
|
+
};
|
|
1780
|
+
}, undefined>>
|
|
1744
1781
|
];
|
|
1745
1782
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
1746
1783
|
actions: {
|
|
@@ -1817,7 +1854,12 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1817
1854
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
1818
1855
|
pluginConfiguration: FeatureFlags;
|
|
1819
1856
|
sharedState: FeatureFlags;
|
|
1820
|
-
}, FeatureFlags
|
|
1857
|
+
}, FeatureFlags>>,
|
|
1858
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
1859
|
+
sharedState: {
|
|
1860
|
+
mode: "offline" | "online";
|
|
1861
|
+
};
|
|
1862
|
+
}, undefined>>
|
|
1821
1863
|
];
|
|
1822
1864
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
1823
1865
|
actions: {
|
|
@@ -1986,11 +2028,7 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
1986
2028
|
];
|
|
1987
2029
|
sharedState: import("@atlaskit/editor-plugin-grid").GridPluginState | null;
|
|
1988
2030
|
actions: {
|
|
1989
|
-
displayGrid: (
|
|
1990
|
-
visible: boolean;
|
|
1991
|
-
gridType: import("@atlaskit/editor-common/types").GridType;
|
|
1992
|
-
highlight: import("@atlaskit/editor-plugin-grid").Highlights;
|
|
1993
|
-
}) => boolean;
|
|
2031
|
+
displayGrid: import("@atlaskit/editor-plugin-grid").CreateDisplayGrid;
|
|
1994
2032
|
};
|
|
1995
2033
|
}, import("@atlaskit/editor-plugin-grid").GridPluginOptions | undefined>,
|
|
1996
2034
|
import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"floatingToolbar", {
|
|
@@ -2168,7 +2206,12 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
2168
2206
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
2169
2207
|
pluginConfiguration: FeatureFlags;
|
|
2170
2208
|
sharedState: FeatureFlags;
|
|
2171
|
-
}, FeatureFlags
|
|
2209
|
+
}, FeatureFlags>>,
|
|
2210
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
2211
|
+
sharedState: {
|
|
2212
|
+
mode: "offline" | "online";
|
|
2213
|
+
};
|
|
2214
|
+
}, undefined>>
|
|
2172
2215
|
];
|
|
2173
2216
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
2174
2217
|
actions: {
|
|
@@ -2267,7 +2310,12 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
2267
2310
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
2268
2311
|
pluginConfiguration: FeatureFlags;
|
|
2269
2312
|
sharedState: FeatureFlags;
|
|
2270
|
-
}, FeatureFlags
|
|
2313
|
+
}, FeatureFlags>>,
|
|
2314
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
2315
|
+
sharedState: {
|
|
2316
|
+
mode: "offline" | "online";
|
|
2317
|
+
};
|
|
2318
|
+
}, undefined>>
|
|
2271
2319
|
];
|
|
2272
2320
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
2273
2321
|
actions: {
|
|
@@ -2404,11 +2452,7 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
2404
2452
|
];
|
|
2405
2453
|
sharedState: import("@atlaskit/editor-plugin-grid").GridPluginState | null;
|
|
2406
2454
|
actions: {
|
|
2407
|
-
displayGrid: (
|
|
2408
|
-
visible: boolean;
|
|
2409
|
-
gridType: import("@atlaskit/editor-common/types").GridType;
|
|
2410
|
-
highlight: import("@atlaskit/editor-plugin-grid").Highlights;
|
|
2411
|
-
}) => boolean;
|
|
2455
|
+
displayGrid: import("@atlaskit/editor-plugin-grid").CreateDisplayGrid;
|
|
2412
2456
|
};
|
|
2413
2457
|
}, import("@atlaskit/editor-plugin-grid").GridPluginOptions | undefined>,
|
|
2414
2458
|
import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
@@ -2596,7 +2640,12 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
2596
2640
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
2597
2641
|
pluginConfiguration: FeatureFlags;
|
|
2598
2642
|
sharedState: FeatureFlags;
|
|
2599
|
-
}, FeatureFlags
|
|
2643
|
+
}, FeatureFlags>>,
|
|
2644
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
2645
|
+
sharedState: {
|
|
2646
|
+
mode: "offline" | "online";
|
|
2647
|
+
};
|
|
2648
|
+
}, undefined>>
|
|
2600
2649
|
];
|
|
2601
2650
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
2602
2651
|
actions: {
|
|
@@ -2695,7 +2744,12 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
2695
2744
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
2696
2745
|
pluginConfiguration: FeatureFlags;
|
|
2697
2746
|
sharedState: FeatureFlags;
|
|
2698
|
-
}, FeatureFlags
|
|
2747
|
+
}, FeatureFlags>>,
|
|
2748
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
2749
|
+
sharedState: {
|
|
2750
|
+
mode: "offline" | "online";
|
|
2751
|
+
};
|
|
2752
|
+
}, undefined>>
|
|
2699
2753
|
];
|
|
2700
2754
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
2701
2755
|
actions: {
|
|
@@ -3143,7 +3197,12 @@ export declare function createDefaultPreset(options: DefaultPresetPluginOptions)
|
|
|
3143
3197
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
3144
3198
|
pluginConfiguration: FeatureFlags;
|
|
3145
3199
|
sharedState: FeatureFlags;
|
|
3146
|
-
}, FeatureFlags
|
|
3200
|
+
}, FeatureFlags>>,
|
|
3201
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
3202
|
+
sharedState: {
|
|
3203
|
+
mode: "offline" | "online";
|
|
3204
|
+
};
|
|
3205
|
+
}, undefined>>
|
|
3147
3206
|
];
|
|
3148
3207
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
3149
3208
|
actions: {
|
|
@@ -3474,7 +3533,12 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3474
3533
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
3475
3534
|
pluginConfiguration: FeatureFlags;
|
|
3476
3535
|
sharedState: FeatureFlags;
|
|
3477
|
-
}, FeatureFlags
|
|
3536
|
+
}, FeatureFlags>>,
|
|
3537
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
3538
|
+
sharedState: {
|
|
3539
|
+
mode: "offline" | "online";
|
|
3540
|
+
};
|
|
3541
|
+
}, undefined>>
|
|
3478
3542
|
];
|
|
3479
3543
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
3480
3544
|
actions: {
|
|
@@ -3573,7 +3637,12 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3573
3637
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
3574
3638
|
pluginConfiguration: FeatureFlags;
|
|
3575
3639
|
sharedState: FeatureFlags;
|
|
3576
|
-
}, FeatureFlags
|
|
3640
|
+
}, FeatureFlags>>,
|
|
3641
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
3642
|
+
sharedState: {
|
|
3643
|
+
mode: "offline" | "online";
|
|
3644
|
+
};
|
|
3645
|
+
}, undefined>>
|
|
3577
3646
|
];
|
|
3578
3647
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
3579
3648
|
actions: {
|
|
@@ -3705,11 +3774,7 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3705
3774
|
];
|
|
3706
3775
|
sharedState: import("@atlaskit/editor-plugin-grid").GridPluginState | null;
|
|
3707
3776
|
actions: {
|
|
3708
|
-
displayGrid: (
|
|
3709
|
-
visible: boolean;
|
|
3710
|
-
gridType: import("@atlaskit/editor-common/types").GridType;
|
|
3711
|
-
highlight: import("@atlaskit/editor-plugin-grid").Highlights;
|
|
3712
|
-
}) => boolean;
|
|
3777
|
+
displayGrid: import("@atlaskit/editor-plugin-grid").CreateDisplayGrid;
|
|
3713
3778
|
};
|
|
3714
3779
|
}, import("@atlaskit/editor-plugin-grid").GridPluginOptions | undefined>,
|
|
3715
3780
|
import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
@@ -3897,7 +3962,12 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3897
3962
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
3898
3963
|
pluginConfiguration: FeatureFlags;
|
|
3899
3964
|
sharedState: FeatureFlags;
|
|
3900
|
-
}, FeatureFlags
|
|
3965
|
+
}, FeatureFlags>>,
|
|
3966
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
3967
|
+
sharedState: {
|
|
3968
|
+
mode: "offline" | "online";
|
|
3969
|
+
};
|
|
3970
|
+
}, undefined>>
|
|
3901
3971
|
];
|
|
3902
3972
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
3903
3973
|
actions: {
|
|
@@ -3996,7 +4066,12 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
3996
4066
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
3997
4067
|
pluginConfiguration: FeatureFlags;
|
|
3998
4068
|
sharedState: FeatureFlags;
|
|
3999
|
-
}, FeatureFlags
|
|
4069
|
+
}, FeatureFlags>>,
|
|
4070
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
4071
|
+
sharedState: {
|
|
4072
|
+
mode: "offline" | "online";
|
|
4073
|
+
};
|
|
4074
|
+
}, undefined>>
|
|
4000
4075
|
];
|
|
4001
4076
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
4002
4077
|
actions: {
|
|
@@ -4245,7 +4320,12 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
4245
4320
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
4246
4321
|
pluginConfiguration: FeatureFlags;
|
|
4247
4322
|
sharedState: FeatureFlags;
|
|
4248
|
-
}, FeatureFlags
|
|
4323
|
+
}, FeatureFlags>>,
|
|
4324
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
4325
|
+
sharedState: {
|
|
4326
|
+
mode: "offline" | "online";
|
|
4327
|
+
};
|
|
4328
|
+
}, undefined>>
|
|
4249
4329
|
];
|
|
4250
4330
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
4251
4331
|
actions: {
|
|
@@ -4301,7 +4381,12 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
4301
4381
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
4302
4382
|
pluginConfiguration: FeatureFlags;
|
|
4303
4383
|
sharedState: FeatureFlags;
|
|
4304
|
-
}, FeatureFlags
|
|
4384
|
+
}, FeatureFlags>>,
|
|
4385
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
4386
|
+
sharedState: {
|
|
4387
|
+
mode: "offline" | "online";
|
|
4388
|
+
};
|
|
4389
|
+
}, undefined>>
|
|
4305
4390
|
];
|
|
4306
4391
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
4307
4392
|
actions: {
|
|
@@ -4457,11 +4542,7 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
4457
4542
|
];
|
|
4458
4543
|
sharedState: import("@atlaskit/editor-plugin-grid").GridPluginState | null;
|
|
4459
4544
|
actions: {
|
|
4460
|
-
displayGrid: (
|
|
4461
|
-
visible: boolean;
|
|
4462
|
-
gridType: import("@atlaskit/editor-common/types").GridType;
|
|
4463
|
-
highlight: import("@atlaskit/editor-plugin-grid").Highlights;
|
|
4464
|
-
}) => boolean;
|
|
4545
|
+
displayGrid: import("@atlaskit/editor-plugin-grid").CreateDisplayGrid;
|
|
4465
4546
|
};
|
|
4466
4547
|
}, import("@atlaskit/editor-plugin-grid").GridPluginOptions | undefined>,
|
|
4467
4548
|
import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"floatingToolbar", {
|
|
@@ -4639,7 +4720,12 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
4639
4720
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
4640
4721
|
pluginConfiguration: FeatureFlags;
|
|
4641
4722
|
sharedState: FeatureFlags;
|
|
4642
|
-
}, FeatureFlags
|
|
4723
|
+
}, FeatureFlags>>,
|
|
4724
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
4725
|
+
sharedState: {
|
|
4726
|
+
mode: "offline" | "online";
|
|
4727
|
+
};
|
|
4728
|
+
}, undefined>>
|
|
4643
4729
|
];
|
|
4644
4730
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
4645
4731
|
actions: {
|
|
@@ -4738,7 +4824,12 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
4738
4824
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
4739
4825
|
pluginConfiguration: FeatureFlags;
|
|
4740
4826
|
sharedState: FeatureFlags;
|
|
4741
|
-
}, FeatureFlags
|
|
4827
|
+
}, FeatureFlags>>,
|
|
4828
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
4829
|
+
sharedState: {
|
|
4830
|
+
mode: "offline" | "online";
|
|
4831
|
+
};
|
|
4832
|
+
}, undefined>>
|
|
4742
4833
|
];
|
|
4743
4834
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
4744
4835
|
actions: {
|
|
@@ -4914,7 +5005,12 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
4914
5005
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
4915
5006
|
pluginConfiguration: FeatureFlags;
|
|
4916
5007
|
sharedState: FeatureFlags;
|
|
4917
|
-
}, FeatureFlags
|
|
5008
|
+
}, FeatureFlags>>,
|
|
5009
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
5010
|
+
sharedState: {
|
|
5011
|
+
mode: "offline" | "online";
|
|
5012
|
+
};
|
|
5013
|
+
}, undefined>>
|
|
4918
5014
|
];
|
|
4919
5015
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
4920
5016
|
actions: {
|
|
@@ -4991,7 +5087,12 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
4991
5087
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
4992
5088
|
pluginConfiguration: FeatureFlags;
|
|
4993
5089
|
sharedState: FeatureFlags;
|
|
4994
|
-
}, FeatureFlags
|
|
5090
|
+
}, FeatureFlags>>,
|
|
5091
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
5092
|
+
sharedState: {
|
|
5093
|
+
mode: "offline" | "online";
|
|
5094
|
+
};
|
|
5095
|
+
}, undefined>>
|
|
4995
5096
|
];
|
|
4996
5097
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
4997
5098
|
actions: {
|
|
@@ -5160,11 +5261,7 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
5160
5261
|
];
|
|
5161
5262
|
sharedState: import("@atlaskit/editor-plugin-grid").GridPluginState | null;
|
|
5162
5263
|
actions: {
|
|
5163
|
-
displayGrid: (
|
|
5164
|
-
visible: boolean;
|
|
5165
|
-
gridType: import("@atlaskit/editor-common/types").GridType;
|
|
5166
|
-
highlight: import("@atlaskit/editor-plugin-grid").Highlights;
|
|
5167
|
-
}) => boolean;
|
|
5264
|
+
displayGrid: import("@atlaskit/editor-plugin-grid").CreateDisplayGrid;
|
|
5168
5265
|
};
|
|
5169
5266
|
}, import("@atlaskit/editor-plugin-grid").GridPluginOptions | undefined>,
|
|
5170
5267
|
import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"floatingToolbar", {
|
|
@@ -5342,7 +5439,12 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
5342
5439
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
5343
5440
|
pluginConfiguration: FeatureFlags;
|
|
5344
5441
|
sharedState: FeatureFlags;
|
|
5345
|
-
}, FeatureFlags
|
|
5442
|
+
}, FeatureFlags>>,
|
|
5443
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
5444
|
+
sharedState: {
|
|
5445
|
+
mode: "offline" | "online";
|
|
5446
|
+
};
|
|
5447
|
+
}, undefined>>
|
|
5346
5448
|
];
|
|
5347
5449
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
5348
5450
|
actions: {
|
|
@@ -5441,7 +5543,12 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
5441
5543
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
5442
5544
|
pluginConfiguration: FeatureFlags;
|
|
5443
5545
|
sharedState: FeatureFlags;
|
|
5444
|
-
}, FeatureFlags
|
|
5546
|
+
}, FeatureFlags>>,
|
|
5547
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
5548
|
+
sharedState: {
|
|
5549
|
+
mode: "offline" | "online";
|
|
5550
|
+
};
|
|
5551
|
+
}, undefined>>
|
|
5445
5552
|
];
|
|
5446
5553
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
5447
5554
|
actions: {
|
|
@@ -5578,11 +5685,7 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
5578
5685
|
];
|
|
5579
5686
|
sharedState: import("@atlaskit/editor-plugin-grid").GridPluginState | null;
|
|
5580
5687
|
actions: {
|
|
5581
|
-
displayGrid: (
|
|
5582
|
-
visible: boolean;
|
|
5583
|
-
gridType: import("@atlaskit/editor-common/types").GridType;
|
|
5584
|
-
highlight: import("@atlaskit/editor-plugin-grid").Highlights;
|
|
5585
|
-
}) => boolean;
|
|
5688
|
+
displayGrid: import("@atlaskit/editor-plugin-grid").CreateDisplayGrid;
|
|
5586
5689
|
};
|
|
5587
5690
|
}, import("@atlaskit/editor-plugin-grid").GridPluginOptions | undefined>,
|
|
5588
5691
|
import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"width", {
|
|
@@ -5770,7 +5873,12 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
5770
5873
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
5771
5874
|
pluginConfiguration: FeatureFlags;
|
|
5772
5875
|
sharedState: FeatureFlags;
|
|
5773
|
-
}, FeatureFlags
|
|
5876
|
+
}, FeatureFlags>>,
|
|
5877
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
5878
|
+
sharedState: {
|
|
5879
|
+
mode: "offline" | "online";
|
|
5880
|
+
};
|
|
5881
|
+
}, undefined>>
|
|
5774
5882
|
];
|
|
5775
5883
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
5776
5884
|
actions: {
|
|
@@ -5869,7 +5977,12 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
5869
5977
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
5870
5978
|
pluginConfiguration: FeatureFlags;
|
|
5871
5979
|
sharedState: FeatureFlags;
|
|
5872
|
-
}, FeatureFlags
|
|
5980
|
+
}, FeatureFlags>>,
|
|
5981
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
5982
|
+
sharedState: {
|
|
5983
|
+
mode: "offline" | "online";
|
|
5984
|
+
};
|
|
5985
|
+
}, undefined>>
|
|
5873
5986
|
];
|
|
5874
5987
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
5875
5988
|
actions: {
|
|
@@ -6317,7 +6430,12 @@ export declare function useDefaultPreset(props: DefaultPresetPluginOptions): Edi
|
|
|
6317
6430
|
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"featureFlags", {
|
|
6318
6431
|
pluginConfiguration: FeatureFlags;
|
|
6319
6432
|
sharedState: FeatureFlags;
|
|
6320
|
-
}, FeatureFlags
|
|
6433
|
+
}, FeatureFlags>>,
|
|
6434
|
+
import("@atlaskit/editor-common/types").OptionalPlugin<import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"connectivity", {
|
|
6435
|
+
sharedState: {
|
|
6436
|
+
mode: "offline" | "online";
|
|
6437
|
+
};
|
|
6438
|
+
}, undefined>>
|
|
6321
6439
|
];
|
|
6322
6440
|
sharedState: import("@atlaskit/editor-plugins/type-ahead").TypeAheadPluginSharedState;
|
|
6323
6441
|
actions: {
|