2022-01-24 09:35:58 +00:00
|
|
|
//
|
|
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
|
|
// Copyright © 2021 Hardcore Engineering Inc.
|
|
|
|
//
|
|
|
|
// 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-09-21 08:08:25 +00:00
|
|
|
import { addStringsLoader } from '@hcengineering/platform'
|
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'
|
2021-08-07 14:49:14 +00:00
|
|
|
export { default as ReferenceInput } from './components/ReferenceInput.svelte'
|
2022-02-07 09:21:32 +00:00
|
|
|
export { default as StyledTextBox } from './components/StyledTextBox.svelte'
|
2022-05-18 04:04:54 +00:00
|
|
|
export { default as StyledTextArea } from './components/StyledTextArea.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'
|
2022-06-28 06:50:39 +00:00
|
|
|
export { default as FullDescriptionBox } from './components/FullDescriptionBox.svelte'
|
2022-11-02 08:50:14 +00:00
|
|
|
export { default as CollaboratorEditor } from './components/CollaboratorEditor.svelte'
|
2022-11-08 13:45:19 +00:00
|
|
|
export { default as CollaborationDiffViewer } from './components/CollaborationDiffViewer.svelte'
|
2022-04-01 05:57:22 +00:00
|
|
|
export { default } from './plugin'
|
|
|
|
export * from './types'
|
2022-11-22 18:13:26 +00:00
|
|
|
export { default as Collaboration } from './components/Collaboration.svelte'
|
2023-04-27 10:09:46 +00:00
|
|
|
export { default as StyleButton } from './components/StyleButton.svelte'
|
2022-01-21 09:05:55 +00:00
|
|
|
|
2023-09-29 07:41:52 +00:00
|
|
|
export {
|
|
|
|
NodeHighlightExtension,
|
|
|
|
NodeHighlightExtensionOptions,
|
|
|
|
NodeHighlightType
|
|
|
|
} from './components/extension/nodeHighlight'
|
|
|
|
export { NodeUuidCommands, NodeUuidExtension, NodeUuidOptions, NodeUuidStorage } from './components/extension/nodeUuid'
|
|
|
|
|
2022-01-21 09:05:55 +00:00
|
|
|
addStringsLoader(textEditorId, async (lang: string) => {
|
|
|
|
return await import(`../lang/${lang}.json`)
|
|
|
|
})
|
|
|
|
|
2022-04-01 05:57:22 +00:00
|
|
|
export { textEditorId }
|