@atlaskit/editor-core 150.0.0 → 151.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 +65 -0
- package/dist/cjs/actions/index.js +5 -23
- package/dist/cjs/create-editor/ErrorBoundary.js +113 -79
- package/dist/cjs/create-editor/ReactEditorView.js +145 -31
- package/dist/cjs/create-editor/create-plugins-list.js +4 -2
- package/dist/cjs/editor.js +101 -40
- package/dist/cjs/labs/next/presets/cxhtml.js +2 -1
- package/dist/cjs/plugins/analytics/types/enums.js +3 -1
- package/dist/cjs/plugins/base/index.js +4 -3
- package/dist/cjs/plugins/base/pm-plugins/frozen-editor.js +66 -36
- package/dist/cjs/plugins/block-type/ui/ToolbarBlockType/styled.js +3 -1
- package/dist/cjs/plugins/card/index.js +13 -2
- package/dist/cjs/plugins/card/nodeviews/embedCard.js +1 -0
- package/dist/cjs/plugins/card/pm-plugins/main.js +7 -2
- package/dist/cjs/plugins/card/pm-plugins/util/resolve.js +10 -3
- package/dist/cjs/plugins/code-block/toolbar.js +1 -1
- package/dist/cjs/plugins/collab-edit/ui/to-avatar.js +4 -8
- package/dist/cjs/plugins/emoji/styles.js +1 -1
- package/dist/cjs/plugins/extension/pm-plugins/main.js +1 -4
- package/dist/cjs/plugins/extension/toolbar.js +28 -23
- package/dist/cjs/plugins/feature-flags-context/feature-flags-from-props.js +8 -3
- package/dist/cjs/plugins/find-replace/ui/Find.js +27 -7
- package/dist/cjs/plugins/hyperlink/pm-plugins/keymap.js +3 -3
- package/dist/cjs/plugins/hyperlink/ui/HyperlinkAddToolbar/HyperlinkAddToolbar.js +7 -4
- package/dist/cjs/plugins/hyperlink/utils.js +6 -69
- package/dist/cjs/plugins/media/index.js +14 -3
- package/dist/cjs/plugins/media/nodeviews/mediaGroup.js +24 -10
- package/dist/cjs/plugins/media/nodeviews/mediaInline.js +179 -0
- package/dist/cjs/plugins/media/pm-plugins/main.js +18 -9
- package/dist/cjs/plugins/media/toolbar/index.js +49 -17
- package/dist/cjs/plugins/media/toolbar/utils.js +20 -2
- package/dist/cjs/plugins/media/utils/media-files.js +67 -1
- package/dist/cjs/plugins/mentions/type-ahead/index.js +39 -3
- package/dist/cjs/plugins/panel/index.js +2 -3
- package/dist/cjs/plugins/panel/message.js +47 -0
- package/dist/cjs/plugins/panel/toolbar.js +64 -84
- package/dist/cjs/plugins/panel/utils.js +2 -2
- package/dist/cjs/plugins/paste/linkify-md-plugin.js +3 -3
- package/dist/cjs/plugins/status/styles.js +1 -1
- package/dist/cjs/plugins/table/pm-plugins/sticky-headers/nodeviews/tableRow.js +18 -2
- package/dist/cjs/plugins/type-ahead/transforms/open-typeahead-at-cursor.js +20 -3
- package/dist/cjs/profiler/render-count.js +82 -0
- package/dist/cjs/ui/Appearance/Comment/Comment.js +6 -5
- package/dist/cjs/utils/react-hooks/use-component-renderer-tracking/index.js +55 -19
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/actions/index.js +6 -28
- package/dist/es2019/create-editor/ErrorBoundary.js +73 -60
- package/dist/es2019/create-editor/ReactEditorView.js +130 -23
- package/dist/es2019/create-editor/create-plugins-list.js +4 -2
- package/dist/es2019/editor.js +74 -35
- package/dist/es2019/labs/next/presets/cxhtml.js +2 -1
- package/dist/es2019/plugins/analytics/types/enums.js +3 -1
- package/dist/es2019/plugins/base/index.js +4 -3
- package/dist/es2019/plugins/base/pm-plugins/frozen-editor.js +63 -35
- package/dist/es2019/plugins/block-type/ui/ToolbarBlockType/styled.js +2 -1
- package/dist/es2019/plugins/card/index.js +7 -2
- package/dist/es2019/plugins/card/nodeviews/embedCard.js +1 -0
- package/dist/es2019/plugins/card/pm-plugins/main.js +9 -2
- package/dist/es2019/plugins/card/pm-plugins/util/resolve.js +12 -5
- package/dist/es2019/plugins/code-block/toolbar.js +1 -1
- package/dist/es2019/plugins/collab-edit/ui/to-avatar.js +2 -6
- package/dist/es2019/plugins/emoji/styles.js +2 -0
- package/dist/es2019/plugins/extension/pm-plugins/main.js +1 -4
- package/dist/es2019/plugins/extension/toolbar.js +30 -25
- package/dist/es2019/plugins/feature-flags-context/feature-flags-from-props.js +8 -4
- package/dist/es2019/plugins/find-replace/ui/Find.js +27 -6
- package/dist/es2019/plugins/hyperlink/pm-plugins/keymap.js +1 -1
- package/dist/es2019/plugins/hyperlink/ui/HyperlinkAddToolbar/HyperlinkAddToolbar.js +7 -4
- package/dist/es2019/plugins/hyperlink/utils.js +3 -59
- package/dist/es2019/plugins/media/index.js +13 -4
- package/dist/es2019/plugins/media/nodeviews/mediaGroup.js +16 -7
- package/dist/es2019/plugins/media/nodeviews/mediaInline.js +88 -0
- package/dist/es2019/plugins/media/pm-plugins/main.js +20 -11
- package/dist/es2019/plugins/media/toolbar/index.js +44 -15
- package/dist/es2019/plugins/media/toolbar/utils.js +16 -0
- package/dist/es2019/plugins/media/utils/media-files.js +68 -2
- package/dist/es2019/plugins/mentions/type-ahead/index.js +21 -2
- package/dist/es2019/plugins/panel/index.js +3 -4
- package/dist/es2019/plugins/panel/message.js +38 -0
- package/dist/es2019/plugins/panel/toolbar.js +52 -71
- package/dist/es2019/plugins/panel/utils.js +2 -2
- package/dist/es2019/plugins/paste/linkify-md-plugin.js +2 -2
- package/dist/es2019/plugins/status/styles.js +2 -0
- package/dist/es2019/plugins/table/pm-plugins/sticky-headers/nodeviews/tableRow.js +18 -2
- package/dist/es2019/plugins/type-ahead/transforms/open-typeahead-at-cursor.js +20 -3
- package/dist/es2019/profiler/render-count.js +60 -0
- package/dist/es2019/ui/Appearance/Comment/Comment.js +4 -2
- package/dist/es2019/utils/react-hooks/use-component-renderer-tracking/index.js +51 -18
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/actions/index.js +6 -24
- package/dist/esm/create-editor/ErrorBoundary.js +113 -78
- package/dist/esm/create-editor/ReactEditorView.js +146 -31
- package/dist/esm/create-editor/create-plugins-list.js +4 -2
- package/dist/esm/editor.js +100 -40
- package/dist/esm/labs/next/presets/cxhtml.js +2 -1
- package/dist/esm/plugins/analytics/types/enums.js +3 -1
- package/dist/esm/plugins/base/index.js +4 -3
- package/dist/esm/plugins/base/pm-plugins/frozen-editor.js +64 -36
- package/dist/esm/plugins/block-type/ui/ToolbarBlockType/styled.js +3 -1
- package/dist/esm/plugins/card/index.js +13 -2
- package/dist/esm/plugins/card/nodeviews/embedCard.js +1 -0
- package/dist/esm/plugins/card/pm-plugins/main.js +7 -2
- package/dist/esm/plugins/card/pm-plugins/util/resolve.js +12 -5
- package/dist/esm/plugins/code-block/toolbar.js +1 -1
- package/dist/esm/plugins/collab-edit/ui/to-avatar.js +4 -8
- package/dist/esm/plugins/emoji/styles.js +1 -1
- package/dist/esm/plugins/extension/pm-plugins/main.js +1 -4
- package/dist/esm/plugins/extension/toolbar.js +28 -23
- package/dist/esm/plugins/feature-flags-context/feature-flags-from-props.js +8 -4
- package/dist/esm/plugins/find-replace/ui/Find.js +27 -7
- package/dist/esm/plugins/hyperlink/pm-plugins/keymap.js +1 -1
- package/dist/esm/plugins/hyperlink/ui/HyperlinkAddToolbar/HyperlinkAddToolbar.js +7 -4
- package/dist/esm/plugins/hyperlink/utils.js +3 -59
- package/dist/esm/plugins/media/index.js +14 -4
- package/dist/esm/plugins/media/nodeviews/mediaGroup.js +24 -10
- package/dist/esm/plugins/media/nodeviews/mediaInline.js +147 -0
- package/dist/esm/plugins/media/pm-plugins/main.js +19 -11
- package/dist/esm/plugins/media/toolbar/index.js +47 -19
- package/dist/esm/plugins/media/toolbar/utils.js +15 -1
- package/dist/esm/plugins/media/utils/media-files.js +60 -2
- package/dist/esm/plugins/mentions/type-ahead/index.js +39 -3
- package/dist/esm/plugins/panel/index.js +3 -4
- package/dist/esm/plugins/panel/message.js +38 -0
- package/dist/esm/plugins/panel/toolbar.js +57 -77
- package/dist/esm/plugins/panel/utils.js +2 -2
- package/dist/esm/plugins/paste/linkify-md-plugin.js +2 -2
- package/dist/esm/plugins/status/styles.js +1 -1
- package/dist/esm/plugins/table/pm-plugins/sticky-headers/nodeviews/tableRow.js +18 -2
- package/dist/esm/plugins/type-ahead/transforms/open-typeahead-at-cursor.js +20 -3
- package/dist/esm/profiler/render-count.js +57 -0
- package/dist/esm/ui/Appearance/Comment/Comment.js +6 -5
- package/dist/esm/utils/react-hooks/use-component-renderer-tracking/index.js +53 -20
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/create-editor/ErrorBoundary.d.ts +6 -6
- package/dist/types/create-editor/ReactEditorView.d.ts +15 -3
- package/dist/types/editor.d.ts +3 -1
- package/dist/types/plugins/analytics/analytics-queue.d.ts +1 -1
- package/dist/types/plugins/analytics/index.d.ts +1 -1
- package/dist/types/plugins/analytics/types/enums.d.ts +4 -2
- package/dist/types/plugins/analytics/types/events.d.ts +7 -2
- package/dist/types/plugins/analytics/types/general-events.d.ts +4 -1
- package/dist/types/plugins/analytics/types/index.d.ts +1 -1
- package/dist/types/plugins/analytics/types/insert-events.d.ts +6 -1
- package/dist/types/plugins/analytics/types/link-tool-bar-events.d.ts +1 -0
- package/dist/types/plugins/base/index.d.ts +1 -0
- package/dist/types/plugins/base/pm-plugins/frozen-editor.d.ts +3 -2
- package/dist/types/plugins/card/pm-plugins/main.d.ts +2 -3
- package/dist/types/plugins/card/pm-plugins/util/resolve.d.ts +2 -1
- package/dist/types/plugins/card/types.d.ts +6 -0
- package/dist/types/plugins/collab-edit/ui/to-avatar.d.ts +1 -1
- package/dist/types/plugins/extension/types.d.ts +0 -2
- package/dist/types/plugins/extension/ui/Extension/ExtensionComponent.d.ts +2 -2
- package/dist/types/plugins/feature-flags-context/get-enabled-feature-flag-keys.d.ts +1 -1
- package/dist/types/plugins/floating-toolbar/types.d.ts +1 -1
- package/dist/types/plugins/floating-toolbar/ui/Select.d.ts +1 -1
- package/dist/types/plugins/hyperlink/utils.d.ts +0 -21
- package/dist/types/plugins/insert-block/ui/ToolbarInsertBlock/create-items.d.ts +1 -1
- package/dist/types/plugins/media/nodeviews/mediaInline.d.ts +27 -0
- package/dist/types/plugins/media/pm-plugins/main.d.ts +2 -2
- package/dist/types/plugins/media/toolbar/utils.d.ts +2 -0
- package/dist/types/plugins/media/utils/media-files.d.ts +8 -0
- package/dist/types/plugins/panel/message.d.ts +37 -0
- package/dist/types/plugins/panel/toolbar.d.ts +4 -37
- package/dist/types/plugins/panel/types.d.ts +1 -0
- package/dist/types/plugins/quick-insert/index.d.ts +1 -1
- package/dist/types/profiler/render-count.d.ts +14 -0
- package/dist/types/types/feature-flags.d.ts +8 -0
- package/dist/types/ui/LinkSearch/types.d.ts +1 -0
- package/dist/types/utils/react-hooks/use-component-renderer-tracking/index.d.ts +17 -1
- package/package.json +20 -17
- package/dist/cjs/plugins/caption/nodeviews/index.test.js +0 -135
- package/dist/cjs/plugins/caption/pm-plugins/keymap.test.js +0 -203
- package/dist/cjs/plugins/caption/pm-plugins/main.test.js +0 -141
- package/dist/cjs/plugins/code-block/language-list.test.js +0 -74
- package/dist/cjs/plugins/extension/ui/SaveIndicator/SaveIndicator.test.js +0 -101
- package/dist/cjs/plugins/floating-toolbar/ui/EmojiPickerButton.test.js +0 -98
- package/dist/cjs/plugins/media/commands/captions.test.js +0 -149
- package/dist/cjs/plugins/media/commands/linking.test.js +0 -296
- package/dist/cjs/plugins/media/ui/CaptionPlaceholder/index.test.js +0 -50
- package/dist/cjs/plugins/panel/toolbar.test.js +0 -250
- package/dist/cjs/ui/ColorPickerButton/index.test.js +0 -123
- package/dist/cjs/ui/PortalProvider/index.test.js +0 -139
- package/dist/es2019/plugins/caption/nodeviews/index.test.js +0 -122
- package/dist/es2019/plugins/caption/pm-plugins/keymap.test.js +0 -193
- package/dist/es2019/plugins/caption/pm-plugins/main.test.js +0 -132
- package/dist/es2019/plugins/code-block/language-list.test.js +0 -69
- package/dist/es2019/plugins/extension/ui/SaveIndicator/SaveIndicator.test.js +0 -83
- package/dist/es2019/plugins/floating-toolbar/ui/EmojiPickerButton.test.js +0 -85
- package/dist/es2019/plugins/media/commands/captions.test.js +0 -126
- package/dist/es2019/plugins/media/commands/linking.test.js +0 -208
- package/dist/es2019/plugins/media/ui/CaptionPlaceholder/index.test.js +0 -41
- package/dist/es2019/plugins/panel/toolbar.test.js +0 -200
- package/dist/es2019/ui/ColorPickerButton/index.test.js +0 -88
- package/dist/es2019/ui/PortalProvider/index.test.js +0 -115
- package/dist/esm/plugins/caption/nodeviews/index.test.js +0 -125
- package/dist/esm/plugins/caption/pm-plugins/keymap.test.js +0 -195
- package/dist/esm/plugins/caption/pm-plugins/main.test.js +0 -124
- package/dist/esm/plugins/code-block/language-list.test.js +0 -71
- package/dist/esm/plugins/extension/ui/SaveIndicator/SaveIndicator.test.js +0 -92
- package/dist/esm/plugins/floating-toolbar/ui/EmojiPickerButton.test.js +0 -85
- package/dist/esm/plugins/media/commands/captions.test.js +0 -135
- package/dist/esm/plugins/media/commands/linking.test.js +0 -268
- package/dist/esm/plugins/media/ui/CaptionPlaceholder/index.test.js +0 -41
- package/dist/esm/plugins/panel/toolbar.test.js +0 -230
- package/dist/esm/ui/ColorPickerButton/index.test.js +0 -107
- package/dist/esm/ui/PortalProvider/index.test.js +0 -129
|
@@ -77,7 +77,7 @@ declare type ContentComponentErrorAEP = OperationalAEP<ACTION.ERRORED, ACTION_SU
|
|
|
77
77
|
position: number;
|
|
78
78
|
docSize: number;
|
|
79
79
|
}, undefined>;
|
|
80
|
-
declare type
|
|
80
|
+
export declare type ErrorEventAttributes = {
|
|
81
81
|
error: Error;
|
|
82
82
|
errorInfo: React.ErrorInfo;
|
|
83
83
|
product?: string;
|
|
@@ -85,6 +85,11 @@ declare type ComponentCrashErrorAEP = OperationalAEP<ACTION.EDITOR_CRASHED, ACTI
|
|
|
85
85
|
errorId?: string;
|
|
86
86
|
docStructure?: string | SimplifiedNode;
|
|
87
87
|
browserExtensions?: UserBrowserExtensionResults;
|
|
88
|
+
};
|
|
89
|
+
declare type ComponentCrashErrorAEP = OperationalAEP<ACTION.EDITOR_CRASHED, ACTION_SUBJECT.FLOATING_CONTEXTUAL_BUTTON | ACTION_SUBJECT.PLUGIN_SLOT | ACTION_SUBJECT.REACT_NODE_VIEW | ACTION_SUBJECT.TABLES_PLUGIN | ACTION_SUBJECT.FLOATING_TOOLBAR_PLUGIN | ACTION_SUBJECT.EDITOR, ACTION_SUBJECT_ID | FLOATING_CONTROLS_TITLE, ErrorEventAttributes, undefined>;
|
|
90
|
+
declare type ComponentCrashAdditionalInfoErrorAEP = OperationalAEP<ACTION.EDITOR_CRASHED_ADDITIONAL_INFORMATION, ACTION_SUBJECT.EDITOR, undefined, {
|
|
91
|
+
errorStack: string;
|
|
92
|
+
errorId: string;
|
|
88
93
|
}, undefined>;
|
|
89
|
-
export declare type ErrorEventPayload = InvalidTransactionErrorAEP | InvalidTransactionStepErrorAEP | FailedToUnmountErrorAEP | SynchronyErrorAEP | SynchronyEntityErrorAEP | ContentComponentErrorAEP | ComponentCrashErrorAEP;
|
|
94
|
+
export declare type ErrorEventPayload = InvalidTransactionErrorAEP | InvalidTransactionStepErrorAEP | FailedToUnmountErrorAEP | SynchronyErrorAEP | SynchronyEntityErrorAEP | ContentComponentErrorAEP | ComponentCrashErrorAEP | ComponentCrashAdditionalInfoErrorAEP;
|
|
90
95
|
export {};
|
|
@@ -57,6 +57,9 @@ declare type EditorRenderedAEP<T> = OperationalAEP<ACTION.RE_RENDERED, ACTION_SU
|
|
|
57
57
|
propsDifference: PropsDifference<T> | ShallowPropsDifference<T>;
|
|
58
58
|
count: number;
|
|
59
59
|
}, undefined>;
|
|
60
|
+
export declare type UfoSessionCompletePayloadAEP = OperationalAEP<ACTION.UFO_SESSION_COMPLETE, ACTION_SUBJECT.EDITOR, undefined, {
|
|
61
|
+
interval: number;
|
|
62
|
+
}, undefined>;
|
|
60
63
|
declare type BrowserFreezePayload = OperationalAEPWithObjectId<ACTION.BROWSER_FREEZE, ACTION_SUBJECT.EDITOR, undefined, {
|
|
61
64
|
freezeTime: number;
|
|
62
65
|
nodeSize: number;
|
|
@@ -145,5 +148,5 @@ declare type RichMediaLayoutAEP = TrackAEP<ACTION.SELECTED, ACTION_SUBJECT.MEDIA
|
|
|
145
148
|
declare type CodeBlockLanguageSelectedAEP = TrackAEP<ACTION.LANGUAGE_SELECTED, ACTION_SUBJECT.CODE_BLOCK, undefined, {
|
|
146
149
|
language: string;
|
|
147
150
|
}, undefined>;
|
|
148
|
-
export declare type GeneralEventPayload<T = void> = AnnotateButtonAEP | AnnotationAEP | BrowserFreezePayload | ButtonFeedbackAEP | ButtonHelpAEP | ColorPickerAEP | DispatchedTransactionAEP | EditorPerfAEP | EditorRenderedAEP<T> | EditorStartAEP | EditorStopAEP | EditorTTIAEP | ExpandToggleAEP | FeedbackAEP | FullWidthModeAEP | HelpQuickInsertAEP | InputPerfSamlingAEP | PickerEmojiAEP | PickerImageAEP | ReactNodeViewRenderedAEP | RichMediaLayoutAEP | SelectionAEP | SlowInputAEP | UploadExternalFailedAEP | WithPluginStateCalledAEP | CodeBlockLanguageSelectedAEP | EditorContentRetrievalPerformedAEP;
|
|
151
|
+
export declare type GeneralEventPayload<T = void> = AnnotateButtonAEP | AnnotationAEP | BrowserFreezePayload | ButtonFeedbackAEP | ButtonHelpAEP | ColorPickerAEP | DispatchedTransactionAEP | EditorPerfAEP | EditorRenderedAEP<T> | EditorStartAEP | EditorStopAEP | EditorTTIAEP | ExpandToggleAEP | FeedbackAEP | FullWidthModeAEP | HelpQuickInsertAEP | InputPerfSamlingAEP | PickerEmojiAEP | PickerImageAEP | ReactNodeViewRenderedAEP | RichMediaLayoutAEP | SelectionAEP | SlowInputAEP | UploadExternalFailedAEP | WithPluginStateCalledAEP | CodeBlockLanguageSelectedAEP | EditorContentRetrievalPerformedAEP | UfoSessionCompletePayloadAEP;
|
|
149
152
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE, INPUT_METHOD, TRIGGER_METHOD, CONTENT_COMPONENT, FLOATING_CONTROLS_TITLE, } from './enums';
|
|
2
|
-
export type { AnalyticsDispatch, AnalyticsEventPayload, AnalyticsEventPayloadWithChannel, ErrorEventPayload, } from './events';
|
|
2
|
+
export type { AnalyticsDispatch, AnalyticsEventPayload, AnalyticsEventPayloadWithChannel, ErrorEventPayload, ErrorEventAttributes, } from './events';
|
|
3
3
|
export type { FormatEventPayload } from './format-events';
|
|
4
4
|
export type { SubstituteEventPayload } from './substitute-events';
|
|
5
5
|
export type { GeneralEventPayload } from './general-events';
|
|
@@ -76,6 +76,11 @@ declare type InsertMediaGroupAEP = InsertAEP<ACTION_SUBJECT_ID.MEDIA, {
|
|
|
76
76
|
fileExtension?: string;
|
|
77
77
|
type: ACTION_SUBJECT_ID.MEDIA_SINGLE | ACTION_SUBJECT_ID.MEDIA_GROUP;
|
|
78
78
|
}, undefined>;
|
|
79
|
+
declare type InsertMediaInlineAEP = InsertAEP<ACTION_SUBJECT_ID.MEDIA, {
|
|
80
|
+
inputMethod?: InputMethodInsertMedia;
|
|
81
|
+
fileExtension?: string;
|
|
82
|
+
type: ACTION_SUBJECT_ID.MEDIA_INLINE;
|
|
83
|
+
}, undefined>;
|
|
79
84
|
export declare type InputMethodInsertLink = INPUT_METHOD.TYPEAHEAD | INPUT_METHOD.CLIPBOARD | INPUT_METHOD.FORMATTING | INPUT_METHOD.AUTO_DETECT | INPUT_METHOD.MANUAL;
|
|
80
85
|
declare type InsertLinkAEP = InsertAEP<ACTION_SUBJECT_ID.LINK, {
|
|
81
86
|
inputMethod: InputMethodInsertLink;
|
|
@@ -119,5 +124,5 @@ declare type InsertNodeViaExtensionAPIAEP = InsertAEP<undefined, {
|
|
|
119
124
|
declare type InsertPlaceholderTextAEP = InsertAEP<ACTION_SUBJECT_ID.PLACEHOLDER_TEXT, {
|
|
120
125
|
inputMethod: INPUT_METHOD.QUICK_INSERT | INPUT_METHOD.TOOLBAR | INPUT_METHOD.INSERT_MENU;
|
|
121
126
|
}, undefined>;
|
|
122
|
-
export declare type InsertEventPayload = InsertDividerAEP | InsertLineBreakAEP | InsertPanelAEP | InsertCodeBlockAEP | InsertTableAEP | InsertExpandAEP | InsertActionDecisionAEP | InsertEmojiAEP | InsertStatusAEP | InsertMediaSingleAEP | InsertMediaGroupAEP | InsertLinkAEP | InsertLinkPreviewAEP | InsertMediaLinkAEP | InsertSmartLinkAEP | InsertLayoutAEP | InsertExtensionAEP | InsertNodeViaExtensionAPIAEP | InsertDateAEP | InsertPlaceholderTextAEP;
|
|
127
|
+
export declare type InsertEventPayload = InsertDividerAEP | InsertLineBreakAEP | InsertPanelAEP | InsertCodeBlockAEP | InsertTableAEP | InsertExpandAEP | InsertActionDecisionAEP | InsertEmojiAEP | InsertStatusAEP | InsertMediaSingleAEP | InsertMediaGroupAEP | InsertMediaInlineAEP | InsertLinkAEP | InsertLinkPreviewAEP | InsertMediaLinkAEP | InsertSmartLinkAEP | InsertLayoutAEP | InsertExtensionAEP | InsertNodeViaExtensionAPIAEP | InsertDateAEP | InsertPlaceholderTextAEP;
|
|
123
128
|
export {};
|
|
@@ -67,6 +67,7 @@ export declare type SelectedSearchResultsAEP = UIAEP<ACTION.SELECTED, ACTION_SUB
|
|
|
67
67
|
resultCount: number;
|
|
68
68
|
selectedResultId: string;
|
|
69
69
|
selectedRelativePosition: number;
|
|
70
|
+
prefetch: boolean;
|
|
70
71
|
}, undefined>;
|
|
71
72
|
export declare type EditLinkToolbarAEP = UIAEP<ACTION.CLICKED, ACTION_SUBJECT.SMART_LINK | ACTION_SUBJECT.HYPERLINK, ACTION_SUBJECT_ID.EDIT_LINK, {}, undefined>;
|
|
72
73
|
export declare type UnlinkToolbarAEP = UIAEP<ACTION.UNLINK, ACTION_SUBJECT.SMART_LINK | ACTION_SUBJECT.HYPERLINK, ACTION_SUBJECT_ID.CARD_INLINE | undefined, {}, undefined>;
|
|
@@ -6,6 +6,7 @@ export interface BasePluginOptions {
|
|
|
6
6
|
allowInlineCursorTarget?: boolean;
|
|
7
7
|
inputTracking?: InputTracking;
|
|
8
8
|
browserFreezeTracking?: BrowserFreezetracking;
|
|
9
|
+
ufo?: boolean;
|
|
9
10
|
}
|
|
10
11
|
export declare const isChromeWithSelectionBug: boolean;
|
|
11
12
|
declare const basePlugin: (options?: BasePluginOptions | undefined) => EditorPlugin;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { Plugin } from 'prosemirror-state';
|
|
1
|
+
import { Plugin, PluginKey } from 'prosemirror-state';
|
|
2
2
|
import { DispatchAnalyticsEvent } from '../../analytics';
|
|
3
3
|
import { InputTracking, BrowserFreezetracking } from '../../../types/performance-tracking';
|
|
4
|
+
export declare const frozenEditorPluginKey: PluginKey<any, any>;
|
|
4
5
|
export declare const DEFAULT_FREEZE_THRESHOLD = 600;
|
|
5
6
|
export declare const NORMAL_SEVERITY_THRESHOLD = 2000;
|
|
6
7
|
export declare const DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
7
8
|
export declare const DEFAULT_TRACK_SEVERITY_THRESHOLD_NORMAL = 100;
|
|
8
9
|
export declare const DEFAULT_TRACK_SEVERITY_THRESHOLD_DEGRADED = 500;
|
|
9
|
-
declare const _default: (dispatchAnalyticsEvent: DispatchAnalyticsEvent, inputTracking?: InputTracking | undefined, browserFreezeTracking?: BrowserFreezetracking | undefined) => Plugin<any, any>;
|
|
10
|
+
declare const _default: (dispatchAnalyticsEvent: DispatchAnalyticsEvent, inputTracking?: InputTracking | undefined, browserFreezeTracking?: BrowserFreezetracking | undefined, ufo?: boolean | undefined) => Plugin<any, any>;
|
|
10
11
|
export default _default;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Plugin } from 'prosemirror-state';
|
|
2
|
-
import {
|
|
2
|
+
import { CardPluginOptions } from '../types';
|
|
3
3
|
import { PMPluginFactoryParams } from '../../../types';
|
|
4
|
-
import { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
5
4
|
export { pluginKey } from './plugin-key';
|
|
6
|
-
export declare const createPlugin: (
|
|
5
|
+
export declare const createPlugin: (options: CardPluginOptions) => ({ portalProviderAPI, eventDispatcher, providerFactory, dispatchAnalyticsEvent, }: PMPluginFactoryParams) => Plugin<any, any>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { CardProvider } from '@atlaskit/editor-common/provider-factory';
|
|
2
2
|
import { EditorView } from 'prosemirror-view';
|
|
3
3
|
import { OutstandingRequests, Request } from '../../types';
|
|
4
|
-
|
|
4
|
+
import { CardOptions } from '@atlaskit/editor-common';
|
|
5
|
+
export declare const resolveWithProvider: (view: EditorView, outstandingRequests: OutstandingRequests, provider: CardProvider, request: Request, options: CardOptions) => Promise<void | import("@atlaskit/smart-card").InlineCardAdf | import("@atlaskit/smart-card").BlockCardAdf | import("@atlaskit/smart-card").EmbedCardAdf>;
|
|
5
6
|
export declare const handleProvider: (_: 'cardProvider', provider: Promise<CardProvider> | undefined, view: EditorView) => void;
|
|
@@ -2,6 +2,7 @@ import { INPUT_METHOD, ACTION } from '../analytics/types/enums';
|
|
|
2
2
|
import { CardProvider, CardAppearance, CardAdf } from '@atlaskit/editor-common/provider-factory';
|
|
3
3
|
import { SmartLinkEvents } from '@atlaskit/smart-card';
|
|
4
4
|
import { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
5
|
+
import { CardOptions } from '@atlaskit/editor-common';
|
|
5
6
|
export declare type CardInfo = {
|
|
6
7
|
title?: string;
|
|
7
8
|
url?: string;
|
|
@@ -27,6 +28,11 @@ export declare type CardPluginState = {
|
|
|
27
28
|
smartLinkEvents?: SmartLinkEvents;
|
|
28
29
|
createAnalyticsEvent?: CreateUIAnalyticsEvent;
|
|
29
30
|
};
|
|
31
|
+
export declare type CardPluginOptions = CardOptions & {
|
|
32
|
+
platform: 'mobile' | 'web';
|
|
33
|
+
fullWidthMode?: boolean;
|
|
34
|
+
createAnalyticsEvent?: CreateUIAnalyticsEvent;
|
|
35
|
+
};
|
|
30
36
|
export declare type SetProvider = {
|
|
31
37
|
type: 'SET_PROVIDER';
|
|
32
38
|
provider: CardProvider | null;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { AvatarProps } from '@atlaskit/avatar-group';
|
|
2
2
|
import { CollabParticipant } from '../types';
|
|
3
|
-
declare const _default: (participant: CollabParticipant) => AvatarProps
|
|
3
|
+
declare const _default: import("memoize-one").MemoizedFn<(participant: CollabParticipant) => AvatarProps>;
|
|
4
4
|
export default _default;
|
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
import { ExtensionLayout } from '@atlaskit/adf-schema';
|
|
2
1
|
import { ContextIdentifierProvider } from '@atlaskit/editor-common';
|
|
3
2
|
import { UpdateExtension, ExtensionProvider, Parameters, TransformBefore, TransformAfter } from '@atlaskit/editor-common/extensions';
|
|
4
3
|
export declare type ExtensionState<T extends Parameters = Parameters> = {
|
|
5
|
-
layout: ExtensionLayout;
|
|
6
4
|
localId?: string;
|
|
7
5
|
autoSaveResolve?: () => void;
|
|
8
6
|
showEditButton: boolean;
|
|
@@ -28,8 +28,8 @@ export default class ExtensionComponent extends Component<Props, State> {
|
|
|
28
28
|
componentDidUpdate(): void;
|
|
29
29
|
componentWillUnmount(): void;
|
|
30
30
|
UNSAFE_componentWillReceiveProps(nextProps: Props): void;
|
|
31
|
-
getNodeRenderer: typeof getNodeRenderer
|
|
32
|
-
getExtensionModuleNodePrivateProps: typeof getExtensionModuleNodePrivateProps
|
|
31
|
+
getNodeRenderer: import("memoize-one").MemoizedFn<typeof getNodeRenderer>;
|
|
32
|
+
getExtensionModuleNodePrivateProps: import("memoize-one").MemoizedFn<typeof getExtensionModuleNodePrivateProps>;
|
|
33
33
|
render(): JSX.Element | null;
|
|
34
34
|
private setStateFromPromise;
|
|
35
35
|
/**
|
|
@@ -4,4 +4,4 @@ import type { FeatureFlags } from '../../types/feature-flags';
|
|
|
4
4
|
*
|
|
5
5
|
* Useful for analytics and analysis purposes.
|
|
6
6
|
*/
|
|
7
|
-
export declare function getEnabledFeatureFlagKeys(featureFlags: FeatureFlags): ("newInsertionBehaviour" | "interactiveExpand" | "placeholderBracketHint" | "placeholderHints" | "moreTextColors" | "findReplace" | "findReplaceMatchCase" | "extensionLocalIdGeneration" | "keyboardAccessibleDatepicker" | "addColumnWithCustomStep" | "undoRedoButtons" | "catchAllTracking" | "nextEmojiNodeView" | "stickyHeadersOptimization" | "initialRenderOptimization" | "mouseMoveOptimization" | "tableRenderOptimization" | "tableOverflowShadowsOptimization" | "codeBlockSyntaxHighlighting" | "queueAnalytics" | "extendFloatingToolbar" | "displayInlineBlockForInlineNodes" | "useUnpredictableInputRule" | "showAvatarGroupAsPlugin" | "errorBoundaryDocStructure" | "synchronyErrorDocStructure" | "enableViewUpdateSubscription" | "collabAvatarScroll")[];
|
|
7
|
+
export declare function getEnabledFeatureFlagKeys(featureFlags: FeatureFlags): ("newInsertionBehaviour" | "interactiveExpand" | "placeholderBracketHint" | "placeholderHints" | "moreTextColors" | "findReplace" | "findReplaceMatchCase" | "extensionLocalIdGeneration" | "keyboardAccessibleDatepicker" | "addColumnWithCustomStep" | "undoRedoButtons" | "catchAllTracking" | "nextEmojiNodeView" | "stickyHeadersOptimization" | "initialRenderOptimization" | "mouseMoveOptimization" | "tableRenderOptimization" | "tableOverflowShadowsOptimization" | "codeBlockSyntaxHighlighting" | "queueAnalytics" | "extendFloatingToolbar" | "displayInlineBlockForInlineNodes" | "useUnpredictableInputRule" | "showAvatarGroupAsPlugin" | "errorBoundaryDocStructure" | "synchronyErrorDocStructure" | "enableViewUpdateSubscription" | "collabAvatarScroll" | "ufo")[];
|
|
@@ -74,7 +74,7 @@ declare type FloatingToolbarSelectBase<T, V = SelectOption> = {
|
|
|
74
74
|
options: V[];
|
|
75
75
|
hidden?: boolean;
|
|
76
76
|
hideExpandIcon?: boolean;
|
|
77
|
-
defaultValue?: V;
|
|
77
|
+
defaultValue?: V | null;
|
|
78
78
|
placeholder?: string;
|
|
79
79
|
onChange: (selected: V) => T;
|
|
80
80
|
filterOption?: ((option: V, rawInput: string) => boolean) | null;
|
|
@@ -18,7 +18,7 @@ export interface Props {
|
|
|
18
18
|
mountPoint?: HTMLElement;
|
|
19
19
|
boundariesElement?: HTMLElement;
|
|
20
20
|
scrollableElement?: HTMLElement;
|
|
21
|
-
defaultValue?: SelectOption;
|
|
21
|
+
defaultValue?: SelectOption | null;
|
|
22
22
|
placeholder?: string;
|
|
23
23
|
onChange?: (change: ValueType<SelectOption>) => void;
|
|
24
24
|
width?: number;
|
|
@@ -1,16 +1,4 @@
|
|
|
1
1
|
import { Slice, Schema } from 'prosemirror-model';
|
|
2
|
-
export declare const LINK_REGEXP: RegExp;
|
|
3
|
-
export interface Match {
|
|
4
|
-
schema: any;
|
|
5
|
-
index: number;
|
|
6
|
-
lastIndex: number;
|
|
7
|
-
raw: string;
|
|
8
|
-
text: string;
|
|
9
|
-
url: string;
|
|
10
|
-
length?: number;
|
|
11
|
-
input?: string;
|
|
12
|
-
}
|
|
13
|
-
export declare function getLinkMatch(str: string): Match | LinkifyMatch | null;
|
|
14
2
|
/**
|
|
15
3
|
* Instance of class LinkMatcher are used in autoformatting in place of Regex.
|
|
16
4
|
* Hence it has been made similar to regex with an exec method.
|
|
@@ -26,12 +14,3 @@ export declare function normalizeUrl(url?: string | null): string;
|
|
|
26
14
|
export declare function linkifyContent(schema: Schema): (slice: Slice) => Slice;
|
|
27
15
|
export declare function getLinkDomain(url: string): string;
|
|
28
16
|
export declare function isFromCurrentDomain(url: string): boolean;
|
|
29
|
-
export interface LinkifyMatch {
|
|
30
|
-
index: number;
|
|
31
|
-
lastIndex: number;
|
|
32
|
-
raw: string;
|
|
33
|
-
url: string;
|
|
34
|
-
text: string;
|
|
35
|
-
schema: string;
|
|
36
|
-
}
|
|
37
|
-
export declare const linkifyMatch: (text: string) => LinkifyMatch[];
|
|
@@ -36,4 +36,4 @@ export interface CreateItemsConfig {
|
|
|
36
36
|
export interface BlockMenuItem extends MenuItem {
|
|
37
37
|
title: JSX.Element | null;
|
|
38
38
|
}
|
|
39
|
-
export declare const createItems: (config: CreateItemsConfig) => readonly [BlockMenuItem[], BlockMenuItem[]]
|
|
39
|
+
export declare const createItems: import("memoize-one").MemoizedFn<(config: CreateItemsConfig) => readonly [BlockMenuItem[], BlockMenuItem[]]>;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Node as PMNode } from 'prosemirror-model';
|
|
2
|
+
import { EditorView, NodeView } from 'prosemirror-view';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { EventDispatcher } from '../../../event-dispatcher';
|
|
5
|
+
import { getPosHandler, ReactNodeView } from '../../../nodeviews/';
|
|
6
|
+
import { FileIdentifier } from '@atlaskit/media-client';
|
|
7
|
+
import { MediaProvider, ProviderFactory } from '@atlaskit/editor-common';
|
|
8
|
+
import { PortalProviderAPI } from '../../../../src/ui/PortalProvider';
|
|
9
|
+
export interface MediaInlineProps {
|
|
10
|
+
mediaProvider: Promise<MediaProvider>;
|
|
11
|
+
identifier: FileIdentifier;
|
|
12
|
+
node: PMNode;
|
|
13
|
+
}
|
|
14
|
+
export declare const MediaInline: React.FC<MediaInlineProps>;
|
|
15
|
+
export interface MediaInlineNodeViewProps {
|
|
16
|
+
providerFactory: ProviderFactory;
|
|
17
|
+
}
|
|
18
|
+
export declare class MediaInlineNodeView extends ReactNodeView<MediaInlineNodeViewProps> {
|
|
19
|
+
createDomRef(): HTMLSpanElement;
|
|
20
|
+
getContentDOM(): {
|
|
21
|
+
dom: HTMLSpanElement;
|
|
22
|
+
};
|
|
23
|
+
ignoreMutation(): boolean;
|
|
24
|
+
viewShouldUpdate(nextNode: PMNode): boolean;
|
|
25
|
+
render(props: MediaInlineNodeViewProps): JSX.Element;
|
|
26
|
+
}
|
|
27
|
+
export declare const ReactMediaInlineNode: (portalProviderAPI: PortalProviderAPI, eventDispatcher: EventDispatcher, providerFactory: ProviderFactory) => (node: PMNode, view: EditorView, getPos: getPosHandler) => NodeView;
|
|
@@ -36,7 +36,7 @@ export declare class MediaPluginStateImplementation implements MediaPluginState
|
|
|
36
36
|
private customPicker?;
|
|
37
37
|
private removeOnCloseListener;
|
|
38
38
|
private openMediaPickerBrowser?;
|
|
39
|
-
private
|
|
39
|
+
private onPopupToggleCallback;
|
|
40
40
|
private reactContext;
|
|
41
41
|
pickers: PickerFacade[];
|
|
42
42
|
pickerPromises: Array<Promise<PickerFacade>>;
|
|
@@ -64,7 +64,7 @@ export declare class MediaPluginStateImplementation implements MediaPluginState
|
|
|
64
64
|
shouldUseMediaPickerPopup: () => boolean;
|
|
65
65
|
showMediaPicker: () => void;
|
|
66
66
|
setBrowseFn: (browseFn: () => void) => void;
|
|
67
|
-
onPopupToggle: (
|
|
67
|
+
onPopupToggle: (onPopupToggleCallback: (isOpen: boolean) => void) => void;
|
|
68
68
|
/**
|
|
69
69
|
* Returns a promise that is resolved after all pending operations have been finished.
|
|
70
70
|
* An optional timeout will cause the promise to reject if the operation takes too long
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { MediaBaseAttributes } from '@atlaskit/adf-schema';
|
|
2
|
+
import { EditorState } from 'prosemirror-state';
|
|
2
3
|
import { MediaPluginState } from '../pm-plugins/types';
|
|
3
4
|
export declare const getSelectedMediaContainerNodeAttrs: (mediaPluginState: MediaPluginState) => MediaBaseAttributes | null;
|
|
4
5
|
export declare const downloadMedia: (mediaPluginState: MediaPluginState) => Promise<boolean>;
|
|
6
|
+
export declare const removeMediaGroupNode: (state: EditorState) => import("prosemirror-state").Transaction<any>;
|
|
@@ -5,6 +5,14 @@ export interface Range {
|
|
|
5
5
|
start: number;
|
|
6
6
|
end: number;
|
|
7
7
|
}
|
|
8
|
+
export declare const canInsertMediaInline: (state: EditorState) => boolean;
|
|
9
|
+
/**
|
|
10
|
+
* Create a new media inline to insert the new media.
|
|
11
|
+
* @param view Editor view
|
|
12
|
+
* @param mediaState Media file to be added to the editor
|
|
13
|
+
* @param collection Collection for the media to be added
|
|
14
|
+
*/
|
|
15
|
+
export declare const insertMediaInlineNode: (view: EditorView, mediaState: MediaState, collection: string, inputMethod?: import("../../analytics").INPUT_METHOD.CLIPBOARD | import("../../analytics").INPUT_METHOD.DRAG_AND_DROP | import("../../analytics").INPUT_METHOD.PICKER_CLOUD | undefined) => boolean;
|
|
8
16
|
/**
|
|
9
17
|
* Insert a media into an existing media group
|
|
10
18
|
* or create a new media group to insert the new media.
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export declare const messages: {
|
|
2
|
+
info: {
|
|
3
|
+
id: string;
|
|
4
|
+
defaultMessage: string;
|
|
5
|
+
description: string;
|
|
6
|
+
};
|
|
7
|
+
note: {
|
|
8
|
+
id: string;
|
|
9
|
+
defaultMessage: string;
|
|
10
|
+
description: string;
|
|
11
|
+
};
|
|
12
|
+
success: {
|
|
13
|
+
id: string;
|
|
14
|
+
defaultMessage: string;
|
|
15
|
+
description: string;
|
|
16
|
+
};
|
|
17
|
+
warning: {
|
|
18
|
+
id: string;
|
|
19
|
+
defaultMessage: string;
|
|
20
|
+
description: string;
|
|
21
|
+
};
|
|
22
|
+
error: {
|
|
23
|
+
id: string;
|
|
24
|
+
defaultMessage: string;
|
|
25
|
+
description: string;
|
|
26
|
+
};
|
|
27
|
+
emoji: {
|
|
28
|
+
id: string;
|
|
29
|
+
defaultMessage: string;
|
|
30
|
+
description: string;
|
|
31
|
+
};
|
|
32
|
+
backgroundColor: {
|
|
33
|
+
id: string;
|
|
34
|
+
defaultMessage: string;
|
|
35
|
+
description: string;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
@@ -6,42 +6,9 @@ import { NodeType } from 'prosemirror-model';
|
|
|
6
6
|
import { Command } from '../../types';
|
|
7
7
|
import { ProviderFactory } from '@atlaskit/editor-common';
|
|
8
8
|
import { FormattedMessage } from 'react-intl';
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
defaultMessage: string;
|
|
13
|
-
description: string;
|
|
14
|
-
};
|
|
15
|
-
note: {
|
|
16
|
-
id: string;
|
|
17
|
-
defaultMessage: string;
|
|
18
|
-
description: string;
|
|
19
|
-
};
|
|
20
|
-
success: {
|
|
21
|
-
id: string;
|
|
22
|
-
defaultMessage: string;
|
|
23
|
-
description: string;
|
|
24
|
-
};
|
|
25
|
-
warning: {
|
|
26
|
-
id: string;
|
|
27
|
-
defaultMessage: string;
|
|
28
|
-
description: string;
|
|
29
|
-
};
|
|
30
|
-
error: {
|
|
31
|
-
id: string;
|
|
32
|
-
defaultMessage: string;
|
|
33
|
-
description: string;
|
|
34
|
-
};
|
|
35
|
-
emoji: {
|
|
36
|
-
id: string;
|
|
37
|
-
defaultMessage: string;
|
|
38
|
-
description: string;
|
|
39
|
-
};
|
|
40
|
-
backgroundColor: {
|
|
41
|
-
id: string;
|
|
42
|
-
defaultMessage: string;
|
|
43
|
-
description: string;
|
|
44
|
-
};
|
|
9
|
+
import { PanelType } from '@atlaskit/adf-schema';
|
|
10
|
+
export declare const panelIconMap: {
|
|
11
|
+
[key in Exclude<PanelType, PanelType.CUSTOM>]: string;
|
|
45
12
|
};
|
|
46
|
-
export declare const getToolbarItems: (formatMessage: (messageDescriptor: FormattedMessage.MessageDescriptor) => string, panelNodeType: NodeType, isCustomPanelEnabled: boolean, providerFactory: ProviderFactory, activePanelType?: string | undefined, activePanelColor?: string | undefined, activePanelIcon?: string | undefined) => FloatingToolbarItem<Command>[];
|
|
13
|
+
export declare const getToolbarItems: (formatMessage: (messageDescriptor: FormattedMessage.MessageDescriptor) => string, panelNodeType: NodeType, isCustomPanelEnabled: boolean, isCustomPanelEditable: boolean, providerFactory: ProviderFactory, activePanelType?: string | undefined, activePanelColor?: string | undefined, activePanelIcon?: string | undefined) => FloatingToolbarItem<Command>[];
|
|
47
14
|
export declare const getToolbarConfig: (state: EditorState, intl: InjectedIntl, options: PanelPluginOptions | undefined, providerFactory: ProviderFactory) => FloatingToolbarConfig | undefined;
|
|
@@ -7,4 +7,4 @@ export type { QuickInsertHandler, QuickInsertPluginState, QuickInsertPluginOptio
|
|
|
7
7
|
export { pluginKey };
|
|
8
8
|
declare const quickInsertPlugin: (options?: QuickInsertPluginOptions | undefined) => EditorPlugin;
|
|
9
9
|
export default quickInsertPlugin;
|
|
10
|
-
export declare const memoProcessItems: (items: Array<QuickInsertHandler>, intl: InjectedIntl, extendedActions?: Record<string, Function> | undefined) => QuickInsertItem[]
|
|
10
|
+
export declare const memoProcessItems: import("memoize-one").MemoizedFn<(items: Array<QuickInsertHandler>, intl: InjectedIntl, extendedActions?: Record<string, Function> | undefined) => QuickInsertItem[]>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare enum ProfiledComponentIds {
|
|
3
|
+
editor = "Editor",
|
|
4
|
+
appearance = "FullPageEditor",
|
|
5
|
+
reactEditorView = "ReactEditorView",
|
|
6
|
+
contentArea = "FullPageContentArea",
|
|
7
|
+
toolbar = "FullPageToolbar",
|
|
8
|
+
mention = "MentionNodeView"
|
|
9
|
+
}
|
|
10
|
+
declare type RenderCountProfilerProps = {
|
|
11
|
+
componentId: keyof typeof ProfiledComponentIds;
|
|
12
|
+
};
|
|
13
|
+
export declare const RenderCountProfiler: React.FC<RenderCountProfilerProps>;
|
|
14
|
+
export {};
|
|
@@ -242,5 +242,13 @@ export declare type FeatureFlags = {
|
|
|
242
242
|
* @default false
|
|
243
243
|
*/
|
|
244
244
|
collabAvatarScroll?: boolean;
|
|
245
|
+
/**
|
|
246
|
+
* @description
|
|
247
|
+
* Enable UFO experiences
|
|
248
|
+
*
|
|
249
|
+
* @see https://product-fabric.atlassian.net/browse/ED-13059
|
|
250
|
+
* @default false
|
|
251
|
+
*/
|
|
252
|
+
ufo?: boolean;
|
|
245
253
|
};
|
|
246
254
|
export declare type FeatureFlagKey = keyof FeatureFlags;
|
|
@@ -1,7 +1,23 @@
|
|
|
1
|
+
import { ShallowPropsDifference, PropsDifference } from '../../compare';
|
|
1
2
|
import { ACTION_SUBJECT, ACTION, FireAnalyticsCallback } from '../../../plugins/analytics';
|
|
2
3
|
declare type RenderActions = ACTION.RE_RENDERED;
|
|
3
4
|
declare type RenderActionSubjects = ACTION_SUBJECT.EDITOR | ACTION_SUBJECT.REACT_EDITOR_VIEW;
|
|
4
|
-
|
|
5
|
+
declare type PropsDiff<Props> = ShallowPropsDifference<Props> | PropsDifference<Props>;
|
|
6
|
+
declare type OnRenderCb<Props = undefined> = ({ renderCount, propsDifference, }: {
|
|
7
|
+
renderCount: number;
|
|
8
|
+
propsDifference: PropsDiff<Props> | undefined;
|
|
9
|
+
}) => void;
|
|
10
|
+
export declare type UseComponentRenderTrackingArgs<Props = undefined> = {
|
|
11
|
+
onRender: OnRenderCb<Props>;
|
|
12
|
+
propsDiffingOptions?: {
|
|
13
|
+
enabled: boolean;
|
|
14
|
+
props?: Props;
|
|
15
|
+
propsToIgnore?: Array<keyof Props>;
|
|
16
|
+
useShallow?: boolean;
|
|
17
|
+
};
|
|
18
|
+
zeroBasedCount?: boolean;
|
|
19
|
+
};
|
|
20
|
+
export declare function useComponentRenderTracking<Props = undefined>({ onRender, propsDiffingOptions, zeroBasedCount, }: UseComponentRenderTrackingArgs<Props>): void;
|
|
5
21
|
export declare type RenderTrackingProps<ComponentProps> = {
|
|
6
22
|
componentProps: ComponentProps;
|
|
7
23
|
action: RenderActions;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "151.0.0",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@atlaskit/activity": "^1.0.1",
|
|
28
28
|
"@atlaskit/activity-provider": "^2.3.0",
|
|
29
|
-
"@atlaskit/adf-schema": "^19.
|
|
29
|
+
"@atlaskit/adf-schema": "^19.3.0",
|
|
30
30
|
"@atlaskit/adf-utils": "^14.3.0",
|
|
31
31
|
"@atlaskit/analytics-gas-types": "^5.0.0",
|
|
32
32
|
"@atlaskit/analytics-listeners": "^8.0.0",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"@atlaskit/checkbox": "^12.3.0",
|
|
41
41
|
"@atlaskit/code": "^14.1.0",
|
|
42
42
|
"@atlaskit/date": "^0.8.0",
|
|
43
|
-
"@atlaskit/datetime-picker": "^11.
|
|
43
|
+
"@atlaskit/datetime-picker": "^11.1.0",
|
|
44
44
|
"@atlaskit/droplist": "^11.0.0",
|
|
45
|
-
"@atlaskit/editor-common": "^60.
|
|
45
|
+
"@atlaskit/editor-common": "^60.2.0",
|
|
46
46
|
"@atlaskit/editor-json-transformer": "^8.6.0",
|
|
47
47
|
"@atlaskit/editor-markdown-transformer": "^4.1.0",
|
|
48
48
|
"@atlaskit/editor-shared-styles": "^1.6.0",
|
|
@@ -55,16 +55,16 @@
|
|
|
55
55
|
"@atlaskit/item": "^12.0.0",
|
|
56
56
|
"@atlaskit/locale": "^2.3.0",
|
|
57
57
|
"@atlaskit/logo": "^13.5.0",
|
|
58
|
-
"@atlaskit/media-card": "^
|
|
59
|
-
"@atlaskit/media-client": "^14.
|
|
58
|
+
"@atlaskit/media-card": "^72.0.0",
|
|
59
|
+
"@atlaskit/media-client": "^14.3.0",
|
|
60
60
|
"@atlaskit/media-common": "^2.9.0",
|
|
61
61
|
"@atlaskit/media-editor": "^38.2.0",
|
|
62
62
|
"@atlaskit/media-filmstrip": "^42.1.0",
|
|
63
63
|
"@atlaskit/media-picker": "^58.1.0",
|
|
64
|
-
"@atlaskit/media-ui": "^17.
|
|
64
|
+
"@atlaskit/media-ui": "^17.1.0",
|
|
65
65
|
"@atlaskit/media-viewer": "^45.8.1",
|
|
66
66
|
"@atlaskit/mention": "^19.7.0",
|
|
67
|
-
"@atlaskit/modal-dialog": "^12.
|
|
67
|
+
"@atlaskit/modal-dialog": "^12.1.0",
|
|
68
68
|
"@atlaskit/prosemirror-input-rules": "^2.0.0",
|
|
69
69
|
"@atlaskit/radio": "^5.3.0",
|
|
70
70
|
"@atlaskit/section-message": "^6.1.0",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"linkify-it": "^2.0.3",
|
|
104
104
|
"lodash": "^4.17.15",
|
|
105
105
|
"markdown-it": "^10.0.0",
|
|
106
|
-
"memoize-one": "^
|
|
106
|
+
"memoize-one": "^6.0.0",
|
|
107
107
|
"prop-types": "^15.5.10",
|
|
108
108
|
"prosemirror-collab": "^1.2.2",
|
|
109
109
|
"prosemirror-commands": "^1.1.4",
|
|
@@ -128,15 +128,15 @@
|
|
|
128
128
|
},
|
|
129
129
|
"peerDependencies": {
|
|
130
130
|
"@atlaskit/media-core": "^32.2.0",
|
|
131
|
-
"@atlaskit/smart-card": "^16.
|
|
131
|
+
"@atlaskit/smart-card": "^16.2.0",
|
|
132
132
|
"react": "^16.8.0",
|
|
133
133
|
"react-dom": "^16.8.0",
|
|
134
134
|
"react-intl": "^2.6.0",
|
|
135
135
|
"styled-components": "^3.2.6"
|
|
136
136
|
},
|
|
137
137
|
"devDependencies": {
|
|
138
|
-
"@atlaskit/atlassian-navigation": "^1.
|
|
139
|
-
"@atlaskit/breadcrumbs": "11.
|
|
138
|
+
"@atlaskit/atlassian-navigation": "^1.2.0",
|
|
139
|
+
"@atlaskit/breadcrumbs": "11.4.0",
|
|
140
140
|
"@atlaskit/code": "^14.1.0",
|
|
141
141
|
"@atlaskit/collab-provider": "7.1.0",
|
|
142
142
|
"@atlaskit/docs": "*",
|
|
@@ -144,30 +144,32 @@
|
|
|
144
144
|
"@atlaskit/dropdown-menu": "^10.1.0",
|
|
145
145
|
"@atlaskit/editor-bitbucket-transformer": "^7.1.0",
|
|
146
146
|
"@atlaskit/editor-extension-dropbox": "^0.2.0",
|
|
147
|
-
"@atlaskit/editor-test-helpers": "^15.
|
|
147
|
+
"@atlaskit/editor-test-helpers": "^15.5.0",
|
|
148
148
|
"@atlaskit/flag": "^14.4.0",
|
|
149
149
|
"@atlaskit/inline-dialog": "^13.0.0",
|
|
150
150
|
"@atlaskit/lozenge": "^11.1.0",
|
|
151
151
|
"@atlaskit/media-core": "^32.2.0",
|
|
152
152
|
"@atlaskit/media-integration-test-helpers": "^2.5.0",
|
|
153
153
|
"@atlaskit/media-test-helpers": "^28.8.0",
|
|
154
|
-
"@atlaskit/menu": "^1.
|
|
154
|
+
"@atlaskit/menu": "^1.2.0",
|
|
155
155
|
"@atlaskit/page-layout": "^1.0.1",
|
|
156
|
-
"@atlaskit/profilecard": "^15.
|
|
156
|
+
"@atlaskit/profilecard": "^15.8.0",
|
|
157
157
|
"@atlaskit/pubsub": "^6.0.0",
|
|
158
|
-
"@atlaskit/renderer": "^
|
|
158
|
+
"@atlaskit/renderer": "^82.0.0",
|
|
159
159
|
"@atlaskit/section-message": "^6.1.0",
|
|
160
160
|
"@atlaskit/share": "*",
|
|
161
|
-
"@atlaskit/smart-card": "^16.
|
|
161
|
+
"@atlaskit/smart-card": "^16.2.0",
|
|
162
162
|
"@atlaskit/synchrony-test-helpers": "^2.3.0",
|
|
163
163
|
"@atlaskit/textarea": "^4.2.0",
|
|
164
164
|
"@atlaskit/toggle": "^12.3.0",
|
|
165
|
+
"@atlaskit/ufo": "^0.0.6",
|
|
165
166
|
"@atlaskit/user-picker": "^7.3.0",
|
|
166
167
|
"@atlaskit/util-data-test": "^16.0.0",
|
|
167
168
|
"@atlaskit/visual-regression": "*",
|
|
168
169
|
"@atlaskit/webdriver-runner": "*",
|
|
169
170
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
170
171
|
"@atlassian/search-provider": "2.1.15",
|
|
172
|
+
"@atlassian/ufo": "^0.0.28",
|
|
171
173
|
"@testing-library/react": "^8.0.1",
|
|
172
174
|
"@testing-library/react-hooks": "^1.0.4",
|
|
173
175
|
"@types/jscodeshift": "^0.11.0",
|
|
@@ -183,6 +185,7 @@
|
|
|
183
185
|
"fetch-mock": "^8.0.0",
|
|
184
186
|
"jscodeshift": "^0.13.0",
|
|
185
187
|
"lz-string": "^1.4.4",
|
|
188
|
+
"mockdate": "^3.0.2",
|
|
186
189
|
"node-fetch": "^2.6.1",
|
|
187
190
|
"prettier": "^2.1.1",
|
|
188
191
|
"prosemirror-dev-tools": "^3.0.0",
|