2022-01-24 09:35:58 +00:00
|
|
|
//
|
|
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
2023-11-07 16:23:07 +00:00
|
|
|
// Copyright © 2021, 2023 Hardcore Engineering Inc.
|
2022-01-24 09:35:58 +00:00
|
|
|
//
|
|
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License. You may
|
|
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
//
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
|
2022-01-21 09:05:55 +00:00
|
|
|
import { textEditorId } from './plugin'
|
2021-08-07 14:49:14 +00:00
|
|
|
|
2022-09-21 08:08:25 +00:00
|
|
|
export * from '@hcengineering/presentation/src/types'
|
2023-10-07 20:14:00 +00:00
|
|
|
export { default as Collaboration } from './components/Collaboration.svelte'
|
|
|
|
export { default as CollaborationDiffViewer } from './components/CollaborationDiffViewer.svelte'
|
2023-12-25 09:49:08 +00:00
|
|
|
export { default as CollaborativeAttributeBox } from './components/CollaborativeAttributeBox.svelte'
|
|
|
|
export { default as CollaborativeAttributeSectionBox } from './components/CollaborativeAttributeSectionBox.svelte'
|
|
|
|
export { default as CollaborativeTextEditor } from './components/CollaborativeTextEditor.svelte'
|
2023-10-07 20:14:00 +00:00
|
|
|
export { default as CollaboratorEditor } from './components/CollaboratorEditor.svelte'
|
|
|
|
export { default as FullDescriptionBox } from './components/FullDescriptionBox.svelte'
|
2023-11-28 05:35:15 +00:00
|
|
|
export { default as MarkupDiffViewer } from './components/MarkupDiffViewer.svelte'
|
2021-08-07 14:49:14 +00:00
|
|
|
export { default as ReferenceInput } from './components/ReferenceInput.svelte'
|
2023-11-28 09:33:16 +00:00
|
|
|
export { default as StringDiffViewer } from './components/StringDiffViewer.svelte'
|
2023-10-07 20:14:00 +00:00
|
|
|
export { default as StyleButton } from './components/StyleButton.svelte'
|
2022-05-18 04:04:54 +00:00
|
|
|
export { default as StyledTextArea } from './components/StyledTextArea.svelte'
|
2023-10-07 20:14:00 +00:00
|
|
|
export { default as StyledTextBox } from './components/StyledTextBox.svelte'
|
2022-04-01 05:57:22 +00:00
|
|
|
export { default as StyledTextEditor } from './components/StyledTextEditor.svelte'
|
|
|
|
export { default as TextEditor } from './components/TextEditor.svelte'
|
2023-10-09 17:26:09 +00:00
|
|
|
export { default as TextEditorStyleToolbar } from './components/TextEditorStyleToolbar.svelte'
|
2023-10-16 03:22:15 +00:00
|
|
|
export { default as AttachIcon } from './components/icons/Attach.svelte'
|
2023-10-24 15:39:56 +00:00
|
|
|
export { default as TableOfContents } from './components/toc/TableOfContents.svelte'
|
2023-11-07 16:23:07 +00:00
|
|
|
export * from './components/node-view'
|
2022-04-01 05:57:22 +00:00
|
|
|
export { default } from './plugin'
|
|
|
|
export * from './types'
|
2023-10-20 07:35:02 +00:00
|
|
|
export * from './utils'
|
2022-01-21 09:05:55 +00:00
|
|
|
|
2023-11-09 14:53:19 +00:00
|
|
|
export { FocusExtension, type FocusOptions, type FocusStorage } from './components/extension/focus'
|
2023-10-24 15:39:56 +00:00
|
|
|
export { HeadingsExtension, type HeadingsOptions, type HeadingsStorage } from './components/extension/headings'
|
2023-10-02 15:18:11 +00:00
|
|
|
export {
|
|
|
|
IsEmptyContentExtension,
|
2023-10-11 15:26:36 +00:00
|
|
|
type IsEmptyContentOptions,
|
|
|
|
type IsEmptyContentStorage
|
2023-10-02 15:18:11 +00:00
|
|
|
} from './components/extension/isEmptyContent'
|
2023-09-29 07:41:52 +00:00
|
|
|
export {
|
|
|
|
NodeHighlightExtension,
|
2023-10-11 15:26:36 +00:00
|
|
|
NodeHighlightType,
|
2023-11-17 13:00:13 +00:00
|
|
|
type NodeHighlightExtensionOptions,
|
|
|
|
highlightUpdateCommand
|
2023-09-29 07:41:52 +00:00
|
|
|
} from './components/extension/nodeHighlight'
|
2023-10-11 15:26:36 +00:00
|
|
|
export {
|
|
|
|
NodeUuidExtension,
|
|
|
|
type NodeUuidCommands,
|
|
|
|
type NodeUuidOptions,
|
|
|
|
type NodeUuidStorage
|
|
|
|
} from './components/extension/nodeUuid'
|
2023-10-09 17:26:09 +00:00
|
|
|
export { InlinePopupExtension } from './components/extension/inlinePopup'
|
2024-02-28 08:16:48 +00:00
|
|
|
export { InlineStyleToolbarExtension, type InlineStyleToolbarOptions } from './components/extension/inlineStyleToolbar'
|
2023-10-22 14:55:39 +00:00
|
|
|
export { ImageExtension, type ImageOptions } from './components/extension/imageExt'
|
2023-11-07 16:23:07 +00:00
|
|
|
export { TodoItemExtension, TodoListExtension } from './components/extension/todo'
|
2023-09-29 07:41:52 +00:00
|
|
|
|
2023-12-25 09:49:08 +00:00
|
|
|
export {
|
2024-01-24 08:10:47 +00:00
|
|
|
type DocumentId,
|
2023-12-25 09:49:08 +00:00
|
|
|
TiptapCollabProvider,
|
|
|
|
type TiptapCollabProviderConfiguration,
|
2024-01-11 06:00:12 +00:00
|
|
|
createTiptapCollaborationData
|
|
|
|
} from './provider/tiptap'
|
2024-02-27 04:56:02 +00:00
|
|
|
export { collaborativeDocumentId, mongodbDocumentId, platformDocumentId } from './provider/utils'
|
2023-11-28 05:35:15 +00:00
|
|
|
export { CollaborationIds } from './types'
|
|
|
|
|
2022-04-01 05:57:22 +00:00
|
|
|
export { textEditorId }
|