2021-08-06 08:31:17 +00:00
|
|
|
//
|
|
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
|
|
// Copyright © 2021 Hardcore Engineering Inc.
|
2021-12-30 09:04:32 +00:00
|
|
|
//
|
2021-08-06 08:31:17 +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
|
2021-12-30 09:04:32 +00:00
|
|
|
//
|
2021-08-06 08:31:17 +00:00
|
|
|
// 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.
|
2021-12-30 09:04:32 +00:00
|
|
|
//
|
2021-08-06 08:31:17 +00:00
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
|
2021-12-17 12:14:34 +00:00
|
|
|
import { addStringsLoader } from '@anticrm/platform'
|
|
|
|
import { presentationId } from './plugin'
|
2021-12-30 09:04:32 +00:00
|
|
|
export * from './attributes'
|
2021-10-04 19:18:23 +00:00
|
|
|
export { default as AttributeBarEditor } from './components/AttributeBarEditor.svelte'
|
2021-12-06 10:07:08 +00:00
|
|
|
export { default as AttributeEditor } from './components/AttributeEditor.svelte'
|
2022-04-01 05:57:22 +00:00
|
|
|
export { default as AttributesBar } from './components/AttributesBar.svelte'
|
|
|
|
export { default as Avatar } from './components/Avatar.svelte'
|
2021-09-08 16:16:07 +00:00
|
|
|
export { default as Card } from './components/Card.svelte'
|
2022-04-01 05:57:22 +00:00
|
|
|
export { default as EditableAvatar } from './components/EditableAvatar.svelte'
|
2021-10-13 08:39:46 +00:00
|
|
|
export { default as MessageBox } from './components/MessageBox.svelte'
|
2022-04-01 05:57:22 +00:00
|
|
|
export { default as MessageViewer } from './components/MessageViewer.svelte'
|
|
|
|
export { default as PDFViewer } from './components/PDFViewer.svelte'
|
2021-11-02 08:45:08 +00:00
|
|
|
export { default as SpaceCreateCard } from './components/SpaceCreateCard.svelte'
|
2021-12-13 09:05:46 +00:00
|
|
|
export { default as SpaceSelect } from './components/SpaceSelect.svelte'
|
2022-04-01 05:57:22 +00:00
|
|
|
export { default as UserBox } from './components/UserBox.svelte'
|
|
|
|
export { default as UserBoxList } from './components/UserBoxList.svelte'
|
|
|
|
export { default as UserInfo } from './components/UserInfo.svelte'
|
|
|
|
export { connect, versionError } from './connect'
|
|
|
|
export { default } from './plugin'
|
|
|
|
export * from './types'
|
|
|
|
export * from './utils'
|
|
|
|
export { presentationId }
|
2021-12-17 12:14:34 +00:00
|
|
|
|
|
|
|
addStringsLoader(presentationId, async (lang: string) => {
|
|
|
|
return await import(`../lang/${lang}.json`)
|
|
|
|
})
|