@atlaskit/editor-core 183.0.8 → 183.0.12
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 +12 -0
- package/dist/cjs/plugins/card/pm-plugins/doc.js +5 -3
- package/dist/cjs/plugins/paste/handlers.js +5 -5
- package/dist/cjs/plugins/paste/md-plugins/ignore-list-heading-md-plugin.js +47 -0
- package/dist/cjs/plugins/paste/{linkify-md-plugin.js → md-plugins/linkify-md-plugin.js} +1 -1
- package/dist/cjs/plugins/paste/md.js +6 -4
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/plugins/card/pm-plugins/doc.js +5 -3
- package/dist/es2019/plugins/paste/handlers.js +6 -6
- package/dist/es2019/plugins/paste/md-plugins/ignore-list-heading-md-plugin.js +43 -0
- package/dist/es2019/plugins/paste/{linkify-md-plugin.js → md-plugins/linkify-md-plugin.js} +1 -1
- package/dist/es2019/plugins/paste/md.js +6 -4
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/plugins/card/pm-plugins/doc.js +5 -3
- package/dist/esm/plugins/paste/handlers.js +6 -6
- package/dist/esm/plugins/paste/md-plugins/ignore-list-heading-md-plugin.js +41 -0
- package/dist/esm/plugins/paste/{linkify-md-plugin.js → md-plugins/linkify-md-plugin.js} +1 -1
- package/dist/esm/plugins/paste/md.js +6 -4
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/plugins/card/pm-plugins/doc.d.ts +1 -1
- package/dist/types/plugins/paste/md-plugins/ignore-list-heading-md-plugin.d.ts +2 -0
- package/dist/types/plugins/paste/md-plugins/linkify-md-plugin.d.ts +2 -0
- package/dist/types/plugins/paste/md-plugins/newline-md-plugin.d.ts +2 -0
- package/dist/types/plugins/paste/md-plugins/paragraph-md-plugin.d.ts +2 -0
- package/dist/types-ts4.5/actions/index.d.ts +50 -0
- package/dist/types-ts4.5/analytics-api/api.d.ts +9 -0
- package/dist/types-ts4.5/analytics-api/attach-payload-into-transaction.d.ts +10 -0
- package/dist/types-ts4.5/analytics-api/editor-state-context.d.ts +9 -0
- package/dist/types-ts4.5/analytics-api/map-attributes.d.ts +2 -0
- package/dist/types-ts4.5/commands/index.d.ts +23 -0
- package/dist/types-ts4.5/create-editor/ErrorBoundary.d.ts +42 -0
- package/dist/types-ts4.5/create-editor/ReactEditorView.d.ts +8 -0
- package/dist/types-ts4.5/create-editor/ReactEditorViewContext.d.ts +2 -0
- package/dist/types-ts4.5/create-editor/ReactEditorViewInternal.d.ts +115 -0
- package/dist/types-ts4.5/create-editor/ReactEditorViewNext.d.ts +8 -0
- package/dist/types-ts4.5/create-editor/WithEditorView.d.ts +6 -0
- package/dist/types-ts4.5/create-editor/consts.d.ts +3 -0
- package/dist/types-ts4.5/create-editor/create-editor.d.ts +18 -0
- package/dist/types-ts4.5/create-editor/create-plugins-list.d.ts +17 -0
- package/dist/types-ts4.5/create-editor/create-schema.d.ts +6 -0
- package/dist/types-ts4.5/create-editor/feature-flags-from-props.d.ts +7 -0
- package/dist/types-ts4.5/create-editor/get-plugins.d.ts +41 -0
- package/dist/types-ts4.5/create-editor/get-ui-component.d.ts +3 -0
- package/dist/types-ts4.5/create-editor/index.d.ts +3 -0
- package/dist/types-ts4.5/create-editor/messages.d.ts +7 -0
- package/dist/types-ts4.5/create-editor/preset-utils.d.ts +2 -0
- package/dist/types-ts4.5/create-editor/sort-by-order.d.ts +14 -0
- package/dist/types-ts4.5/editor-next/editor-internal.d.ts +44 -0
- package/dist/types-ts4.5/editor-next/editor-migration-component.d.ts +6 -0
- package/dist/types-ts4.5/editor-next/hooks/useEditorMeasuresConstructor.d.ts +17 -0
- package/dist/types-ts4.5/editor-next/hooks/useMeasureEditorMountTime.d.ts +13 -0
- package/dist/types-ts4.5/editor-next/hooks/useProviderFactory.d.ts +21 -0
- package/dist/types-ts4.5/editor-next/index.d.ts +35 -0
- package/dist/types-ts4.5/editor-next/utils/deprecationWarnings.d.ts +2 -0
- package/dist/types-ts4.5/editor-next/utils/editorMeasureTTICallback.d.ts +5 -0
- package/dist/types-ts4.5/editor-next/utils/editorPropTypes.d.ts +19 -0
- package/dist/types-ts4.5/editor-next/utils/getBaseFontSize.d.ts +6 -0
- package/dist/types-ts4.5/editor-next/utils/getProvidersFromEditorProps.d.ts +9 -0
- package/dist/types-ts4.5/editor-next/utils/handleProviders.d.ts +14 -0
- package/dist/types-ts4.5/editor-next/utils/onEditorCreated.d.ts +12 -0
- package/dist/types-ts4.5/editor-next/utils/sendDurationAnalytics.d.ts +15 -0
- package/dist/types-ts4.5/editor-next/utils/trackEditorActions.d.ts +29 -0
- package/dist/types-ts4.5/editor.d.ts +146 -0
- package/dist/types-ts4.5/element-browser.d.ts +1 -0
- package/dist/types-ts4.5/event-dispatcher/index.d.ts +2 -0
- package/dist/types-ts4.5/extensibility.d.ts +15 -0
- package/dist/types-ts4.5/extensions.d.ts +1 -0
- package/dist/types-ts4.5/i18n/cs.d.ts +255 -0
- package/dist/types-ts4.5/i18n/da.d.ts +254 -0
- package/dist/types-ts4.5/i18n/de.d.ts +254 -0
- package/dist/types-ts4.5/i18n/en.d.ts +257 -0
- package/dist/types-ts4.5/i18n/en_GB.d.ts +257 -0
- package/dist/types-ts4.5/i18n/en_ZZ.d.ts +257 -0
- package/dist/types-ts4.5/i18n/es.d.ts +254 -0
- package/dist/types-ts4.5/i18n/et.d.ts +168 -0
- package/dist/types-ts4.5/i18n/fi.d.ts +254 -0
- package/dist/types-ts4.5/i18n/fr.d.ts +254 -0
- package/dist/types-ts4.5/i18n/hu.d.ts +254 -0
- package/dist/types-ts4.5/i18n/index.d.ts +35 -0
- package/dist/types-ts4.5/i18n/is.d.ts +153 -0
- package/dist/types-ts4.5/i18n/it.d.ts +254 -0
- package/dist/types-ts4.5/i18n/ja.d.ts +254 -0
- package/dist/types-ts4.5/i18n/ko.d.ts +254 -0
- package/dist/types-ts4.5/i18n/languages.d.ts +38 -0
- package/dist/types-ts4.5/i18n/nb.d.ts +254 -0
- package/dist/types-ts4.5/i18n/nl.d.ts +254 -0
- package/dist/types-ts4.5/i18n/pl.d.ts +254 -0
- package/dist/types-ts4.5/i18n/pt_BR.d.ts +254 -0
- package/dist/types-ts4.5/i18n/pt_PT.d.ts +180 -0
- package/dist/types-ts4.5/i18n/ro.d.ts +153 -0
- package/dist/types-ts4.5/i18n/ru.d.ts +254 -0
- package/dist/types-ts4.5/i18n/sk.d.ts +168 -0
- package/dist/types-ts4.5/i18n/sv.d.ts +254 -0
- package/dist/types-ts4.5/i18n/th.d.ts +254 -0
- package/dist/types-ts4.5/i18n/tr.d.ts +254 -0
- package/dist/types-ts4.5/i18n/uk.d.ts +254 -0
- package/dist/types-ts4.5/i18n/vi.d.ts +254 -0
- package/dist/types-ts4.5/i18n/zh.d.ts +254 -0
- package/dist/types-ts4.5/i18n/zh_TW.d.ts +254 -0
- package/dist/types-ts4.5/index.d.ts +93 -0
- package/dist/types-ts4.5/insert-api/api.d.ts +9 -0
- package/dist/types-ts4.5/insert-api/insert-content-handlers.d.ts +9 -0
- package/dist/types-ts4.5/insert-api/insert-node-helpers.d.ts +30 -0
- package/dist/types-ts4.5/insert-api/types.d.ts +16 -0
- package/dist/types-ts4.5/keymaps/consts.d.ts +1 -0
- package/dist/types-ts4.5/keymaps/index.d.ts +2 -0
- package/dist/types-ts4.5/labs/CollapsedEditor/index.d.ts +26 -0
- package/dist/types-ts4.5/labs/EditorWithActions/index.d.ts +26 -0
- package/dist/types-ts4.5/labs/next/ContentComponents.d.ts +8 -0
- package/dist/types-ts4.5/labs/next/Editor.d.ts +27 -0
- package/dist/types-ts4.5/labs/next/Toolbar.d.ts +6 -0
- package/dist/types-ts4.5/labs/next/full-page.d.ts +9 -0
- package/dist/types-ts4.5/labs/next/internal/components/EditorContent.d.ts +7 -0
- package/dist/types-ts4.5/labs/next/internal/components/EditorInternal.d.ts +9 -0
- package/dist/types-ts4.5/labs/next/internal/context/preset-context.d.ts +5 -0
- package/dist/types-ts4.5/labs/next/internal/context/shared-config.d.ts +50 -0
- package/dist/types-ts4.5/labs/next/internal/editor-props-type.d.ts +29 -0
- package/dist/types-ts4.5/labs/next/internal/hooks/use-analytics/index.d.ts +8 -0
- package/dist/types-ts4.5/labs/next/internal/hooks/use-editor/create-dispatch-transaction.d.ts +6 -0
- package/dist/types-ts4.5/labs/next/internal/hooks/use-editor/create-editor.d.ts +19 -0
- package/dist/types-ts4.5/labs/next/internal/hooks/use-editor/index.d.ts +14 -0
- package/dist/types-ts4.5/labs/next/mobile.d.ts +12 -0
- package/dist/types-ts4.5/labs/next/presets/create-stub-internal-apis.d.ts +16 -0
- package/dist/types-ts4.5/labs/next/presets/cxhtml.d.ts +110 -0
- package/dist/types-ts4.5/labs/next/presets/default.d.ts +234 -0
- package/dist/types-ts4.5/labs/next/presets/mobile.d.ts +115 -0
- package/dist/types-ts4.5/labs/next/presets/types.d.ts +6 -0
- package/dist/types-ts4.5/labs/next/presets/universal.d.ts +22 -0
- package/dist/types-ts4.5/labs/next/presets/useUniversalPreset.d.ts +7 -0
- package/dist/types-ts4.5/labs/next/presets/utils.d.ts +3 -0
- package/dist/types-ts4.5/labs-next.d.ts +8 -0
- package/dist/types-ts4.5/messages.d.ts +59 -0
- package/dist/types-ts4.5/nodeviews/ReactNodeView.d.ts +52 -0
- package/dist/types-ts4.5/nodeviews/SelectionBasedNodeView.d.ts +53 -0
- package/dist/types-ts4.5/nodeviews/context-adapter.d.ts +2 -0
- package/dist/types-ts4.5/nodeviews/getInlineNodeViewProducer.d.ts +24 -0
- package/dist/types-ts4.5/nodeviews/getInlineNodeViewProducer.styles.d.ts +1 -0
- package/dist/types-ts4.5/nodeviews/getPerformanceOptions.d.ts +2 -0
- package/dist/types-ts4.5/nodeviews/index.d.ts +3 -0
- package/dist/types-ts4.5/nodeviews/types.d.ts +12 -0
- package/dist/types-ts4.5/plugins/alignment/commands/index.d.ts +4 -0
- package/dist/types-ts4.5/plugins/alignment/index.d.ts +5 -0
- package/dist/types-ts4.5/plugins/alignment/pm-plugins/keymap.d.ts +2 -0
- package/dist/types-ts4.5/plugins/alignment/pm-plugins/main.d.ts +7 -0
- package/dist/types-ts4.5/plugins/alignment/pm-plugins/types.d.ts +5 -0
- package/dist/types-ts4.5/plugins/alignment/ui/ToolbarAlignment/icon-map.d.ts +6 -0
- package/dist/types-ts4.5/plugins/alignment/ui/ToolbarAlignment/index.d.ts +34 -0
- package/dist/types-ts4.5/plugins/alignment/ui/ToolbarAlignment/messages.d.ts +22 -0
- package/dist/types-ts4.5/plugins/alignment/ui/ToolbarAlignment/styles.d.ts +3 -0
- package/dist/types-ts4.5/plugins/alignment/utils/index.d.ts +3 -0
- package/dist/types-ts4.5/plugins/analytics/consts.d.ts +3 -0
- package/dist/types-ts4.5/plugins/analytics/index.d.ts +8 -0
- package/dist/types-ts4.5/plugins/analytics/plugin-key.d.ts +2 -0
- package/dist/types-ts4.5/plugins/analytics/plugin.d.ts +21 -0
- package/dist/types-ts4.5/plugins/analytics/types/dispatch-analytics-event.d.ts +1 -0
- package/dist/types-ts4.5/plugins/analytics/types/enums.d.ts +1 -0
- package/dist/types-ts4.5/plugins/analytics/types/events.d.ts +1 -0
- package/dist/types-ts4.5/plugins/analytics/types/experimental-events.d.ts +1 -0
- package/dist/types-ts4.5/plugins/analytics/types/extension-events.d.ts +2 -0
- package/dist/types-ts4.5/plugins/analytics/types/general-events.d.ts +2 -0
- package/dist/types-ts4.5/plugins/analytics/types/index.d.ts +9 -0
- package/dist/types-ts4.5/plugins/analytics/types/inline-comment-events.d.ts +2 -0
- package/dist/types-ts4.5/plugins/analytics/types/link-tool-bar-events.d.ts +1 -0
- package/dist/types-ts4.5/plugins/analytics/types/media-events.d.ts +1 -0
- package/dist/types-ts4.5/plugins/analytics/types/node-events.d.ts +2 -0
- package/dist/types-ts4.5/plugins/analytics/types/selection-events.d.ts +1 -0
- package/dist/types-ts4.5/plugins/analytics/types/smart-links.d.ts +2 -0
- package/dist/types-ts4.5/plugins/analytics/types/toolbar-button.d.ts +2 -0
- package/dist/types-ts4.5/plugins/analytics/utils.d.ts +9 -0
- package/dist/types-ts4.5/plugins/annotation/commands/index.d.ts +14 -0
- package/dist/types-ts4.5/plugins/annotation/commands/transform.d.ts +11 -0
- package/dist/types-ts4.5/plugins/annotation/index.d.ts +9 -0
- package/dist/types-ts4.5/plugins/annotation/nodeviews/index.d.ts +10 -0
- package/dist/types-ts4.5/plugins/annotation/pm-plugins/inline-comment.d.ts +3 -0
- package/dist/types-ts4.5/plugins/annotation/pm-plugins/keymap.d.ts +2 -0
- package/dist/types-ts4.5/plugins/annotation/pm-plugins/plugin-factory.d.ts +2 -0
- package/dist/types-ts4.5/plugins/annotation/pm-plugins/reducer.d.ts +3 -0
- package/dist/types-ts4.5/plugins/annotation/pm-plugins/types.d.ts +68 -0
- package/dist/types-ts4.5/plugins/annotation/toolbar.d.ts +21 -0
- package/dist/types-ts4.5/plugins/annotation/types.d.ts +76 -0
- package/dist/types-ts4.5/plugins/annotation/ui/AnnotationViewWrapper.d.ts +10 -0
- package/dist/types-ts4.5/plugins/annotation/ui/InlineCommentView.d.ts +11 -0
- package/dist/types-ts4.5/plugins/annotation/update-provider.d.ts +8 -0
- package/dist/types-ts4.5/plugins/annotation/utils.d.ts +40 -0
- package/dist/types-ts4.5/plugins/avatar-group/index.d.ts +14 -0
- package/dist/types-ts4.5/plugins/avatar-group/messages.d.ts +7 -0
- package/dist/types-ts4.5/plugins/avatar-group/ui/AvatarGroupPluginWrapper.d.ts +15 -0
- package/dist/types-ts4.5/plugins/base/index.d.ts +19 -0
- package/dist/types-ts4.5/plugins/base/pm-plugins/better-type-history.d.ts +5 -0
- package/dist/types-ts4.5/plugins/base/pm-plugins/composition.d.ts +8 -0
- package/dist/types-ts4.5/plugins/base/pm-plugins/context-identifier.d.ts +12 -0
- package/dist/types-ts4.5/plugins/base/pm-plugins/decoration.d.ts +16 -0
- package/dist/types-ts4.5/plugins/base/pm-plugins/disable-spell-checking.d.ts +4 -0
- package/dist/types-ts4.5/plugins/base/pm-plugins/filter-steps.d.ts +4 -0
- package/dist/types-ts4.5/plugins/base/pm-plugins/fix-chrome-88-selection.d.ts +5 -0
- package/dist/types-ts4.5/plugins/base/pm-plugins/focus-handler.d.ts +6 -0
- package/dist/types-ts4.5/plugins/base/pm-plugins/frozen-editor.d.ts +12 -0
- package/dist/types-ts4.5/plugins/base/pm-plugins/inline-cursor-target.d.ts +17 -0
- package/dist/types-ts4.5/plugins/base/pm-plugins/newline-preserve-marks.d.ts +5 -0
- package/dist/types-ts4.5/plugins/base/pm-plugins/react-nodeview.d.ts +13 -0
- package/dist/types-ts4.5/plugins/base/pm-plugins/scroll-gutter.d.ts +23 -0
- package/dist/types-ts4.5/plugins/base/utils/frozen-editor.d.ts +2 -0
- package/dist/types-ts4.5/plugins/base/utils/input-latency-tracking.d.ts +42 -0
- package/dist/types-ts4.5/plugins/before-primaryToolbar/index.d.ts +8 -0
- package/dist/types-ts4.5/plugins/before-primaryToolbar/ui/BeforePrimaryToolbarWrapper.d.ts +5 -0
- package/dist/types-ts4.5/plugins/block-type/commands/block-type.d.ts +13 -0
- package/dist/types-ts4.5/plugins/block-type/commands/delete-and-move-cursor.d.ts +12 -0
- package/dist/types-ts4.5/plugins/block-type/commands/delete-block-content.d.ts +10 -0
- package/dist/types-ts4.5/plugins/block-type/commands/index.d.ts +6 -0
- package/dist/types-ts4.5/plugins/block-type/commands/insert-block.d.ts +5 -0
- package/dist/types-ts4.5/plugins/block-type/commands/transform-to-code-block.d.ts +3 -0
- package/dist/types-ts4.5/plugins/block-type/index.d.ts +8 -0
- package/dist/types-ts4.5/plugins/block-type/messages.d.ts +152 -0
- package/dist/types-ts4.5/plugins/block-type/pm-plugins/input-rule.d.ts +5 -0
- package/dist/types-ts4.5/plugins/block-type/pm-plugins/keymap.d.ts +4 -0
- package/dist/types-ts4.5/plugins/block-type/pm-plugins/main.d.ts +11 -0
- package/dist/types-ts4.5/plugins/block-type/styles.d.ts +2 -0
- package/dist/types-ts4.5/plugins/block-type/types.d.ts +43 -0
- package/dist/types-ts4.5/plugins/block-type/ui/ToolbarBlockType/blocktype-button.d.ts +23 -0
- package/dist/types-ts4.5/plugins/block-type/ui/ToolbarBlockType/index.d.ts +29 -0
- package/dist/types-ts4.5/plugins/block-type/ui/ToolbarBlockType/styled.d.ts +4 -0
- package/dist/types-ts4.5/plugins/block-type/ui/ToolbarBlockType/toolbar-messages.d.ts +7 -0
- package/dist/types-ts4.5/plugins/block-type/utils.d.ts +2 -0
- package/dist/types-ts4.5/plugins/border/index.d.ts +3 -0
- package/dist/types-ts4.5/plugins/breakout/commands/remove-breakout.d.ts +2 -0
- package/dist/types-ts4.5/plugins/breakout/commands/set-breakout-mode.d.ts +3 -0
- package/dist/types-ts4.5/plugins/breakout/constants.d.ts +4 -0
- package/dist/types-ts4.5/plugins/breakout/index.d.ts +8 -0
- package/dist/types-ts4.5/plugins/breakout/plugin-key.d.ts +4 -0
- package/dist/types-ts4.5/plugins/breakout/types.d.ts +4 -0
- package/dist/types-ts4.5/plugins/breakout/ui/LayoutButton.d.ts +17 -0
- package/dist/types-ts4.5/plugins/breakout/utils/find-breakout-node.d.ts +9 -0
- package/dist/types-ts4.5/plugins/breakout/utils/get-breakout-mode.d.ts +7 -0
- package/dist/types-ts4.5/plugins/breakout/utils/is-breakout-mark-allowed.d.ts +9 -0
- package/dist/types-ts4.5/plugins/breakout/utils/is-supported-node.d.ts +6 -0
- package/dist/types-ts4.5/plugins/caption/index.d.ts +3 -0
- package/dist/types-ts4.5/plugins/caption/nodeviews/index.d.ts +16 -0
- package/dist/types-ts4.5/plugins/caption/pm-plugins/keymap.d.ts +2 -0
- package/dist/types-ts4.5/plugins/caption/pm-plugins/main.d.ts +6 -0
- package/dist/types-ts4.5/plugins/caption/pm-plugins/plugin-key.d.ts +2 -0
- package/dist/types-ts4.5/plugins/card/index.d.ts +10 -0
- package/dist/types-ts4.5/plugins/card/messages.d.ts +82 -0
- package/dist/types-ts4.5/plugins/card/nodeviews/blockCard.d.ts +23 -0
- package/dist/types-ts4.5/plugins/card/nodeviews/embedCard.d.ts +43 -0
- package/dist/types-ts4.5/plugins/card/nodeviews/genericCard.d.ts +34 -0
- package/dist/types-ts4.5/plugins/card/nodeviews/inlineCard.d.ts +22 -0
- package/dist/types-ts4.5/plugins/card/pm-plugins/actions.d.ts +13 -0
- package/dist/types-ts4.5/plugins/card/pm-plugins/analytics/create-analytics-queue.d.ts +10 -0
- package/dist/types-ts4.5/plugins/card/pm-plugins/analytics/events-from-tr.d.ts +17 -0
- package/dist/types-ts4.5/plugins/card/pm-plugins/analytics/index.d.ts +2 -0
- package/dist/types-ts4.5/plugins/card/pm-plugins/analytics/types.d.ts +10 -0
- package/dist/types-ts4.5/plugins/card/pm-plugins/analytics/utils.d.ts +26 -0
- package/dist/types-ts4.5/plugins/card/pm-plugins/doc.d.ts +17 -0
- package/dist/types-ts4.5/plugins/card/pm-plugins/keymap.d.ts +3 -0
- package/dist/types-ts4.5/plugins/card/pm-plugins/main.d.ts +5 -0
- package/dist/types-ts4.5/plugins/card/pm-plugins/plugin-key.d.ts +2 -0
- package/dist/types-ts4.5/plugins/card/pm-plugins/reducers.d.ts +3 -0
- package/dist/types-ts4.5/plugins/card/pm-plugins/shouldReplaceLink.d.ts +2 -0
- package/dist/types-ts4.5/plugins/card/pm-plugins/util/resolve.d.ts +6 -0
- package/dist/types-ts4.5/plugins/card/pm-plugins/util/state.d.ts +28 -0
- package/dist/types-ts4.5/plugins/card/styles.d.ts +2 -0
- package/dist/types-ts4.5/plugins/card/toolbar.d.ts +10 -0
- package/dist/types-ts4.5/plugins/card/types.d.ts +142 -0
- package/dist/types-ts4.5/plugins/card/ui/EditLinkToolbar.d.ts +37 -0
- package/dist/types-ts4.5/plugins/card/ui/EditorSmartCardEvents.d.ts +5 -0
- package/dist/types-ts4.5/plugins/card/ui/EditorSmartCardEventsNext.d.ts +18 -0
- package/dist/types-ts4.5/plugins/card/ui/LinkToolbarAppearance.d.ts +25 -0
- package/dist/types-ts4.5/plugins/card/ui/LinkToolbarButtonGroup.d.ts +16 -0
- package/dist/types-ts4.5/plugins/card/ui/ResizableEmbedCard.d.ts +60 -0
- package/dist/types-ts4.5/plugins/card/ui/assets/card.d.ts +3 -0
- package/dist/types-ts4.5/plugins/card/ui/assets/embed.d.ts +3 -0
- package/dist/types-ts4.5/plugins/card/ui/assets/inline.d.ts +3 -0
- package/dist/types-ts4.5/plugins/card/ui/assets/url.d.ts +3 -0
- package/dist/types-ts4.5/plugins/card/ui/link-toolbar-button-group-options.d.ts +5 -0
- package/dist/types-ts4.5/plugins/card/ui/styled.d.ts +2 -0
- package/dist/types-ts4.5/plugins/card/ui/types.d.ts +12 -0
- package/dist/types-ts4.5/plugins/card/utils.d.ts +21 -0
- package/dist/types-ts4.5/plugins/clear-marks-on-change-to-empty-document/index.d.ts +7 -0
- package/dist/types-ts4.5/plugins/clipboard/index.d.ts +3 -0
- package/dist/types-ts4.5/plugins/clipboard/plugin-key.d.ts +2 -0
- package/dist/types-ts4.5/plugins/clipboard/pm-plugins/main.d.ts +19 -0
- package/dist/types-ts4.5/plugins/code-bidi-warning/index.d.ts +8 -0
- package/dist/types-ts4.5/plugins/code-bidi-warning/plugin-key.d.ts +2 -0
- package/dist/types-ts4.5/plugins/code-bidi-warning/pm-plugins/main.d.ts +5 -0
- package/dist/types-ts4.5/plugins/code-bidi-warning/pm-plugins/plugin-factory.d.ts +8 -0
- package/dist/types-ts4.5/plugins/code-bidi-warning/pm-plugins/reducer.d.ts +3 -0
- package/dist/types-ts4.5/plugins/code-bidi-warning/pm-plugins/types.d.ts +6 -0
- package/dist/types-ts4.5/plugins/code-block/actions.d.ts +7 -0
- package/dist/types-ts4.5/plugins/code-block/ide-ux/bracket-handling.d.ts +12 -0
- package/dist/types-ts4.5/plugins/code-block/ide-ux/commands.d.ts +6 -0
- package/dist/types-ts4.5/plugins/code-block/ide-ux/line-handling.d.ts +25 -0
- package/dist/types-ts4.5/plugins/code-block/ide-ux/paired-character-handling.d.ts +2 -0
- package/dist/types-ts4.5/plugins/code-block/ide-ux/quote-handling.d.ts +12 -0
- package/dist/types-ts4.5/plugins/code-block/index.d.ts +6 -0
- package/dist/types-ts4.5/plugins/code-block/language-list.d.ts +1641 -0
- package/dist/types-ts4.5/plugins/code-block/nodeviews/code-block.d.ts +21 -0
- package/dist/types-ts4.5/plugins/code-block/plugin-key.d.ts +2 -0
- package/dist/types-ts4.5/plugins/code-block/pm-plugins/actions.d.ts +4 -0
- package/dist/types-ts4.5/plugins/code-block/pm-plugins/codeBlockCopySelectionPlugin.d.ts +14 -0
- package/dist/types-ts4.5/plugins/code-block/pm-plugins/ide-ux.d.ts +3 -0
- package/dist/types-ts4.5/plugins/code-block/pm-plugins/keymaps.d.ts +4 -0
- package/dist/types-ts4.5/plugins/code-block/pm-plugins/main-state.d.ts +8 -0
- package/dist/types-ts4.5/plugins/code-block/pm-plugins/main.d.ts +9 -0
- package/dist/types-ts4.5/plugins/code-block/refresh-browser-selection.d.ts +5 -0
- package/dist/types-ts4.5/plugins/code-block/styles.d.ts +2 -0
- package/dist/types-ts4.5/plugins/code-block/toolbar.d.ts +14 -0
- package/dist/types-ts4.5/plugins/code-block/types.d.ts +7 -0
- package/dist/types-ts4.5/plugins/code-block/ui/class-names.d.ts +8 -0
- package/dist/types-ts4.5/plugins/code-block/utils.d.ts +5 -0
- package/dist/types-ts4.5/plugins/collab-edit/actions.d.ts +10 -0
- package/dist/types-ts4.5/plugins/collab-edit/analytics.d.ts +5 -0
- package/dist/types-ts4.5/plugins/collab-edit/events/handlers.d.ts +23 -0
- package/dist/types-ts4.5/plugins/collab-edit/events/initialize.d.ts +14 -0
- package/dist/types-ts4.5/plugins/collab-edit/events/send-transaction.d.ts +11 -0
- package/dist/types-ts4.5/plugins/collab-edit/get-participants-count.d.ts +2 -0
- package/dist/types-ts4.5/plugins/collab-edit/index.d.ts +14 -0
- package/dist/types-ts4.5/plugins/collab-edit/native-collab-provider-plugin.d.ts +7 -0
- package/dist/types-ts4.5/plugins/collab-edit/participants.d.ts +18 -0
- package/dist/types-ts4.5/plugins/collab-edit/plugin-key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/collab-edit/plugin-state.d.ts +23 -0
- package/dist/types-ts4.5/plugins/collab-edit/plugin.d.ts +11 -0
- package/dist/types-ts4.5/plugins/collab-edit/provider/index.d.ts +1 -0
- package/dist/types-ts4.5/plugins/collab-edit/provider/types.d.ts +1 -0
- package/dist/types-ts4.5/plugins/collab-edit/styles.d.ts +1 -0
- package/dist/types-ts4.5/plugins/collab-edit/types.d.ts +36 -0
- package/dist/types-ts4.5/plugins/collab-edit/ui/avatars-with-plugin-state.d.ts +23 -0
- package/dist/types-ts4.5/plugins/collab-edit/ui/avatars.d.ts +12 -0
- package/dist/types-ts4.5/plugins/collab-edit/ui/colored-avatar-item.d.ts +7 -0
- package/dist/types-ts4.5/plugins/collab-edit/ui/index.d.ts +2 -0
- package/dist/types-ts4.5/plugins/collab-edit/ui/invite-to-edit.d.ts +10 -0
- package/dist/types-ts4.5/plugins/collab-edit/ui/styles.d.ts +3 -0
- package/dist/types-ts4.5/plugins/collab-edit/ui/to-avatar.d.ts +4 -0
- package/dist/types-ts4.5/plugins/collab-edit/utils.d.ts +19 -0
- package/dist/types-ts4.5/plugins/context-panel/index.d.ts +11 -0
- package/dist/types-ts4.5/plugins/context-panel/transforms.d.ts +2 -0
- package/dist/types-ts4.5/plugins/context-panel/types.d.ts +1 -0
- package/dist/types-ts4.5/plugins/copy-button/commands.d.ts +8 -0
- package/dist/types-ts4.5/plugins/copy-button/index.d.ts +3 -0
- package/dist/types-ts4.5/plugins/copy-button/pm-plugins/main.d.ts +12 -0
- package/dist/types-ts4.5/plugins/copy-button/pm-plugins/plugin-key.d.ts +2 -0
- package/dist/types-ts4.5/plugins/copy-button/toolbar.d.ts +12 -0
- package/dist/types-ts4.5/plugins/copy-button/utils.d.ts +8 -0
- package/dist/types-ts4.5/plugins/custom-autoformat/doc.d.ts +6 -0
- package/dist/types-ts4.5/plugins/custom-autoformat/index.d.ts +6 -0
- package/dist/types-ts4.5/plugins/custom-autoformat/input-rules.d.ts +9 -0
- package/dist/types-ts4.5/plugins/custom-autoformat/reducers.d.ts +4 -0
- package/dist/types-ts4.5/plugins/custom-autoformat/types.d.ts +31 -0
- package/dist/types-ts4.5/plugins/custom-autoformat/utils.d.ts +5 -0
- package/dist/types-ts4.5/plugins/data-consumer/index.d.ts +3 -0
- package/dist/types-ts4.5/plugins/date/actions.d.ts +17 -0
- package/dist/types-ts4.5/plugins/date/index.d.ts +13 -0
- package/dist/types-ts4.5/plugins/date/nodeviews/date.d.ts +3 -0
- package/dist/types-ts4.5/plugins/date/nodeviews/messages.d.ts +7 -0
- package/dist/types-ts4.5/plugins/date/pm-plugins/keymap.d.ts +3 -0
- package/dist/types-ts4.5/plugins/date/pm-plugins/main.d.ts +6 -0
- package/dist/types-ts4.5/plugins/date/pm-plugins/plugin-key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/date/pm-plugins/types.d.ts +12 -0
- package/dist/types-ts4.5/plugins/date/pm-plugins/utils.d.ts +5 -0
- package/dist/types-ts4.5/plugins/date/styles.d.ts +1 -0
- package/dist/types-ts4.5/plugins/date/types.d.ts +6 -0
- package/dist/types-ts4.5/plugins/date/ui/DatePicker/date-picker-input.d.ts +25 -0
- package/dist/types-ts4.5/plugins/date/ui/DatePicker/index.d.ts +34 -0
- package/dist/types-ts4.5/plugins/date/utils/formatParse.d.ts +27 -0
- package/dist/types-ts4.5/plugins/date/utils/internal.d.ts +33 -0
- package/dist/types-ts4.5/plugins/editor-disabled/index.d.ts +13 -0
- package/dist/types-ts4.5/plugins/emoji/commands/insert-emoji.d.ts +4 -0
- package/dist/types-ts4.5/plugins/emoji/index.d.ts +28 -0
- package/dist/types-ts4.5/plugins/emoji/messages.d.ts +7 -0
- package/dist/types-ts4.5/plugins/emoji/nodeviews/emoji.d.ts +7 -0
- package/dist/types-ts4.5/plugins/emoji/pm-plugins/ascii-input-rules.d.ts +9 -0
- package/dist/types-ts4.5/plugins/emoji/styles.d.ts +1 -0
- package/dist/types-ts4.5/plugins/emoji/types.d.ts +11 -0
- package/dist/types-ts4.5/plugins/emoji/ui/Emoji/index.d.ts +4 -0
- package/dist/types-ts4.5/plugins/expand/commands.d.ts +12 -0
- package/dist/types-ts4.5/plugins/expand/index.d.ts +20 -0
- package/dist/types-ts4.5/plugins/expand/nodeviews/index.d.ts +51 -0
- package/dist/types-ts4.5/plugins/expand/pm-plugins/keymap.d.ts +2 -0
- package/dist/types-ts4.5/plugins/expand/pm-plugins/main.d.ts +7 -0
- package/dist/types-ts4.5/plugins/expand/pm-plugins/plugin-factory.d.ts +3 -0
- package/dist/types-ts4.5/plugins/expand/reducer.d.ts +3 -0
- package/dist/types-ts4.5/plugins/expand/toolbar.d.ts +2 -0
- package/dist/types-ts4.5/plugins/expand/types.d.ts +9 -0
- package/dist/types-ts4.5/plugins/expand/ui/ExpandIconButton.d.ts +43 -0
- package/dist/types-ts4.5/plugins/expand/ui/class-names.d.ts +11 -0
- package/dist/types-ts4.5/plugins/expand/ui/styles.d.ts +2 -0
- package/dist/types-ts4.5/plugins/expand/utils.d.ts +1 -0
- package/dist/types-ts4.5/plugins/extension/actions.d.ts +16 -0
- package/dist/types-ts4.5/plugins/extension/commands.d.ts +11 -0
- package/dist/types-ts4.5/plugins/extension/context-panel.d.ts +7 -0
- package/dist/types-ts4.5/plugins/extension/extension-api.d.ts +14 -0
- package/dist/types-ts4.5/plugins/extension/index.d.ts +17 -0
- package/dist/types-ts4.5/plugins/extension/nodeviews/extension.d.ts +28 -0
- package/dist/types-ts4.5/plugins/extension/plugin-factory.d.ts +4 -0
- package/dist/types-ts4.5/plugins/extension/plugin-key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/extension/pm-plugins/keymap.d.ts +2 -0
- package/dist/types-ts4.5/plugins/extension/pm-plugins/main.d.ts +23 -0
- package/dist/types-ts4.5/plugins/extension/pm-plugins/unique-id.d.ts +3 -0
- package/dist/types-ts4.5/plugins/extension/pm-plugins/utils.d.ts +3 -0
- package/dist/types-ts4.5/plugins/extension/reducer.d.ts +2 -0
- package/dist/types-ts4.5/plugins/extension/toolbar.d.ts +34 -0
- package/dist/types-ts4.5/plugins/extension/types.d.ts +20 -0
- package/dist/types-ts4.5/plugins/extension/ui/Extension/Extension/index.d.ts +104 -0
- package/dist/types-ts4.5/plugins/extension/ui/Extension/Extension/styles.d.ts +6 -0
- package/dist/types-ts4.5/plugins/extension/ui/Extension/ExtensionComponent.d.ts +48 -0
- package/dist/types-ts4.5/plugins/extension/ui/Extension/ExtensionNodeWrapper.d.ts +7 -0
- package/dist/types-ts4.5/plugins/extension/ui/Extension/InlineExtension/index.d.ts +12 -0
- package/dist/types-ts4.5/plugins/extension/ui/Extension/InlineExtension/styles.d.ts +2 -0
- package/dist/types-ts4.5/plugins/extension/ui/Extension/Lozenge.d.ts +14 -0
- package/dist/types-ts4.5/plugins/extension/ui/Extension/index.d.ts +25 -0
- package/dist/types-ts4.5/plugins/extension/ui/Extension/styles.d.ts +8 -0
- package/dist/types-ts4.5/plugins/extension/ui/SaveIndicator/SaveIndicator.d.ts +4 -0
- package/dist/types-ts4.5/plugins/extension/ui/SaveIndicator/messages.d.ts +7 -0
- package/dist/types-ts4.5/plugins/extension/ui/SaveIndicator/types.d.ts +11 -0
- package/dist/types-ts4.5/plugins/extension/ui/styles.d.ts +1 -0
- package/dist/types-ts4.5/plugins/extension/utils.d.ts +10 -0
- package/dist/types-ts4.5/plugins/fake-text-cursor/cursor.d.ts +28 -0
- package/dist/types-ts4.5/plugins/fake-text-cursor/index.d.ts +7 -0
- package/dist/types-ts4.5/plugins/fake-text-cursor/styles.d.ts +1 -0
- package/dist/types-ts4.5/plugins/feedback-dialog/getBrowserInfo.d.ts +6 -0
- package/dist/types-ts4.5/plugins/feedback-dialog/getDeviceInfo.d.ts +6 -0
- package/dist/types-ts4.5/plugins/feedback-dialog/index.d.ts +7 -0
- package/dist/types-ts4.5/plugins/feedback-dialog/loadJiraCollectorDialogScript.d.ts +8 -0
- package/dist/types-ts4.5/plugins/find-replace/FindReplaceToolbarButtonWithState.d.ts +17 -0
- package/dist/types-ts4.5/plugins/find-replace/actions.d.ts +64 -0
- package/dist/types-ts4.5/plugins/find-replace/commands-with-analytics.d.ts +27 -0
- package/dist/types-ts4.5/plugins/find-replace/commands.d.ts +12 -0
- package/dist/types-ts4.5/plugins/find-replace/index.d.ts +13 -0
- package/dist/types-ts4.5/plugins/find-replace/keymap.d.ts +3 -0
- package/dist/types-ts4.5/plugins/find-replace/plugin.d.ts +6 -0
- package/dist/types-ts4.5/plugins/find-replace/reducer.d.ts +4 -0
- package/dist/types-ts4.5/plugins/find-replace/styles.d.ts +3 -0
- package/dist/types-ts4.5/plugins/find-replace/types.d.ts +44 -0
- package/dist/types-ts4.5/plugins/find-replace/ui/Find.d.ts +70 -0
- package/dist/types-ts4.5/plugins/find-replace/ui/FindReplace.d.ts +43 -0
- package/dist/types-ts4.5/plugins/find-replace/ui/FindReplaceToolbarButton.d.ts +21 -0
- package/dist/types-ts4.5/plugins/find-replace/ui/FindReplaceTooltipButton.d.ts +18 -0
- package/dist/types-ts4.5/plugins/find-replace/ui/Replace.d.ts +26 -0
- package/dist/types-ts4.5/plugins/find-replace/ui/styles.d.ts +5 -0
- package/dist/types-ts4.5/plugins/find-replace/utils/batch-decorations.d.ts +36 -0
- package/dist/types-ts4.5/plugins/find-replace/utils/index.d.ts +49 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/index.d.ts +24 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/pm-plugins/force-focus/index.d.ts +18 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/pm-plugins/toolbar-data/commands.d.ts +3 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/pm-plugins/toolbar-data/plugin-factory.d.ts +1 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/pm-plugins/toolbar-data/plugin-key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/pm-plugins/toolbar-data/plugin.d.ts +3 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/pm-plugins/toolbar-data/reducer.d.ts +2 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/pm-plugins/toolbar-data/types.d.ts +11 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/types.d.ts +1 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/Button.d.ts +30 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/CheckboxModal.d.ts +4 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/ConfirmationModal.d.ts +6 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/Dropdown.d.ts +39 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/DropdownMenu.d.ts +29 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/EditorEmojiAddIcon.d.ts +2 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/EmojiPickerButton.d.ts +15 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/ExtensionsPlaceholder.d.ts +12 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/Input.d.ts +23 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/ScrollButtons.d.ts +13 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/Select.d.ts +21 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/Separator.d.ts +4 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/SimpleModal.d.ts +4 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/Toolbar.d.ts +38 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/ToolbarLoader.d.ts +4 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/messages.d.ts +48 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/styles.d.ts +20 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/ui/types.d.ts +1 -0
- package/dist/types-ts4.5/plugins/floating-toolbar/utils.d.ts +4 -0
- package/dist/types-ts4.5/plugins/fragment/index.d.ts +3 -0
- package/dist/types-ts4.5/plugins/fragment/plugin-key.d.ts +2 -0
- package/dist/types-ts4.5/plugins/fragment/pm-plugins/fragment-consistency.d.ts +15 -0
- package/dist/types-ts4.5/plugins/grid/index.d.ts +18 -0
- package/dist/types-ts4.5/plugins/grid/styles.d.ts +2 -0
- package/dist/types-ts4.5/plugins/grid/types.d.ts +6 -0
- package/dist/types-ts4.5/plugins/help-dialog/commands.d.ts +3 -0
- package/dist/types-ts4.5/plugins/help-dialog/index.d.ts +7 -0
- package/dist/types-ts4.5/plugins/help-dialog/plugin-key.d.ts +2 -0
- package/dist/types-ts4.5/plugins/help-dialog/ui/HelpDialogLoader.d.ts +4 -0
- package/dist/types-ts4.5/plugins/help-dialog/ui/index.d.ts +27 -0
- package/dist/types-ts4.5/plugins/help-dialog/ui/styles.d.ts +33 -0
- package/dist/types-ts4.5/plugins/history/actions.d.ts +8 -0
- package/dist/types-ts4.5/plugins/history/index.d.ts +13 -0
- package/dist/types-ts4.5/plugins/history/pm-history-types.d.ts +18 -0
- package/dist/types-ts4.5/plugins/history/reducer.d.ts +4 -0
- package/dist/types-ts4.5/plugins/history/types.d.ts +4 -0
- package/dist/types-ts4.5/plugins/history/utils.d.ts +4 -0
- package/dist/types-ts4.5/plugins/hyperlink/HyperlinkToolbarAppearance.d.ts +28 -0
- package/dist/types-ts4.5/plugins/hyperlink/Toolbar.d.ts +4 -0
- package/dist/types-ts4.5/plugins/hyperlink/analytics.d.ts +2 -0
- package/dist/types-ts4.5/plugins/hyperlink/commands.d.ts +16 -0
- package/dist/types-ts4.5/plugins/hyperlink/index.d.ts +11 -0
- package/dist/types-ts4.5/plugins/hyperlink/pm-plugins/fake-curor-for-toolbar-plugin-key.d.ts +2 -0
- package/dist/types-ts4.5/plugins/hyperlink/pm-plugins/fake-cursor-for-toolbar.d.ts +3 -0
- package/dist/types-ts4.5/plugins/hyperlink/pm-plugins/input-rule.d.ts +7 -0
- package/dist/types-ts4.5/plugins/hyperlink/pm-plugins/keymap.d.ts +3 -0
- package/dist/types-ts4.5/plugins/hyperlink/pm-plugins/main.d.ts +46 -0
- package/dist/types-ts4.5/plugins/hyperlink/styles.d.ts +6 -0
- package/dist/types-ts4.5/plugins/hyperlink/types.d.ts +35 -0
- package/dist/types-ts4.5/plugins/hyperlink/ui/EditorLinkPicker/index.d.ts +19 -0
- package/dist/types-ts4.5/plugins/hyperlink/ui/EditorLinkPicker/useEscapeClickaway.d.ts +2 -0
- package/dist/types-ts4.5/plugins/hyperlink/ui/HyperlinkAddToolbar/HyperlinkAddToolbar.d.ts +109 -0
- package/dist/types-ts4.5/plugins/hyperlink/ui/HyperlinkAddToolbar/index.d.ts +19 -0
- package/dist/types-ts4.5/plugins/hyperlink/ui/HyperlinkAddToolbar/messages.d.ts +32 -0
- package/dist/types-ts4.5/plugins/hyperlink/ui/HyperlinkAddToolbar/utils.d.ts +7 -0
- package/dist/types-ts4.5/plugins/hyperlink/utils.d.ts +25 -0
- package/dist/types-ts4.5/plugins/image-upload/index.d.ts +3 -0
- package/dist/types-ts4.5/plugins/image-upload/pm-plugins/actions.d.ts +2 -0
- package/dist/types-ts4.5/plugins/image-upload/pm-plugins/commands.d.ts +4 -0
- package/dist/types-ts4.5/plugins/image-upload/pm-plugins/input-rule.d.ts +5 -0
- package/dist/types-ts4.5/plugins/image-upload/pm-plugins/main.d.ts +3 -0
- package/dist/types-ts4.5/plugins/image-upload/pm-plugins/plugin-key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/image-upload/types.d.ts +13 -0
- package/dist/types-ts4.5/plugins/image-upload/utils.d.ts +5 -0
- package/dist/types-ts4.5/plugins/indentation/commands/index.d.ts +8 -0
- package/dist/types-ts4.5/plugins/indentation/commands/utils.d.ts +36 -0
- package/dist/types-ts4.5/plugins/indentation/index.d.ts +3 -0
- package/dist/types-ts4.5/plugins/indentation/messages.d.ts +12 -0
- package/dist/types-ts4.5/plugins/indentation/pm-plugins/keymap.d.ts +3 -0
- package/dist/types-ts4.5/plugins/index.d.ts +69 -0
- package/dist/types-ts4.5/plugins/insert-block/index.d.ts +20 -0
- package/dist/types-ts4.5/plugins/insert-block/ui/ToolbarInsertBlock/block-insert-element-browser.d.ts +25 -0
- package/dist/types-ts4.5/plugins/insert-block/ui/ToolbarInsertBlock/block-insert-menu-legacy.d.ts +18 -0
- package/dist/types-ts4.5/plugins/insert-block/ui/ToolbarInsertBlock/block-insert-menu.d.ts +27 -0
- package/dist/types-ts4.5/plugins/insert-block/ui/ToolbarInsertBlock/create-items.d.ts +43 -0
- package/dist/types-ts4.5/plugins/insert-block/ui/ToolbarInsertBlock/dropdown-button.d.ts +16 -0
- package/dist/types-ts4.5/plugins/insert-block/ui/ToolbarInsertBlock/index.d.ts +46 -0
- package/dist/types-ts4.5/plugins/insert-block/ui/ToolbarInsertBlock/item.d.ts +34 -0
- package/dist/types-ts4.5/plugins/insert-block/ui/ToolbarInsertBlock/messages.d.ts +1 -0
- package/dist/types-ts4.5/plugins/insert-block/ui/ToolbarInsertBlock/shallow-equals.d.ts +1 -0
- package/dist/types-ts4.5/plugins/insert-block/ui/ToolbarInsertBlock/sort-items.d.ts +2 -0
- package/dist/types-ts4.5/plugins/insert-block/ui/ToolbarInsertBlock/styles.d.ts +1 -0
- package/dist/types-ts4.5/plugins/insert-block/ui/ToolbarInsertBlock/types.d.ts +62 -0
- package/dist/types-ts4.5/plugins/jira-issue/index.d.ts +5 -0
- package/dist/types-ts4.5/plugins/jira-issue/nodeviews/jira-issue.d.ts +7 -0
- package/dist/types-ts4.5/plugins/layout/actions.d.ts +22 -0
- package/dist/types-ts4.5/plugins/layout/index.d.ts +8 -0
- package/dist/types-ts4.5/plugins/layout/pm-plugins/main.d.ts +5 -0
- package/dist/types-ts4.5/plugins/layout/pm-plugins/plugin-key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/layout/pm-plugins/types.d.ts +14 -0
- package/dist/types-ts4.5/plugins/layout/styles.d.ts +4 -0
- package/dist/types-ts4.5/plugins/layout/toolbar-messages.d.ts +32 -0
- package/dist/types-ts4.5/plugins/layout/toolbar.d.ts +5 -0
- package/dist/types-ts4.5/plugins/layout/types.d.ts +13 -0
- package/dist/types-ts4.5/plugins/layout/utils.d.ts +1 -0
- package/dist/types-ts4.5/plugins/list/actions/conversions.d.ts +6 -0
- package/dist/types-ts4.5/plugins/list/actions/indent-list-items-selected.d.ts +2 -0
- package/dist/types-ts4.5/plugins/list/actions/indent-list.d.ts +2 -0
- package/dist/types-ts4.5/plugins/list/actions/join-list-items-forward.d.ts +16 -0
- package/dist/types-ts4.5/plugins/list/actions/join-list-items-scenarios/index.d.ts +5 -0
- package/dist/types-ts4.5/plugins/list/actions/join-list-items-scenarios/join-list-item-with-paragraph.d.ts +9 -0
- package/dist/types-ts4.5/plugins/list/actions/join-list-items-scenarios/join-list-item-with-parent-nested-list.d.ts +9 -0
- package/dist/types-ts4.5/plugins/list/actions/join-list-items-scenarios/join-nested-list-with-parent-list-item.d.ts +9 -0
- package/dist/types-ts4.5/plugins/list/actions/join-list-items-scenarios/join-paragraph-with-list.d.ts +9 -0
- package/dist/types-ts4.5/plugins/list/actions/join-list-items-scenarios/join-sibling-list-items.d.ts +9 -0
- package/dist/types-ts4.5/plugins/list/actions/merge-lists.d.ts +7 -0
- package/dist/types-ts4.5/plugins/list/actions/outdent-list-items-selected.d.ts +3 -0
- package/dist/types-ts4.5/plugins/list/actions/wrap-and-join-lists.d.ts +15 -0
- package/dist/types-ts4.5/plugins/list/commands/indent-list.d.ts +5 -0
- package/dist/types-ts4.5/plugins/list/commands/index.d.ts +16 -0
- package/dist/types-ts4.5/plugins/list/commands/join-list-item-forward.d.ts +2 -0
- package/dist/types-ts4.5/plugins/list/commands/listBackspace.d.ts +12 -0
- package/dist/types-ts4.5/plugins/list/commands/outdent-list.d.ts +6 -0
- package/dist/types-ts4.5/plugins/list/index.d.ts +10 -0
- package/dist/types-ts4.5/plugins/list/messages.d.ts +27 -0
- package/dist/types-ts4.5/plugins/list/pm-plugins/input-rules/create-list-input-rule.d.ts +9 -0
- package/dist/types-ts4.5/plugins/list/pm-plugins/input-rules/index.d.ts +4 -0
- package/dist/types-ts4.5/plugins/list/pm-plugins/input-rules/wrapping-join-rule.d.ts +13 -0
- package/dist/types-ts4.5/plugins/list/pm-plugins/keymap.d.ts +4 -0
- package/dist/types-ts4.5/plugins/list/pm-plugins/main.d.ts +10 -0
- package/dist/types-ts4.5/plugins/list/styles.d.ts +1 -0
- package/dist/types-ts4.5/plugins/list/transforms.d.ts +16 -0
- package/dist/types-ts4.5/plugins/list/types.d.ts +11 -0
- package/dist/types-ts4.5/plugins/list/utils/analytics.d.ts +7 -0
- package/dist/types-ts4.5/plugins/list/utils/find.d.ts +10 -0
- package/dist/types-ts4.5/plugins/list/utils/indentation.d.ts +7 -0
- package/dist/types-ts4.5/plugins/list/utils/node.d.ts +21 -0
- package/dist/types-ts4.5/plugins/list/utils/replace-content.d.ts +8 -0
- package/dist/types-ts4.5/plugins/list/utils/selection.d.ts +24 -0
- package/dist/types-ts4.5/plugins/macro/actions.d.ts +8 -0
- package/dist/types-ts4.5/plugins/macro/index.d.ts +11 -0
- package/dist/types-ts4.5/plugins/macro/plugin-key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/macro/types.d.ts +4 -0
- package/dist/types-ts4.5/plugins/max-content-size/index.d.ts +13 -0
- package/dist/types-ts4.5/plugins/media/commands/captions.d.ts +4 -0
- package/dist/types-ts4.5/plugins/media/commands/helpers.d.ts +15 -0
- package/dist/types-ts4.5/plugins/media/commands/index.d.ts +1 -0
- package/dist/types-ts4.5/plugins/media/commands/linking.d.ts +10 -0
- package/dist/types-ts4.5/plugins/media/index.d.ts +14 -0
- package/dist/types-ts4.5/plugins/media/media-plugin-options.d.ts +18 -0
- package/dist/types-ts4.5/plugins/media/nodeviews/__mocks__/mediaNodeUpdater.d.ts +24 -0
- package/dist/types-ts4.5/plugins/media/nodeviews/mediaGroup.d.ts +33 -0
- package/dist/types-ts4.5/plugins/media/nodeviews/mediaInline.d.ts +47 -0
- package/dist/types-ts4.5/plugins/media/nodeviews/mediaNodeUpdater.d.ts +47 -0
- package/dist/types-ts4.5/plugins/media/nodeviews/mediaNodeView/index.d.ts +26 -0
- package/dist/types-ts4.5/plugins/media/nodeviews/mediaNodeView/media.d.ts +45 -0
- package/dist/types-ts4.5/plugins/media/nodeviews/mediaSingle.d.ts +61 -0
- package/dist/types-ts4.5/plugins/media/nodeviews/messages.d.ts +7 -0
- package/dist/types-ts4.5/plugins/media/nodeviews/styles.d.ts +16 -0
- package/dist/types-ts4.5/plugins/media/nodeviews/types.d.ts +39 -0
- package/dist/types-ts4.5/plugins/media/picker-facade.d.ts +44 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/alt-text/actions.d.ts +10 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/alt-text/commands.d.ts +3 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/alt-text/index.d.ts +7 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/alt-text/keymap.d.ts +3 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/alt-text/messages.d.ts +37 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/alt-text/reducer.d.ts +4 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/alt-text/style.d.ts +3 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/alt-text/types.d.ts +3 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/alt-text/ui/AltTextEdit.d.ts +41 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/keymap-media-single.d.ts +3 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/keymap.d.ts +4 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/linking/actions.d.ts +20 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/linking/index.d.ts +10 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/linking/keymap.d.ts +3 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/linking/reducer.d.ts +4 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/linking/types.d.ts +12 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/main.d.ts +108 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/media-editor-plugin-factory.d.ts +3 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/mediaTaskManager.d.ts +9 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/plugin-key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/media/pm-plugins/types.d.ts +60 -0
- package/dist/types-ts4.5/plugins/media/styles.d.ts +1 -0
- package/dist/types-ts4.5/plugins/media/toolbar/alt-text.d.ts +11 -0
- package/dist/types-ts4.5/plugins/media/toolbar/commands.d.ts +9 -0
- package/dist/types-ts4.5/plugins/media/toolbar/filePreviewItem.d.ts +9 -0
- package/dist/types-ts4.5/plugins/media/toolbar/imageBorder.d.ts +2 -0
- package/dist/types-ts4.5/plugins/media/toolbar/index.d.ts +5 -0
- package/dist/types-ts4.5/plugins/media/toolbar/linking-toolbar-appearance.d.ts +14 -0
- package/dist/types-ts4.5/plugins/media/toolbar/linking.d.ts +8 -0
- package/dist/types-ts4.5/plugins/media/toolbar/utils.d.ts +6 -0
- package/dist/types-ts4.5/plugins/media/types.d.ts +102 -0
- package/dist/types-ts4.5/plugins/media/ui/CaptionPlaceholder/index.d.ts +7 -0
- package/dist/types-ts4.5/plugins/media/ui/CaptionPlaceholder/messages.d.ts +7 -0
- package/dist/types-ts4.5/plugins/media/ui/ImageBorder/index.d.ts +13 -0
- package/dist/types-ts4.5/plugins/media/ui/ImageBorder/messages.d.ts +42 -0
- package/dist/types-ts4.5/plugins/media/ui/ImageBorder/styles.d.ts +15 -0
- package/dist/types-ts4.5/plugins/media/ui/Media/DropPlaceholder.d.ts +8 -0
- package/dist/types-ts4.5/plugins/media/ui/Media/drop-placeholder-messages.d.ts +7 -0
- package/dist/types-ts4.5/plugins/media/ui/MediaLinkingToolbar.d.ts +35 -0
- package/dist/types-ts4.5/plugins/media/ui/MediaPicker/BrowserWrapper.d.ts +11 -0
- package/dist/types-ts4.5/plugins/media/ui/MediaPicker/ClipboardWrapper.d.ts +9 -0
- package/dist/types-ts4.5/plugins/media/ui/MediaPicker/DropzoneWrapper.d.ts +13 -0
- package/dist/types-ts4.5/plugins/media/ui/MediaPicker/PickerFacadeProvider.d.ts +28 -0
- package/dist/types-ts4.5/plugins/media/ui/MediaPicker/index.d.ts +21 -0
- package/dist/types-ts4.5/plugins/media/ui/ResizableMediaSingle/index.d.ts +44 -0
- package/dist/types-ts4.5/plugins/media/ui/ResizableMediaSingle/styled.d.ts +2 -0
- package/dist/types-ts4.5/plugins/media/ui/ResizableMediaSingle/types.d.ts +40 -0
- package/dist/types-ts4.5/plugins/media/ui/ToolbarMedia/index.d.ts +17 -0
- package/dist/types-ts4.5/plugins/media/ui/ToolbarMedia/toolbar-media-messages.d.ts +7 -0
- package/dist/types-ts4.5/plugins/media/ui/media-linking-toolbar-messages.d.ts +7 -0
- package/dist/types-ts4.5/plugins/media/utils/check-media-type.d.ts +4 -0
- package/dist/types-ts4.5/plugins/media/utils/current-media-node.d.ts +9 -0
- package/dist/types-ts4.5/plugins/media/utils/is-image.d.ts +1 -0
- package/dist/types-ts4.5/plugins/media/utils/media-common.d.ts +29 -0
- package/dist/types-ts4.5/plugins/media/utils/media-files.d.ts +30 -0
- package/dist/types-ts4.5/plugins/media/utils/media-single.d.ts +32 -0
- package/dist/types-ts4.5/plugins/mentions/analytics.d.ts +13 -0
- package/dist/types-ts4.5/plugins/mentions/index.d.ts +8 -0
- package/dist/types-ts4.5/plugins/mentions/messages.d.ts +22 -0
- package/dist/types-ts4.5/plugins/mentions/nodeviews/mention.d.ts +9 -0
- package/dist/types-ts4.5/plugins/mentions/pm-plugins/key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/mentions/pm-plugins/main.d.ts +6 -0
- package/dist/types-ts4.5/plugins/mentions/pm-plugins/utils.d.ts +3 -0
- package/dist/types-ts4.5/plugins/mentions/styles.d.ts +1 -0
- package/dist/types-ts4.5/plugins/mentions/type-ahead/index.d.ts +17 -0
- package/dist/types-ts4.5/plugins/mentions/types.d.ts +25 -0
- package/dist/types-ts4.5/plugins/mentions/ui/InviteItem/index.d.ts +22 -0
- package/dist/types-ts4.5/plugins/mentions/ui/InviteItem/styles.d.ts +8 -0
- package/dist/types-ts4.5/plugins/mentions/ui/Mention/index.d.ts +19 -0
- package/dist/types-ts4.5/plugins/mentions/ui/ToolbarMention/index.d.ts +12 -0
- package/dist/types-ts4.5/plugins/mentions/utils.d.ts +8 -0
- package/dist/types-ts4.5/plugins/mobile-dimensions/actions.d.ts +23 -0
- package/dist/types-ts4.5/plugins/mobile-dimensions/commands.d.ts +4 -0
- package/dist/types-ts4.5/plugins/mobile-dimensions/index.d.ts +3 -0
- package/dist/types-ts4.5/plugins/mobile-dimensions/plugin-factory.d.ts +5 -0
- package/dist/types-ts4.5/plugins/mobile-dimensions/reducer.d.ts +3 -0
- package/dist/types-ts4.5/plugins/mobile-dimensions/types.d.ts +10 -0
- package/dist/types-ts4.5/plugins/mobile-dimensions/utils.d.ts +2 -0
- package/dist/types-ts4.5/plugins/mobile-selection/content-in-selection.d.ts +5 -0
- package/dist/types-ts4.5/plugins/mobile-selection/index.d.ts +2 -0
- package/dist/types-ts4.5/plugins/mobile-selection/mobile-selection-plugin.d.ts +7 -0
- package/dist/types-ts4.5/plugins/mobile-selection/types.d.ts +32 -0
- package/dist/types-ts4.5/plugins/panel/actions.d.ts +9 -0
- package/dist/types-ts4.5/plugins/panel/index.d.ts +6 -0
- package/dist/types-ts4.5/plugins/panel/message.d.ts +37 -0
- package/dist/types-ts4.5/plugins/panel/nodeviews/panel.d.ts +35 -0
- package/dist/types-ts4.5/plugins/panel/pm-plugins/keymaps.d.ts +3 -0
- package/dist/types-ts4.5/plugins/panel/pm-plugins/main.d.ts +11 -0
- package/dist/types-ts4.5/plugins/panel/styles.d.ts +2 -0
- package/dist/types-ts4.5/plugins/panel/toolbar.d.ts +13 -0
- package/dist/types-ts4.5/plugins/panel/types.d.ts +21 -0
- package/dist/types-ts4.5/plugins/panel/utils.d.ts +5 -0
- package/dist/types-ts4.5/plugins/paste/actions.d.ts +15 -0
- package/dist/types-ts4.5/plugins/paste/commands.d.ts +16 -0
- package/dist/types-ts4.5/plugins/paste/edge-cases/index.d.ts +7 -0
- package/dist/types-ts4.5/plugins/paste/edge-cases/lists.d.ts +18 -0
- package/dist/types-ts4.5/plugins/paste/handlers.d.ts +50 -0
- package/dist/types-ts4.5/plugins/paste/index.d.ts +14 -0
- package/dist/types-ts4.5/plugins/paste/md-plugins/ignore-list-heading-md-plugin.d.ts +2 -0
- package/dist/types-ts4.5/plugins/paste/md.d.ts +2 -0
- package/dist/types-ts4.5/plugins/paste/pm-plugins/analytics.d.ts +42 -0
- package/dist/types-ts4.5/plugins/paste/pm-plugins/clipboard-text-serializer.d.ts +13 -0
- package/dist/types-ts4.5/plugins/paste/pm-plugins/main.d.ts +10 -0
- package/dist/types-ts4.5/plugins/paste/pm-plugins/plugin-factory.d.ts +3 -0
- package/dist/types-ts4.5/plugins/paste/reducer.d.ts +3 -0
- package/dist/types-ts4.5/plugins/paste/types.d.ts +6 -0
- package/dist/types-ts4.5/plugins/paste/util/index.d.ts +18 -0
- package/dist/types-ts4.5/plugins/paste/util/tinyMCE.d.ts +32 -0
- package/dist/types-ts4.5/plugins/placeholder/index.d.ts +16 -0
- package/dist/types-ts4.5/plugins/placeholder/styles.d.ts +1 -0
- package/dist/types-ts4.5/plugins/placeholder-text/actions.d.ts +4 -0
- package/dist/types-ts4.5/plugins/placeholder-text/index.d.ts +9 -0
- package/dist/types-ts4.5/plugins/placeholder-text/placeholder-text-nodeview.d.ts +17 -0
- package/dist/types-ts4.5/plugins/placeholder-text/plugin-key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/placeholder-text/selection-utils.d.ts +2 -0
- package/dist/types-ts4.5/plugins/placeholder-text/styles.d.ts +1 -0
- package/dist/types-ts4.5/plugins/placeholder-text/types.d.ts +7 -0
- package/dist/types-ts4.5/plugins/placeholder-text/ui/PlaceholderFloatingToolbar/index.d.ts +25 -0
- package/dist/types-ts4.5/plugins/quick-insert/api.d.ts +6 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/action.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/code.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/custom-panel.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/date.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/decision.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/divider.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/emoji.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/expand.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/fallback.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/feedback.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/heading1.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/heading2.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/heading3.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/heading4.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/heading5.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/heading6.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/images.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/index.d.ts +30 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/layout.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/link.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/list-number.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/list.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/mention.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/panel-error.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/panel-note.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/panel-success.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/panel-warning.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/panel.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/quote.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/assets/status.d.ts +2 -0
- package/dist/types-ts4.5/plugins/quick-insert/commands.d.ts +5 -0
- package/dist/types-ts4.5/plugins/quick-insert/index.d.ts +13 -0
- package/dist/types-ts4.5/plugins/quick-insert/plugin-key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/quick-insert/search.d.ts +5 -0
- package/dist/types-ts4.5/plugins/quick-insert/types.d.ts +24 -0
- package/dist/types-ts4.5/plugins/quick-insert/ui/ModalElementBrowser/index.d.ts +8 -0
- package/dist/types-ts4.5/plugins/rank.d.ts +6 -0
- package/dist/types-ts4.5/plugins/rule/commands.d.ts +4 -0
- package/dist/types-ts4.5/plugins/rule/index.d.ts +9 -0
- package/dist/types-ts4.5/plugins/rule/pm-plugins/input-rule.d.ts +8 -0
- package/dist/types-ts4.5/plugins/rule/pm-plugins/keymap.d.ts +4 -0
- package/dist/types-ts4.5/plugins/rule/styles.d.ts +2 -0
- package/dist/types-ts4.5/plugins/save-on-enter/index.d.ts +10 -0
- package/dist/types-ts4.5/plugins/scroll-into-view/index.d.ts +14 -0
- package/dist/types-ts4.5/plugins/selection/actions.d.ts +17 -0
- package/dist/types-ts4.5/plugins/selection/commands.d.ts +8 -0
- package/dist/types-ts4.5/plugins/selection/gap-cursor/actions.d.ts +25 -0
- package/dist/types-ts4.5/plugins/selection/gap-cursor/direction.d.ts +10 -0
- package/dist/types-ts4.5/plugins/selection/gap-cursor/selection.d.ts +1 -0
- package/dist/types-ts4.5/plugins/selection/gap-cursor/styles.d.ts +2 -0
- package/dist/types-ts4.5/plugins/selection/gap-cursor/utils/is-ignored.d.ts +1 -0
- package/dist/types-ts4.5/plugins/selection/gap-cursor/utils/is-valid-target-node.d.ts +1 -0
- package/dist/types-ts4.5/plugins/selection/gap-cursor/utils/place-gap-cursor.d.ts +2 -0
- package/dist/types-ts4.5/plugins/selection/gap-cursor/utils.d.ts +7 -0
- package/dist/types-ts4.5/plugins/selection/gap-cursor-selection.d.ts +2 -0
- package/dist/types-ts4.5/plugins/selection/index.d.ts +6 -0
- package/dist/types-ts4.5/plugins/selection/plugin-factory.d.ts +2 -0
- package/dist/types-ts4.5/plugins/selection/pm-plugins/events/create-selection-between.d.ts +4 -0
- package/dist/types-ts4.5/plugins/selection/pm-plugins/events/keydown.d.ts +2 -0
- package/dist/types-ts4.5/plugins/selection/pm-plugins/gap-cursor-keymap.d.ts +2 -0
- package/dist/types-ts4.5/plugins/selection/pm-plugins/gap-cursor-main.d.ts +3 -0
- package/dist/types-ts4.5/plugins/selection/pm-plugins/gap-cursor-plugin-key.d.ts +2 -0
- package/dist/types-ts4.5/plugins/selection/pm-plugins/keymap.d.ts +3 -0
- package/dist/types-ts4.5/plugins/selection/pm-plugins/selection-main.d.ts +7 -0
- package/dist/types-ts4.5/plugins/selection/reducer.d.ts +3 -0
- package/dist/types-ts4.5/plugins/selection/types.d.ts +14 -0
- package/dist/types-ts4.5/plugins/selection/utils.d.ts +64 -0
- package/dist/types-ts4.5/plugins/status/actions.d.ts +14 -0
- package/dist/types-ts4.5/plugins/status/analytics.d.ts +4 -0
- package/dist/types-ts4.5/plugins/status/index.d.ts +6 -0
- package/dist/types-ts4.5/plugins/status/keymap.d.ts +3 -0
- package/dist/types-ts4.5/plugins/status/nodeviews/messages.d.ts +17 -0
- package/dist/types-ts4.5/plugins/status/nodeviews/status.d.ts +24 -0
- package/dist/types-ts4.5/plugins/status/plugin-key.d.ts +4 -0
- package/dist/types-ts4.5/plugins/status/plugin.d.ts +7 -0
- package/dist/types-ts4.5/plugins/status/styles.d.ts +1 -0
- package/dist/types-ts4.5/plugins/status/types.d.ts +14 -0
- package/dist/types-ts4.5/plugins/status/ui/statusPicker.d.ts +55 -0
- package/dist/types-ts4.5/plugins/status/utils.d.ts +5 -0
- package/dist/types-ts4.5/plugins/submit-editor/index.d.ts +11 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/commands.d.ts +16 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/index.d.ts +6 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/nodeviews/decisionItem.d.ts +5 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/nodeviews/taskItem.d.ts +9 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/pm-plugins/commands.d.ts +15 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/pm-plugins/helpers.d.ts +54 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/pm-plugins/input-rules.d.ts +5 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/pm-plugins/keymaps.d.ts +9 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/pm-plugins/main.d.ts +5 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/pm-plugins/plugin-key.d.ts +2 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/styles.d.ts +1 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/types.d.ts +23 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/ui/Decision/index.d.ts +14 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/ui/Task/index.d.ts +26 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/ui/Task/task-item-with-providers.d.ts +27 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/ui/ToolbarDecision/index.d.ts +20 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/ui/ToolbarTask/index.d.ts +20 -0
- package/dist/types-ts4.5/plugins/tasks-and-decisions/utils.d.ts +4 -0
- package/dist/types-ts4.5/plugins/text-color/commands/change-color.d.ts +2 -0
- package/dist/types-ts4.5/plugins/text-color/commands/remove-color.d.ts +2 -0
- package/dist/types-ts4.5/plugins/text-color/commands/toggle-color.d.ts +2 -0
- package/dist/types-ts4.5/plugins/text-color/index.d.ts +13 -0
- package/dist/types-ts4.5/plugins/text-color/pm-plugins/main.d.ts +25 -0
- package/dist/types-ts4.5/plugins/text-color/ui/ToolbarTextColor/icon.d.ts +2 -0
- package/dist/types-ts4.5/plugins/text-color/ui/ToolbarTextColor/index.d.ts +51 -0
- package/dist/types-ts4.5/plugins/text-color/ui/ToolbarTextColor/styles.d.ts +3 -0
- package/dist/types-ts4.5/plugins/text-color/utils/color.d.ts +6 -0
- package/dist/types-ts4.5/plugins/text-color/utils/disabled.d.ts +2 -0
- package/dist/types-ts4.5/plugins/text-formatting/commands/clear-formatting.d.ts +6 -0
- package/dist/types-ts4.5/plugins/text-formatting/commands/text-formatting.d.ts +35 -0
- package/dist/types-ts4.5/plugins/text-formatting/commands/transform-to-code.d.ts +2 -0
- package/dist/types-ts4.5/plugins/text-formatting/index.d.ts +6 -0
- package/dist/types-ts4.5/plugins/text-formatting/pm-plugins/clear-formatting-keymap.d.ts +3 -0
- package/dist/types-ts4.5/plugins/text-formatting/pm-plugins/clear-formatting.d.ts +8 -0
- package/dist/types-ts4.5/plugins/text-formatting/pm-plugins/cursor.d.ts +3 -0
- package/dist/types-ts4.5/plugins/text-formatting/pm-plugins/input-rule.d.ts +23 -0
- package/dist/types-ts4.5/plugins/text-formatting/pm-plugins/keymap.d.ts +3 -0
- package/dist/types-ts4.5/plugins/text-formatting/pm-plugins/main.d.ts +7 -0
- package/dist/types-ts4.5/plugins/text-formatting/pm-plugins/plugin-key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/text-formatting/pm-plugins/smart-input-rule.d.ts +3 -0
- package/dist/types-ts4.5/plugins/text-formatting/styles.d.ts +2 -0
- package/dist/types-ts4.5/plugins/text-formatting/types.d.ts +30 -0
- package/dist/types-ts4.5/plugins/text-formatting/ui/Toolbar/constants.d.ts +6 -0
- package/dist/types-ts4.5/plugins/text-formatting/ui/Toolbar/dropdown-menu.d.ts +15 -0
- package/dist/types-ts4.5/plugins/text-formatting/ui/Toolbar/hooks/clear-formatting-icon.d.ts +2 -0
- package/dist/types-ts4.5/plugins/text-formatting/ui/Toolbar/hooks/formatting-icons.d.ts +9 -0
- package/dist/types-ts4.5/plugins/text-formatting/ui/Toolbar/hooks/menu-state.d.ts +5 -0
- package/dist/types-ts4.5/plugins/text-formatting/ui/Toolbar/hooks/responsive-toolbar-buttons.d.ts +20 -0
- package/dist/types-ts4.5/plugins/text-formatting/ui/Toolbar/index.d.ts +24 -0
- package/dist/types-ts4.5/plugins/text-formatting/ui/Toolbar/more-button.d.ts +13 -0
- package/dist/types-ts4.5/plugins/text-formatting/ui/Toolbar/single-toolbar-buttons.d.ts +9 -0
- package/dist/types-ts4.5/plugins/text-formatting/ui/Toolbar/toolbar-messages.d.ts +87 -0
- package/dist/types-ts4.5/plugins/text-formatting/ui/Toolbar/types.d.ts +32 -0
- package/dist/types-ts4.5/plugins/text-formatting/utils.d.ts +15 -0
- package/dist/types-ts4.5/plugins/toolbar-lists-indentation/index.d.ts +13 -0
- package/dist/types-ts4.5/plugins/toolbar-lists-indentation/pm-plugins/indentation-buttons.d.ts +14 -0
- package/dist/types-ts4.5/plugins/toolbar-lists-indentation/types.d.ts +20 -0
- package/dist/types-ts4.5/plugins/toolbar-lists-indentation/ui/Toolbar.d.ts +4 -0
- package/dist/types-ts4.5/plugins/toolbar-lists-indentation/ui/ToolbarDropdown.d.ts +9 -0
- package/dist/types-ts4.5/plugins/toolbar-lists-indentation/ui/index.d.ts +22 -0
- package/dist/types-ts4.5/plugins/toolbar-lists-indentation/ui/onItemActivated.d.ts +8 -0
- package/dist/types-ts4.5/plugins/type-ahead/api.d.ts +62 -0
- package/dist/types-ts4.5/plugins/type-ahead/commands/insert-type-ahead-item.d.ts +12 -0
- package/dist/types-ts4.5/plugins/type-ahead/commands/update-list-items.d.ts +3 -0
- package/dist/types-ts4.5/plugins/type-ahead/commands/update-query.d.ts +2 -0
- package/dist/types-ts4.5/plugins/type-ahead/commands/update-selected-index.d.ts +2 -0
- package/dist/types-ts4.5/plugins/type-ahead/constants.d.ts +8 -0
- package/dist/types-ts4.5/plugins/type-ahead/index.d.ts +22 -0
- package/dist/types-ts4.5/plugins/type-ahead/insert-utils.d.ts +18 -0
- package/dist/types-ts4.5/plugins/type-ahead/messages.d.ts +72 -0
- package/dist/types-ts4.5/plugins/type-ahead/pm-plugins/actions.d.ts +9 -0
- package/dist/types-ts4.5/plugins/type-ahead/pm-plugins/decorations.d.ts +15 -0
- package/dist/types-ts4.5/plugins/type-ahead/pm-plugins/input-rules.d.ts +6 -0
- package/dist/types-ts4.5/plugins/type-ahead/pm-plugins/insert-item-plugin.d.ts +2 -0
- package/dist/types-ts4.5/plugins/type-ahead/pm-plugins/key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/type-ahead/pm-plugins/main.d.ts +15 -0
- package/dist/types-ts4.5/plugins/type-ahead/pm-plugins/reducer.d.ts +10 -0
- package/dist/types-ts4.5/plugins/type-ahead/pm-plugins/utils.d.ts +4 -0
- package/dist/types-ts4.5/plugins/type-ahead/stats-modifier.d.ts +20 -0
- package/dist/types-ts4.5/plugins/type-ahead/transforms/close-type-ahead.d.ts +2 -0
- package/dist/types-ts4.5/plugins/type-ahead/transforms/open-typeahead-at-cursor.d.ts +10 -0
- package/dist/types-ts4.5/plugins/type-ahead/transforms/set-selection-before-query.d.ts +2 -0
- package/dist/types-ts4.5/plugins/type-ahead/types.d.ts +65 -0
- package/dist/types-ts4.5/plugins/type-ahead/ui/AssistiveText.d.ts +33 -0
- package/dist/types-ts4.5/plugins/type-ahead/ui/InputQuery.d.ts +27 -0
- package/dist/types-ts4.5/plugins/type-ahead/ui/TypeAheadList.d.ts +25 -0
- package/dist/types-ts4.5/plugins/type-ahead/ui/TypeAheadListItem.d.ts +18 -0
- package/dist/types-ts4.5/plugins/type-ahead/ui/TypeAheadPopup.d.ts +29 -0
- package/dist/types-ts4.5/plugins/type-ahead/ui/WrapperTypeAhead.d.ts +21 -0
- package/dist/types-ts4.5/plugins/type-ahead/ui/hooks/use-item-insert.d.ts +7 -0
- package/dist/types-ts4.5/plugins/type-ahead/ui/hooks/use-load-items.d.ts +3 -0
- package/dist/types-ts4.5/plugins/type-ahead/ui/hooks/use-on-force-select.d.ts +11 -0
- package/dist/types-ts4.5/plugins/type-ahead/utils.d.ts +29 -0
- package/dist/types-ts4.5/plugins/undo-redo/attach-input-meta.d.ts +5 -0
- package/dist/types-ts4.5/plugins/undo-redo/commands.d.ts +4 -0
- package/dist/types-ts4.5/plugins/undo-redo/enums.d.ts +4 -0
- package/dist/types-ts4.5/plugins/undo-redo/index.d.ts +3 -0
- package/dist/types-ts4.5/plugins/undo-redo/messages.d.ts +12 -0
- package/dist/types-ts4.5/plugins/undo-redo/pm-plugins/keymaps.d.ts +2 -0
- package/dist/types-ts4.5/plugins/undo-redo/pm-plugins/main.d.ts +2 -0
- package/dist/types-ts4.5/plugins/undo-redo/pm-plugins/plugin-key.d.ts +2 -0
- package/dist/types-ts4.5/plugins/undo-redo/ui/ToolbarUndoRedo/index.d.ts +21 -0
- package/dist/types-ts4.5/plugins/undo-redo/undo-redo-input-source.d.ts +3 -0
- package/dist/types-ts4.5/plugins/unsupported-content/index.d.ts +5 -0
- package/dist/types-ts4.5/plugins/unsupported-content/styles.d.ts +5 -0
- package/dist/types-ts4.5/plugins/unsupported-content/unsupported-inline-node-view.d.ts +11 -0
- package/dist/types-ts4.5/plugins/view-update-subscription/index.d.ts +19 -0
- package/dist/types-ts4.5/plugins/view-update-subscription/subscribe/toolbarAndPickerUpdates.d.ts +12 -0
- package/dist/types-ts4.5/plugins/view-update-subscription/subscribe/type-ahead-updates.d.ts +9 -0
- package/dist/types-ts4.5/plugins/width/index.d.ts +10 -0
- package/dist/types-ts4.5/selection-api/api.d.ts +11 -0
- package/dist/types-ts4.5/stories/examples.d.ts +9 -0
- package/dist/types-ts4.5/test-utils.d.ts +38 -0
- package/dist/types-ts4.5/types/allowed-block-types.d.ts +1 -0
- package/dist/types-ts4.5/types/browser.d.ts +1 -0
- package/dist/types-ts4.5/types/command.d.ts +5 -0
- package/dist/types-ts4.5/types/dom-at-pos.d.ts +4 -0
- package/dist/types-ts4.5/types/editor-appearance-component.d.ts +48 -0
- package/dist/types-ts4.5/types/editor-appearance.d.ts +1 -0
- package/dist/types-ts4.5/types/editor-config.d.ts +24 -0
- package/dist/types-ts4.5/types/editor-instance.d.ts +19 -0
- package/dist/types-ts4.5/types/editor-onchange.d.ts +4 -0
- package/dist/types-ts4.5/types/editor-plugin.d.ts +1 -0
- package/dist/types-ts4.5/types/editor-props.d.ts +259 -0
- package/dist/types-ts4.5/types/editor-react-context.d.ts +1 -0
- package/dist/types-ts4.5/types/empty-state-handler.d.ts +1 -0
- package/dist/types-ts4.5/types/extension-config.d.ts +5 -0
- package/dist/types-ts4.5/types/feature-flags.d.ts +1 -0
- package/dist/types-ts4.5/types/get-editor-props.d.ts +12 -0
- package/dist/types-ts4.5/types/i18n.d.ts +5 -0
- package/dist/types-ts4.5/types/index.d.ts +18 -0
- package/dist/types-ts4.5/types/performance-tracking.d.ts +323 -0
- package/dist/types-ts4.5/types/pm-config.d.ts +1 -0
- package/dist/types-ts4.5/types/pm-plugin-list.d.ts +9 -0
- package/dist/types-ts4.5/types/pm-plugin.d.ts +1 -0
- package/dist/types-ts4.5/types/ui-components.d.ts +1 -0
- package/dist/types-ts4.5/ui/Addon/ClickAreaBlock/index.d.ts +10 -0
- package/dist/types-ts4.5/ui/Addon/ClickAreaInline/index.d.ts +8 -0
- package/dist/types-ts4.5/ui/Addon/ClickAreaMobile/index.d.ts +31 -0
- package/dist/types-ts4.5/ui/Addon/Dropdown/index.d.ts +14 -0
- package/dist/types-ts4.5/ui/Addon/Dropdown/styles.d.ts +1 -0
- package/dist/types-ts4.5/ui/Addon/DropdownItem/index.d.ts +5 -0
- package/dist/types-ts4.5/ui/Addon/DropdownItem/styles.d.ts +1 -0
- package/dist/types-ts4.5/ui/Addon/click-area-helper.d.ts +13 -0
- package/dist/types-ts4.5/ui/Addon/index.d.ts +6 -0
- package/dist/types-ts4.5/ui/Addon/types.d.ts +17 -0
- package/dist/types-ts4.5/ui/Alignment/AlignmentButton/index.d.ts +17 -0
- package/dist/types-ts4.5/ui/Alignment/index.d.ts +12 -0
- package/dist/types-ts4.5/ui/Alignment/messages.d.ts +17 -0
- package/dist/types-ts4.5/ui/Alignment/styles.d.ts +1 -0
- package/dist/types-ts4.5/ui/Appearance/Chromeless.d.ts +11 -0
- package/dist/types-ts4.5/ui/Appearance/Comment/Comment.d.ts +7 -0
- package/dist/types-ts4.5/ui/Appearance/Comment/Toolbar.d.ts +10 -0
- package/dist/types-ts4.5/ui/Appearance/Comment/index.d.ts +1 -0
- package/dist/types-ts4.5/ui/Appearance/FullPage/FullPage.d.ts +25 -0
- package/dist/types-ts4.5/ui/Appearance/FullPage/FullPageContentArea.d.ts +34 -0
- package/dist/types-ts4.5/ui/Appearance/FullPage/FullPageToolbar.d.ts +36 -0
- package/dist/types-ts4.5/ui/Appearance/FullPage/MainToolbar.d.ts +7 -0
- package/dist/types-ts4.5/ui/Appearance/FullPage/StyledComponents.d.ts +378 -0
- package/dist/types-ts4.5/ui/Appearance/FullPage/index.d.ts +1 -0
- package/dist/types-ts4.5/ui/Appearance/FullPage/messages.d.ts +18 -0
- package/dist/types-ts4.5/ui/Appearance/Mobile.d.ts +3 -0
- package/dist/types-ts4.5/ui/AppearanceComponents/Mobile.d.ts +12 -0
- package/dist/types-ts4.5/ui/ChromeCollapsed/index.d.ts +11 -0
- package/dist/types-ts4.5/ui/ChromeCollapsed/messages.d.ts +7 -0
- package/dist/types-ts4.5/ui/ChromeCollapsed/styles.d.ts +1 -0
- package/dist/types-ts4.5/ui/CollapsedEditor/index.d.ts +20 -0
- package/dist/types-ts4.5/ui/ColorPalette/Palettes/cellBackgroundColorPalette.d.ts +2 -0
- package/dist/types-ts4.5/ui/ColorPalette/Palettes/common.d.ts +1 -0
- package/dist/types-ts4.5/ui/ColorPalette/Palettes/index.d.ts +2 -0
- package/dist/types-ts4.5/ui/ColorPalette/Palettes/paletteMessages.d.ts +2 -0
- package/dist/types-ts4.5/ui/ColorPalette/Palettes/panelBackgroundPalette.d.ts +1 -0
- package/dist/types-ts4.5/ui/ColorPalette/Palettes/statusColorPalette.d.ts +1 -0
- package/dist/types-ts4.5/ui/ColorPalette/Palettes/textColorPalette.d.ts +1 -0
- package/dist/types-ts4.5/ui/ColorPalette/Palettes/type.d.ts +1 -0
- package/dist/types-ts4.5/ui/ColorPalette/index.d.ts +3 -0
- package/dist/types-ts4.5/ui/ColorPickerButton/index.d.ts +24 -0
- package/dist/types-ts4.5/ui/ConfigPanel/ConfigPanel.d.ts +22 -0
- package/dist/types-ts4.5/ui/ConfigPanel/ConfigPanelFieldsLoader.d.ts +20 -0
- package/dist/types-ts4.5/ui/ConfigPanel/ConfigPanelLoader.d.ts +5 -0
- package/dist/types-ts4.5/ui/ConfigPanel/ErrorMessage/ErrorImage.d.ts +4 -0
- package/dist/types-ts4.5/ui/ConfigPanel/ErrorMessage/index.d.ts +10 -0
- package/dist/types-ts4.5/ui/ConfigPanel/FieldMessages.d.ts +12 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/Boolean.d.ts +8 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/CheckboxGroup.d.ts +8 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/ColorPicker.d.ts +21 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/CustomSelect.d.ts +24 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/Date.d.ts +20 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/DateRange.d.ts +20 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/Enum.d.ts +10 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/Expand.d.ts +18 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/Fieldset.d.ts +20 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/Number.d.ts +10 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/RadioGroup.d.ts +8 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/Select.d.ts +11 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/SelectItem.d.ts +5 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/String.d.ts +10 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/TabGroup.d.ts +15 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/UnhandledType.d.ts +6 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/UserSelect.d.ts +10 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Fields/common/RequiredIndicator.d.ts +1 -0
- package/dist/types-ts4.5/ui/ConfigPanel/FormContent.d.ts +4 -0
- package/dist/types-ts4.5/ui/ConfigPanel/FormErrorBoundary.d.ts +16 -0
- package/dist/types-ts4.5/ui/ConfigPanel/Header.d.ts +21 -0
- package/dist/types-ts4.5/ui/ConfigPanel/LoadingState.d.ts +4 -0
- package/dist/types-ts4.5/ui/ConfigPanel/NestedForms/RemovableField.d.ts +19 -0
- package/dist/types-ts4.5/ui/ConfigPanel/index.d.ts +2 -0
- package/dist/types-ts4.5/ui/ConfigPanel/messages.d.ts +87 -0
- package/dist/types-ts4.5/ui/ConfigPanel/transformers.d.ts +9 -0
- package/dist/types-ts4.5/ui/ConfigPanel/types.d.ts +40 -0
- package/dist/types-ts4.5/ui/ConfigPanel/utils.d.ts +13 -0
- package/dist/types-ts4.5/ui/ContentStyles/index.d.ts +12 -0
- package/dist/types-ts4.5/ui/ContextPanel/context.d.ts +24 -0
- package/dist/types-ts4.5/ui/ContextPanel/index.d.ts +41 -0
- package/dist/types-ts4.5/ui/Dropdown/index.d.ts +7 -0
- package/dist/types-ts4.5/ui/DropdownMenu/index.d.ts +3 -0
- package/dist/types-ts4.5/ui/DropdownMenu/types.d.ts +1 -0
- package/dist/types-ts4.5/ui/EditorContext/index.d.ts +18 -0
- package/dist/types-ts4.5/ui/ElementBrowser/ElementBrowser.d.ts +36 -0
- package/dist/types-ts4.5/ui/ElementBrowser/InsertMenu.d.ts +4 -0
- package/dist/types-ts4.5/ui/ElementBrowser/ModalElementBrowser.d.ts +17 -0
- package/dist/types-ts4.5/ui/ElementBrowser/categories.d.ts +5 -0
- package/dist/types-ts4.5/ui/ElementBrowser/components/CategoryList.d.ts +10 -0
- package/dist/types-ts4.5/ui/ElementBrowser/components/ElementBrowserLoader.d.ts +5 -0
- package/dist/types-ts4.5/ui/ElementBrowser/components/ElementList/ElementList.d.ts +29 -0
- package/dist/types-ts4.5/ui/ElementBrowser/components/ElementList/EmptyState.d.ts +6 -0
- package/dist/types-ts4.5/ui/ElementBrowser/components/ElementList/NotFoundIllustration.d.ts +2 -0
- package/dist/types-ts4.5/ui/ElementBrowser/components/ElementList/cellSizeAndPositionGetter.d.ts +7 -0
- package/dist/types-ts4.5/ui/ElementBrowser/components/ElementList/utils.d.ts +12 -0
- package/dist/types-ts4.5/ui/ElementBrowser/components/ElementSearch.d.ts +17 -0
- package/dist/types-ts4.5/ui/ElementBrowser/components/StatelessElementBrowser.d.ts +22 -0
- package/dist/types-ts4.5/ui/ElementBrowser/constants.d.ts +20 -0
- package/dist/types-ts4.5/ui/ElementBrowser/hooks/use-container-width.d.ts +33 -0
- package/dist/types-ts4.5/ui/ElementBrowser/hooks/use-focus.d.ts +35 -0
- package/dist/types-ts4.5/ui/ElementBrowser/hooks/use-select-and-focus-on-arrow-navigation.d.ts +68 -0
- package/dist/types-ts4.5/ui/ElementBrowser/index.d.ts +2 -0
- package/dist/types-ts4.5/ui/ElementBrowser/messages.d.ts +7 -0
- package/dist/types-ts4.5/ui/ElementBrowser/types.d.ts +31 -0
- package/dist/types-ts4.5/ui/ErrorBoundary/index.d.ts +25 -0
- package/dist/types-ts4.5/ui/FloatingToolbar/index.d.ts +26 -0
- package/dist/types-ts4.5/ui/FloatingToolbar/styles.d.ts +1 -0
- package/dist/types-ts4.5/ui/FloatingToolbar/utils.d.ts +13 -0
- package/dist/types-ts4.5/ui/LinkSearch/LinkSearchList.d.ts +20 -0
- package/dist/types-ts4.5/ui/LinkSearch/LinkSearchListItem.d.ts +22 -0
- package/dist/types-ts4.5/ui/LinkSearch/ToolbarComponents.d.ts +7 -0
- package/dist/types-ts4.5/ui/LinkSearch/index.d.ts +59 -0
- package/dist/types-ts4.5/ui/LinkSearch/listItemAlts.d.ts +2 -0
- package/dist/types-ts4.5/ui/LinkSearch/transformTimeStamp.d.ts +10 -0
- package/dist/types-ts4.5/ui/LinkSearch/types.d.ts +49 -0
- package/dist/types-ts4.5/ui/LinkSearch/withActivityProvider.d.ts +66 -0
- package/dist/types-ts4.5/ui/MediaAndEmbedsToolbar/index.d.ts +7 -0
- package/dist/types-ts4.5/ui/MediaAndEmbedsToolbar/toolbar-messages.d.ts +12 -0
- package/dist/types-ts4.5/ui/PanelTextInput/index.d.ts +46 -0
- package/dist/types-ts4.5/ui/PanelTextInput/styles.d.ts +2 -0
- package/dist/types-ts4.5/ui/PluginSlot/index.d.ts +37 -0
- package/dist/types-ts4.5/ui/PortalProvider/PortalProviderThemesProvider.d.ts +6 -0
- package/dist/types-ts4.5/ui/PortalProvider/index.d.ts +51 -0
- package/dist/types-ts4.5/ui/Resizer/index.d.ts +41 -0
- package/dist/types-ts4.5/ui/Resizer/styled.d.ts +2 -0
- package/dist/types-ts4.5/ui/Resizer/types.d.ts +26 -0
- package/dist/types-ts4.5/ui/Resizer/utils.d.ts +6 -0
- package/dist/types-ts4.5/ui/Toolbar/Toolbar.d.ts +3 -0
- package/dist/types-ts4.5/ui/Toolbar/ToolbarInner.d.ts +8 -0
- package/dist/types-ts4.5/ui/Toolbar/ToolbarWithSizeDetector.d.ts +4 -0
- package/dist/types-ts4.5/ui/Toolbar/hooks.d.ts +4 -0
- package/dist/types-ts4.5/ui/Toolbar/index.d.ts +4 -0
- package/dist/types-ts4.5/ui/Toolbar/toolbar-size.d.ts +4 -0
- package/dist/types-ts4.5/ui/Toolbar/toolbar-types.d.ts +34 -0
- package/dist/types-ts4.5/ui/Toolbar/types.d.ts +2 -0
- package/dist/types-ts4.5/ui/ToolbarArrowKeyNavigationProvider/index.d.ts +30 -0
- package/dist/types-ts4.5/ui/ToolbarButton/index.d.ts +4 -0
- package/dist/types-ts4.5/ui/ToolbarFeedback/index.d.ts +45 -0
- package/dist/types-ts4.5/ui/ToolbarFeedback/styles.d.ts +6 -0
- package/dist/types-ts4.5/ui/ToolbarHelp/index.d.ts +11 -0
- package/dist/types-ts4.5/ui/ToolbarHelp/messages.d.ts +7 -0
- package/dist/types-ts4.5/ui/WidthEmitter/index.d.ts +7 -0
- package/dist/types-ts4.5/ui/WithEditorActions/index.d.ts +18 -0
- package/dist/types-ts4.5/ui/WithFlash/index.d.ts +11 -0
- package/dist/types-ts4.5/ui/WithHelpTrigger/index.d.ts +11 -0
- package/dist/types-ts4.5/ui/WithPluginState/index.d.ts +3 -0
- package/dist/types-ts4.5/ui/styles.d.ts +12 -0
- package/dist/types-ts4.5/ui/with-outer-listeners.d.ts +2 -0
- package/dist/types-ts4.5/utils/action.d.ts +10 -0
- package/dist/types-ts4.5/utils/announcer/announcer.d.ts +22 -0
- package/dist/types-ts4.5/utils/array.d.ts +2 -0
- package/dist/types-ts4.5/utils/cell-selection.d.ts +3 -0
- package/dist/types-ts4.5/utils/clipboard.d.ts +4 -0
- package/dist/types-ts4.5/utils/commands.d.ts +75 -0
- package/dist/types-ts4.5/utils/count-nodes.d.ts +8 -0
- package/dist/types-ts4.5/utils/deprecation-warnings.d.ts +8 -0
- package/dist/types-ts4.5/utils/document-logger.d.ts +6 -0
- package/dist/types-ts4.5/utils/document.d.ts +57 -0
- package/dist/types-ts4.5/utils/dom.d.ts +2 -0
- package/dist/types-ts4.5/utils/drag-drop.d.ts +1 -0
- package/dist/types-ts4.5/utils/extensions.d.ts +6 -0
- package/dist/types-ts4.5/utils/filter/privacy-filter.d.ts +9 -0
- package/dist/types-ts4.5/utils/get-editor-plugins.d.ts +10 -0
- package/dist/types-ts4.5/utils/getAttrsWithChangesRecorder.d.ts +23 -0
- package/dist/types-ts4.5/utils/index.d.ts +85 -0
- package/dist/types-ts4.5/utils/input-rules.d.ts +29 -0
- package/dist/types-ts4.5/utils/insert.d.ts +24 -0
- package/dist/types-ts4.5/utils/is-full-page.d.ts +2 -0
- package/dist/types-ts4.5/utils/is-text-input.d.ts +2 -0
- package/dist/types-ts4.5/utils/keymap.d.ts +11 -0
- package/dist/types-ts4.5/utils/linking-utils.d.ts +14 -0
- package/dist/types-ts4.5/utils/list-commands.d.ts +7 -0
- package/dist/types-ts4.5/utils/lists.d.ts +2 -0
- package/dist/types-ts4.5/utils/mark.d.ts +15 -0
- package/dist/types-ts4.5/utils/node-width.d.ts +7 -0
- package/dist/types-ts4.5/utils/nodes-by-localIds.d.ts +8 -0
- package/dist/types-ts4.5/utils/nodes.d.ts +1 -0
- package/dist/types-ts4.5/utils/performance/components/RenderTracking.d.ts +13 -0
- package/dist/types-ts4.5/utils/performance/get-performance-timing.d.ts +8 -0
- package/dist/types-ts4.5/utils/performance/instrumented-plugin.d.ts +17 -0
- package/dist/types-ts4.5/utils/performance/measure-enum.d.ts +8 -0
- package/dist/types-ts4.5/utils/performance/outlier.d.ts +1 -0
- package/dist/types-ts4.5/utils/performance/percentile.d.ts +1 -0
- package/dist/types-ts4.5/utils/performance/plugin-performance-observer.d.ts +22 -0
- package/dist/types-ts4.5/utils/performance/plugin-performance-report.d.ts +48 -0
- package/dist/types-ts4.5/utils/performance/safer-transactions.d.ts +9 -0
- package/dist/types-ts4.5/utils/performance/simple-measure-to-entries.d.ts +28 -0
- package/dist/types-ts4.5/utils/performance/track-transactions.d.ts +30 -0
- package/dist/types-ts4.5/utils/pick-by.d.ts +2 -0
- package/dist/types-ts4.5/utils/plugin-state-factory.d.ts +2 -0
- package/dist/types-ts4.5/utils/prepare-extension-provider.d.ts +5 -0
- package/dist/types-ts4.5/utils/prepare-quick-insert-provider.d.ts +16 -0
- package/dist/types-ts4.5/utils/prosemirror/autojoin.d.ts +13 -0
- package/dist/types-ts4.5/utils/prosemirror/position.d.ts +8 -0
- package/dist/types-ts4.5/utils/react-hooks/use-abortable-effect/index.d.ts +16 -0
- package/dist/types-ts4.5/utils/react-hooks/use-state-from-promise/index.d.ts +18 -0
- package/dist/types-ts4.5/utils/rich-media-utils.d.ts +8 -0
- package/dist/types-ts4.5/utils/selection.d.ts +11 -0
- package/dist/types-ts4.5/utils/sendLogs.d.ts +1 -0
- package/dist/types-ts4.5/utils/slice.d.ts +2 -0
- package/dist/types-ts4.5/utils/step.d.ts +1 -0
- package/dist/types-ts4.5/utils/table.d.ts +2 -0
- package/dist/types-ts4.5/version-wrapper.d.ts +3 -0
- package/package.json +5 -5
- /package/dist/cjs/plugins/paste/{newline-md-plugin.js → md-plugins/newline-md-plugin.js} +0 -0
- /package/dist/cjs/plugins/paste/{paragraph-md-plugin.js → md-plugins/paragraph-md-plugin.js} +0 -0
- /package/dist/es2019/plugins/paste/{newline-md-plugin.js → md-plugins/newline-md-plugin.js} +0 -0
- /package/dist/es2019/plugins/paste/{paragraph-md-plugin.js → md-plugins/paragraph-md-plugin.js} +0 -0
- /package/dist/esm/plugins/paste/{newline-md-plugin.js → md-plugins/newline-md-plugin.js} +0 -0
- /package/dist/esm/plugins/paste/{paragraph-md-plugin.js → md-plugins/paragraph-md-plugin.js} +0 -0
- /package/dist/{types/plugins/paste → types-ts4.5/plugins/paste/md-plugins}/linkify-md-plugin.d.ts +0 -0
- /package/dist/{types/plugins/paste → types-ts4.5/plugins/paste/md-plugins}/newline-md-plugin.d.ts +0 -0
- /package/dist/{types/plugins/paste → types-ts4.5/plugins/paste/md-plugins}/paragraph-md-plugin.d.ts +0 -0
|
@@ -0,0 +1,378 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const fullPageEditorWrapper: import("@emotion/react").SerializedStyles;
|
|
3
|
+
export declare const ScrollContainer: import("react").ForwardRefExoticComponent<Pick<{
|
|
4
|
+
headers?: string | undefined;
|
|
5
|
+
method?: string | undefined;
|
|
6
|
+
default?: boolean | undefined;
|
|
7
|
+
ref?: import("react").LegacyRef<HTMLDivElement> | undefined;
|
|
8
|
+
cite?: string | undefined;
|
|
9
|
+
data?: string | undefined;
|
|
10
|
+
form?: string | undefined;
|
|
11
|
+
label?: string | undefined;
|
|
12
|
+
span?: number | undefined;
|
|
13
|
+
style?: import("react").CSSProperties | undefined;
|
|
14
|
+
summary?: string | undefined;
|
|
15
|
+
title?: string | undefined;
|
|
16
|
+
pattern?: string | undefined;
|
|
17
|
+
children?: import("react").ReactNode;
|
|
18
|
+
name?: string | undefined;
|
|
19
|
+
color?: string | undefined;
|
|
20
|
+
content?: string | undefined;
|
|
21
|
+
height?: string | number | undefined;
|
|
22
|
+
width?: string | number | undefined;
|
|
23
|
+
disabled?: boolean | undefined;
|
|
24
|
+
className?: string | undefined;
|
|
25
|
+
key?: import("react").Key | undefined;
|
|
26
|
+
defaultChecked?: boolean | undefined;
|
|
27
|
+
defaultValue?: string | string[] | undefined;
|
|
28
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
29
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
30
|
+
accessKey?: string | undefined;
|
|
31
|
+
contentEditable?: boolean | undefined;
|
|
32
|
+
contextMenu?: string | undefined;
|
|
33
|
+
dir?: string | undefined;
|
|
34
|
+
draggable?: boolean | undefined;
|
|
35
|
+
hidden?: boolean | undefined;
|
|
36
|
+
id?: string | undefined;
|
|
37
|
+
lang?: string | undefined;
|
|
38
|
+
placeholder?: string | undefined;
|
|
39
|
+
slot?: string | undefined;
|
|
40
|
+
spellCheck?: boolean | undefined;
|
|
41
|
+
tabIndex?: number | undefined;
|
|
42
|
+
inputMode?: string | undefined;
|
|
43
|
+
is?: string | undefined;
|
|
44
|
+
radioGroup?: string | undefined;
|
|
45
|
+
role?: string | undefined;
|
|
46
|
+
about?: string | undefined;
|
|
47
|
+
datatype?: string | undefined;
|
|
48
|
+
inlist?: any;
|
|
49
|
+
prefix?: string | undefined;
|
|
50
|
+
property?: string | undefined;
|
|
51
|
+
resource?: string | undefined;
|
|
52
|
+
typeof?: string | undefined;
|
|
53
|
+
vocab?: string | undefined;
|
|
54
|
+
autoCapitalize?: string | undefined;
|
|
55
|
+
autoCorrect?: string | undefined;
|
|
56
|
+
autoSave?: string | undefined;
|
|
57
|
+
itemProp?: string | undefined;
|
|
58
|
+
itemScope?: boolean | undefined;
|
|
59
|
+
itemType?: string | undefined;
|
|
60
|
+
itemID?: string | undefined;
|
|
61
|
+
itemRef?: string | undefined;
|
|
62
|
+
results?: number | undefined;
|
|
63
|
+
security?: string | undefined;
|
|
64
|
+
unselectable?: "on" | "off" | undefined;
|
|
65
|
+
'aria-activedescendant'?: string | undefined;
|
|
66
|
+
'aria-atomic'?: boolean | "false" | "true" | undefined;
|
|
67
|
+
'aria-autocomplete'?: "none" | "both" | "inline" | "list" | undefined;
|
|
68
|
+
'aria-busy'?: boolean | "false" | "true" | undefined;
|
|
69
|
+
'aria-checked'?: boolean | "false" | "true" | "mixed" | undefined;
|
|
70
|
+
'aria-colcount'?: number | undefined;
|
|
71
|
+
'aria-colindex'?: number | undefined;
|
|
72
|
+
'aria-colspan'?: number | undefined;
|
|
73
|
+
'aria-controls'?: string | undefined;
|
|
74
|
+
'aria-current'?: boolean | "time" | "false" | "true" | "page" | "step" | "date" | "location" | undefined;
|
|
75
|
+
'aria-describedby'?: string | undefined;
|
|
76
|
+
'aria-details'?: string | undefined;
|
|
77
|
+
'aria-disabled'?: boolean | "false" | "true" | undefined;
|
|
78
|
+
'aria-dropeffect'?: "copy" | "link" | "move" | "none" | "popup" | "execute" | undefined;
|
|
79
|
+
'aria-errormessage'?: string | undefined;
|
|
80
|
+
'aria-expanded'?: boolean | "false" | "true" | undefined;
|
|
81
|
+
'aria-flowto'?: string | undefined;
|
|
82
|
+
'aria-grabbed'?: boolean | "false" | "true" | undefined;
|
|
83
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "false" | "true" | "grid" | "listbox" | "tree" | undefined;
|
|
84
|
+
'aria-hidden'?: boolean | "false" | "true" | undefined;
|
|
85
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
86
|
+
'aria-keyshortcuts'?: string | undefined;
|
|
87
|
+
'aria-label'?: string | undefined;
|
|
88
|
+
'aria-labelledby'?: string | undefined;
|
|
89
|
+
'aria-level'?: number | undefined;
|
|
90
|
+
'aria-live'?: "off" | "polite" | "assertive" | undefined;
|
|
91
|
+
'aria-modal'?: boolean | "false" | "true" | undefined;
|
|
92
|
+
'aria-multiline'?: boolean | "false" | "true" | undefined;
|
|
93
|
+
'aria-multiselectable'?: boolean | "false" | "true" | undefined;
|
|
94
|
+
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
|
95
|
+
'aria-owns'?: string | undefined;
|
|
96
|
+
'aria-placeholder'?: string | undefined;
|
|
97
|
+
'aria-posinset'?: number | undefined;
|
|
98
|
+
'aria-pressed'?: boolean | "false" | "true" | "mixed" | undefined;
|
|
99
|
+
'aria-readonly'?: boolean | "false" | "true" | undefined;
|
|
100
|
+
'aria-relevant'?: "text" | "all" | "additions" | "additions text" | "removals" | undefined;
|
|
101
|
+
'aria-required'?: boolean | "false" | "true" | undefined;
|
|
102
|
+
'aria-roledescription'?: string | undefined;
|
|
103
|
+
'aria-rowcount'?: number | undefined;
|
|
104
|
+
'aria-rowindex'?: number | undefined;
|
|
105
|
+
'aria-rowspan'?: number | undefined;
|
|
106
|
+
'aria-selected'?: boolean | "false" | "true" | undefined;
|
|
107
|
+
'aria-setsize'?: number | undefined;
|
|
108
|
+
'aria-sort'?: "none" | "other" | "ascending" | "descending" | undefined;
|
|
109
|
+
'aria-valuemax'?: number | undefined;
|
|
110
|
+
'aria-valuemin'?: number | undefined;
|
|
111
|
+
'aria-valuenow'?: number | undefined;
|
|
112
|
+
'aria-valuetext'?: string | undefined;
|
|
113
|
+
dangerouslySetInnerHTML?: {
|
|
114
|
+
__html: string;
|
|
115
|
+
} | undefined;
|
|
116
|
+
onCopy?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
117
|
+
onCopyCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
118
|
+
onCut?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
119
|
+
onCutCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
120
|
+
onPaste?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
121
|
+
onPasteCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
122
|
+
onCompositionEnd?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
123
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
124
|
+
onCompositionStart?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
125
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
126
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
127
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
128
|
+
onFocus?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
129
|
+
onFocusCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
130
|
+
onBlur?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
131
|
+
onBlurCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
132
|
+
onChange?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
133
|
+
onChangeCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
134
|
+
onBeforeInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
135
|
+
onBeforeInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
136
|
+
onInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
137
|
+
onInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
138
|
+
onReset?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
139
|
+
onResetCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
140
|
+
onSubmit?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
141
|
+
onSubmitCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
142
|
+
onInvalid?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
143
|
+
onInvalidCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
144
|
+
onLoad?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
145
|
+
onLoadCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
146
|
+
onError?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
147
|
+
onErrorCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
148
|
+
onKeyDown?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
149
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
150
|
+
onKeyPress?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
151
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
152
|
+
onKeyUp?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
153
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
154
|
+
onAbort?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
155
|
+
onAbortCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
156
|
+
onCanPlay?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
157
|
+
onCanPlayCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
158
|
+
onCanPlayThrough?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
159
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
160
|
+
onDurationChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
161
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
162
|
+
onEmptied?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
163
|
+
onEmptiedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
164
|
+
onEncrypted?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
165
|
+
onEncryptedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
166
|
+
onEnded?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
167
|
+
onEndedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
168
|
+
onLoadedData?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
169
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
170
|
+
onLoadedMetadata?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
171
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
172
|
+
onLoadStart?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
173
|
+
onLoadStartCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
174
|
+
onPause?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
175
|
+
onPauseCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
176
|
+
onPlay?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
177
|
+
onPlayCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
178
|
+
onPlaying?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
179
|
+
onPlayingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
180
|
+
onProgress?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
181
|
+
onProgressCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
182
|
+
onRateChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
183
|
+
onRateChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
184
|
+
onSeeked?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
185
|
+
onSeekedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
186
|
+
onSeeking?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
187
|
+
onSeekingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
188
|
+
onStalled?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
189
|
+
onStalledCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
190
|
+
onSuspend?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
191
|
+
onSuspendCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
192
|
+
onTimeUpdate?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
193
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
194
|
+
onVolumeChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
195
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
196
|
+
onWaiting?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
197
|
+
onWaitingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
198
|
+
onAuxClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
199
|
+
onAuxClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
200
|
+
onClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
201
|
+
onClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
202
|
+
onContextMenu?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
203
|
+
onContextMenuCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
204
|
+
onDoubleClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
205
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
206
|
+
onDrag?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
207
|
+
onDragCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
208
|
+
onDragEnd?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
209
|
+
onDragEndCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
210
|
+
onDragEnter?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
211
|
+
onDragEnterCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
212
|
+
onDragExit?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
213
|
+
onDragExitCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
214
|
+
onDragLeave?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
215
|
+
onDragLeaveCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
216
|
+
onDragOver?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
217
|
+
onDragOverCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
218
|
+
onDragStart?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
219
|
+
onDragStartCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
220
|
+
onDrop?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
221
|
+
onDropCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
222
|
+
onMouseDown?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
223
|
+
onMouseDownCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
224
|
+
onMouseEnter?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
225
|
+
onMouseLeave?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
226
|
+
onMouseMove?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
227
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
228
|
+
onMouseOut?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
229
|
+
onMouseOutCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
230
|
+
onMouseOver?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
231
|
+
onMouseOverCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
232
|
+
onMouseUp?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
233
|
+
onMouseUpCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
234
|
+
onSelect?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
235
|
+
onSelectCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
236
|
+
onTouchCancel?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
237
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
238
|
+
onTouchEnd?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
239
|
+
onTouchEndCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
240
|
+
onTouchMove?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
241
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
242
|
+
onTouchStart?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
243
|
+
onTouchStartCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
244
|
+
onPointerDown?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
245
|
+
onPointerDownCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
246
|
+
onPointerMove?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
247
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
248
|
+
onPointerUp?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
249
|
+
onPointerUpCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
250
|
+
onPointerCancel?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
251
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
252
|
+
onPointerEnter?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
253
|
+
onPointerEnterCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
254
|
+
onPointerLeave?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
255
|
+
onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
256
|
+
onPointerOver?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
257
|
+
onPointerOverCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
258
|
+
onPointerOut?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
259
|
+
onPointerOutCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
260
|
+
onGotPointerCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
261
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
262
|
+
onLostPointerCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
263
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
264
|
+
onScroll?: import("react").UIEventHandler<HTMLDivElement> | undefined;
|
|
265
|
+
onScrollCapture?: import("react").UIEventHandler<HTMLDivElement> | undefined;
|
|
266
|
+
onWheel?: import("react").WheelEventHandler<HTMLDivElement> | undefined;
|
|
267
|
+
onWheelCapture?: import("react").WheelEventHandler<HTMLDivElement> | undefined;
|
|
268
|
+
onAnimationStart?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
269
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
270
|
+
onAnimationEnd?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
271
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
272
|
+
onAnimationIteration?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
273
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
274
|
+
onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
275
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
276
|
+
css?: import("@emotion/core").InterpolationWithTheme<any>;
|
|
277
|
+
start?: number | undefined;
|
|
278
|
+
size?: number | undefined;
|
|
279
|
+
wrap?: string | undefined;
|
|
280
|
+
open?: boolean | undefined;
|
|
281
|
+
multiple?: boolean | undefined;
|
|
282
|
+
type?: string | undefined;
|
|
283
|
+
media?: string | undefined;
|
|
284
|
+
mediaGroup?: string | undefined;
|
|
285
|
+
step?: string | number | undefined;
|
|
286
|
+
action?: string | undefined;
|
|
287
|
+
max?: string | number | undefined;
|
|
288
|
+
min?: string | number | undefined;
|
|
289
|
+
target?: string | undefined;
|
|
290
|
+
href?: string | undefined;
|
|
291
|
+
accept?: string | undefined;
|
|
292
|
+
acceptCharset?: string | undefined;
|
|
293
|
+
allowFullScreen?: boolean | undefined;
|
|
294
|
+
allowTransparency?: boolean | undefined;
|
|
295
|
+
alt?: string | undefined;
|
|
296
|
+
as?: string | undefined;
|
|
297
|
+
async?: boolean | undefined;
|
|
298
|
+
autoComplete?: string | undefined;
|
|
299
|
+
autoFocus?: boolean | undefined;
|
|
300
|
+
autoPlay?: boolean | undefined;
|
|
301
|
+
capture?: string | boolean | undefined;
|
|
302
|
+
cellPadding?: string | number | undefined;
|
|
303
|
+
cellSpacing?: string | number | undefined;
|
|
304
|
+
charSet?: string | undefined;
|
|
305
|
+
challenge?: string | undefined;
|
|
306
|
+
checked?: boolean | undefined;
|
|
307
|
+
classID?: string | undefined;
|
|
308
|
+
cols?: number | undefined;
|
|
309
|
+
colSpan?: number | undefined;
|
|
310
|
+
controls?: boolean | undefined;
|
|
311
|
+
coords?: string | undefined;
|
|
312
|
+
crossOrigin?: string | undefined;
|
|
313
|
+
dateTime?: string | undefined;
|
|
314
|
+
defer?: boolean | undefined;
|
|
315
|
+
download?: any;
|
|
316
|
+
encType?: string | undefined;
|
|
317
|
+
formAction?: string | undefined;
|
|
318
|
+
formEncType?: string | undefined;
|
|
319
|
+
formMethod?: string | undefined;
|
|
320
|
+
formNoValidate?: boolean | undefined;
|
|
321
|
+
formTarget?: string | undefined;
|
|
322
|
+
frameBorder?: string | number | undefined;
|
|
323
|
+
high?: number | undefined;
|
|
324
|
+
hrefLang?: string | undefined;
|
|
325
|
+
htmlFor?: string | undefined;
|
|
326
|
+
httpEquiv?: string | undefined;
|
|
327
|
+
integrity?: string | undefined;
|
|
328
|
+
keyParams?: string | undefined;
|
|
329
|
+
keyType?: string | undefined;
|
|
330
|
+
kind?: string | undefined;
|
|
331
|
+
list?: string | undefined;
|
|
332
|
+
loop?: boolean | undefined;
|
|
333
|
+
low?: number | undefined;
|
|
334
|
+
manifest?: string | undefined;
|
|
335
|
+
marginHeight?: number | undefined;
|
|
336
|
+
marginWidth?: number | undefined;
|
|
337
|
+
maxLength?: number | undefined;
|
|
338
|
+
minLength?: number | undefined;
|
|
339
|
+
muted?: boolean | undefined;
|
|
340
|
+
nonce?: string | undefined;
|
|
341
|
+
noValidate?: boolean | undefined;
|
|
342
|
+
optimum?: number | undefined;
|
|
343
|
+
playsInline?: boolean | undefined;
|
|
344
|
+
poster?: string | undefined;
|
|
345
|
+
preload?: string | undefined;
|
|
346
|
+
readOnly?: boolean | undefined;
|
|
347
|
+
rel?: string | undefined;
|
|
348
|
+
required?: boolean | undefined;
|
|
349
|
+
reversed?: boolean | undefined;
|
|
350
|
+
rows?: number | undefined;
|
|
351
|
+
rowSpan?: number | undefined;
|
|
352
|
+
sandbox?: string | undefined;
|
|
353
|
+
scope?: string | undefined;
|
|
354
|
+
scoped?: boolean | undefined;
|
|
355
|
+
scrolling?: string | undefined;
|
|
356
|
+
seamless?: boolean | undefined;
|
|
357
|
+
selected?: boolean | undefined;
|
|
358
|
+
shape?: string | undefined;
|
|
359
|
+
sizes?: string | undefined;
|
|
360
|
+
src?: string | undefined;
|
|
361
|
+
srcDoc?: string | undefined;
|
|
362
|
+
srcLang?: string | undefined;
|
|
363
|
+
srcSet?: string | undefined;
|
|
364
|
+
useMap?: string | undefined;
|
|
365
|
+
value?: string | number | string[] | undefined;
|
|
366
|
+
wmode?: string | undefined;
|
|
367
|
+
theme?: any;
|
|
368
|
+
}, "headers" | "method" | "default" | "cite" | "data" | "form" | "label" | "span" | "style" | "summary" | "title" | "pattern" | "children" | "name" | "color" | "content" | "height" | "width" | "disabled" | "className" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css" | "start" | "size" | "wrap" | "open" | "multiple" | "type" | "media" | "mediaGroup" | "step" | "action" | "max" | "min" | "target" | "href" | "accept" | "acceptCharset" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "high" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "maxLength" | "minLength" | "muted" | "nonce" | "noValidate" | "optimum" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "useMap" | "value" | "wmode" | "theme"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
369
|
+
export declare const positionedOverEditorStyle: import("@emotion/react").SerializedStyles;
|
|
370
|
+
export declare const contentArea: import("@emotion/react").SerializedStyles;
|
|
371
|
+
export declare const sidebarArea: import("@emotion/react").SerializedStyles;
|
|
372
|
+
export declare const editorContentAreaHideContainer: import("@emotion/react").SerializedStyles;
|
|
373
|
+
export declare const editorContentAreaStyle: ({ layoutMaxWidth, fullWidthMode, containerWidth, }: {
|
|
374
|
+
layoutMaxWidth: number;
|
|
375
|
+
fullWidthMode: boolean;
|
|
376
|
+
containerWidth?: number | undefined;
|
|
377
|
+
}) => (false | import("@emotion/react").SerializedStyles)[];
|
|
378
|
+
export declare const editorContentGutterStyle: import("@emotion/react").SerializedStyles;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FullPageEditor as default } from './FullPage';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
toolbarLabel: {
|
|
3
|
+
id: string;
|
|
4
|
+
defaultMessage: string;
|
|
5
|
+
description: string;
|
|
6
|
+
};
|
|
7
|
+
pageActionsLabel: {
|
|
8
|
+
id: string;
|
|
9
|
+
defaultMessage: string;
|
|
10
|
+
description: string;
|
|
11
|
+
};
|
|
12
|
+
editableContentLabel: {
|
|
13
|
+
id: string;
|
|
14
|
+
defaultMessage: string;
|
|
15
|
+
description: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/** @jsx jsx */
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { jsx } from '@emotion/react';
|
|
4
|
+
import { EditorView } from 'prosemirror-view';
|
|
5
|
+
type MobileAppearanceProps = React.PropsWithChildren<{
|
|
6
|
+
editorView: EditorView | null;
|
|
7
|
+
maxHeight?: number;
|
|
8
|
+
persistScrollGutter?: boolean;
|
|
9
|
+
editorDisabled?: boolean;
|
|
10
|
+
}>;
|
|
11
|
+
export declare function MobileAppearance({ editorView, persistScrollGutter, children, editorDisabled, }: MobileAppearanceProps): jsx.JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/** @jsx jsx */
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { WrappedComponentProps } from 'react-intl-next';
|
|
4
|
+
export interface Props {
|
|
5
|
+
text?: string;
|
|
6
|
+
onFocus?: (e: React.FocusEvent<HTMLInputElement>) => void;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: React.FC<import("react-intl-next").WithIntlProps<Props & WrappedComponentProps<"intl">>> & {
|
|
9
|
+
WrappedComponent: React.ComponentType<Props & WrappedComponentProps<"intl">>;
|
|
10
|
+
};
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const inputStyle: import("@emotion/react").SerializedStyles;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Editor from '../../editor';
|
|
3
|
+
import EditorNext from '../../editor-next';
|
|
4
|
+
import EditorMigrationComponent from '../../editor-next/editor-migration-component';
|
|
5
|
+
export interface Props {
|
|
6
|
+
placeholder?: string;
|
|
7
|
+
children?: any;
|
|
8
|
+
isExpanded?: boolean;
|
|
9
|
+
onFocus?: (e: React.FocusEvent<HTMLInputElement>) => void;
|
|
10
|
+
onExpand?: () => void;
|
|
11
|
+
}
|
|
12
|
+
export interface State {
|
|
13
|
+
}
|
|
14
|
+
export default class CollapsedEditor extends React.Component<Props, State> {
|
|
15
|
+
editorComponent?: Editor | EditorNext | EditorMigrationComponent;
|
|
16
|
+
previouslyExpanded?: boolean;
|
|
17
|
+
componentDidUpdate(): void;
|
|
18
|
+
handleEditorRef: (editorRef?: Editor, editorRefCallback?: any) => void;
|
|
19
|
+
render(): JSX.Element;
|
|
20
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { DEFAULT_BORDER_COLOR } from '@atlaskit/editor-common/ui-color';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { panelBackgroundPalette, panelDarkModeBackgroundPalette, } from '@atlaskit/editor-common/ui-color';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { lightModeStatusColorPalette, darkModeStatusColorPalette, } from '@atlaskit/editor-common/ui-color';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { textColorPalette } from '@atlaskit/editor-common/ui-color';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { PaletteColor, PaletteTooltipMessages, } from '@atlaskit/editor-common/ui-color';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ColorPalette, backgroundPaletteTooltipMessages, chartsColorPaletteTooltipMessages, textPaletteTooltipMessages } from '@atlaskit/editor-common/ui-color';
|
|
2
|
+
export { ColorPalette, backgroundPaletteTooltipMessages, chartsColorPaletteTooltipMessages, textPaletteTooltipMessages, };
|
|
3
|
+
export default ColorPalette;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/** @jsx jsx */
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { PaletteColor, PaletteTooltipMessages } from '../ColorPalette/Palettes';
|
|
4
|
+
import { WithAnalyticsEventsProps } from '@atlaskit/analytics-next';
|
|
5
|
+
type Props = WithAnalyticsEventsProps & {
|
|
6
|
+
currentColor?: string;
|
|
7
|
+
title?: string;
|
|
8
|
+
onChange?: (color: PaletteColor) => void;
|
|
9
|
+
colorPalette: PaletteColor[];
|
|
10
|
+
placement: string;
|
|
11
|
+
cols?: number;
|
|
12
|
+
alignX?: 'left' | 'right' | 'center' | 'end';
|
|
13
|
+
size?: {
|
|
14
|
+
width: number;
|
|
15
|
+
height: number;
|
|
16
|
+
};
|
|
17
|
+
mountPoint?: HTMLElement;
|
|
18
|
+
setDisableParentScroll?: (disable: boolean) => void;
|
|
19
|
+
hexToPaletteColor?: (hexColor: string) => string | undefined;
|
|
20
|
+
showSomewhatSemanticTooltips?: boolean;
|
|
21
|
+
paletteColorTooltipMessages?: PaletteTooltipMessages;
|
|
22
|
+
};
|
|
23
|
+
declare const _default: React.ForwardRefExoticComponent<Pick<Omit<Props, keyof WithAnalyticsEventsProps> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "title" | "key" | "onChange" | "size" | "currentColor" | "cols" | "analyticsContext" | "alignX" | "colorPalette" | "placement" | "mountPoint" | "setDisableParentScroll" | "hexToPaletteColor" | "showSomewhatSemanticTooltips" | "paletteColorTooltipMessages"> & React.RefAttributes<any>>;
|
|
24
|
+
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { WithAnalyticsEventsProps } from '@atlaskit/analytics-next';
|
|
3
|
+
import type { ExtensionManifest } from '@atlaskit/editor-common/extensions';
|
|
4
|
+
import { FieldDefinition, Parameters, OnSaveCallback } from '@atlaskit/editor-common/extensions';
|
|
5
|
+
import { FeatureFlags } from '@atlaskit/editor-common/types';
|
|
6
|
+
type Props = {
|
|
7
|
+
extensionManifest?: ExtensionManifest;
|
|
8
|
+
fields?: FieldDefinition[];
|
|
9
|
+
parameters?: Parameters;
|
|
10
|
+
autoSave?: boolean;
|
|
11
|
+
autoSaveTrigger?: () => void;
|
|
12
|
+
autoSaveReject?: (reason?: any) => void;
|
|
13
|
+
showHeader?: boolean;
|
|
14
|
+
closeOnEsc?: boolean;
|
|
15
|
+
onChange: OnSaveCallback;
|
|
16
|
+
onCancel: () => void;
|
|
17
|
+
errorMessage: string | null;
|
|
18
|
+
isLoading?: boolean;
|
|
19
|
+
featureFlags?: FeatureFlags;
|
|
20
|
+
} & WithAnalyticsEventsProps;
|
|
21
|
+
declare const _default: React.ForwardRefExoticComponent<Pick<Omit<Props, keyof WithAnalyticsEventsProps> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "key" | "autoSave" | "onChange" | "autoSaveReject" | "featureFlags" | "analyticsContext" | "isLoading" | "parameters" | "fields" | "onCancel" | "errorMessage" | "extensionManifest" | "autoSaveTrigger" | "showHeader" | "closeOnEsc"> & React.RefAttributes<any>>;
|
|
22
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ExtensionProvider, ExtensionType, ExtensionKey, Parameters } from '@atlaskit/editor-common/extensions';
|
|
3
|
+
import { FeatureFlags } from '@atlaskit/editor-common/types';
|
|
4
|
+
export type PublicProps = {
|
|
5
|
+
extensionProvider: ExtensionProvider;
|
|
6
|
+
extensionType: ExtensionType;
|
|
7
|
+
extensionKey: ExtensionKey;
|
|
8
|
+
nodeKey: string;
|
|
9
|
+
extensionParameters?: Parameters;
|
|
10
|
+
parameters?: Parameters;
|
|
11
|
+
autoSave?: boolean;
|
|
12
|
+
autoSaveTrigger?: () => void;
|
|
13
|
+
autoSaveReject?: (reason?: any) => void;
|
|
14
|
+
closeOnEsc?: boolean;
|
|
15
|
+
showHeader?: boolean;
|
|
16
|
+
featureFlags?: FeatureFlags;
|
|
17
|
+
onChange: (data: Parameters) => void;
|
|
18
|
+
onCancel: () => void;
|
|
19
|
+
};
|
|
20
|
+
export default function FieldsLoader({ extensionType, extensionKey, nodeKey, extensionProvider, extensionParameters, parameters, autoSave, autoSaveTrigger, autoSaveReject, closeOnEsc, showHeader, featureFlags, onChange, onCancel, }: PublicProps): JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { WrappedComponentProps } from 'react-intl-next';
|
|
3
|
+
declare const _default: React.FC<import("react-intl-next").WithIntlProps<{
|
|
4
|
+
errorMessage: string;
|
|
5
|
+
} & WrappedComponentProps<"intl">>> & {
|
|
6
|
+
WrappedComponent: React.ComponentType<{
|
|
7
|
+
errorMessage: string;
|
|
8
|
+
} & WrappedComponentProps<"intl">>;
|
|
9
|
+
};
|
|
10
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { WrappedComponentProps } from 'react-intl-next';
|
|
3
|
+
declare const _default: React.FC<import("react-intl-next").WithIntlProps<{
|
|
4
|
+
error?: string | undefined;
|
|
5
|
+
description?: string | undefined;
|
|
6
|
+
} & WrappedComponentProps<"intl">>> & {
|
|
7
|
+
WrappedComponent: React.ComponentType<{
|
|
8
|
+
error?: string | undefined;
|
|
9
|
+
description?: string | undefined;
|
|
10
|
+
} & WrappedComponentProps<"intl">>;
|
|
11
|
+
};
|
|
12
|
+
export default _default;
|