platform/plugins/text-editor-assets/src/index.ts
Alexey Zinoviev fba1469647
UBERF-7579: Text editor actions (#6103)
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com>
2024-07-25 10:43:12 +04:00

42 lines
1.5 KiB
TypeScript

//
// Copyright © 2020, 2021 Anticrm Platform Contributors.
// Copyright © 2022, 2023, 2024 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.
//
import { loadMetadata } from '@hcengineering/platform'
import textEditor from '@hcengineering/text-editor'
const icons = require('../assets/icons.svg') as string // eslint-disable-line
loadMetadata(textEditor.icon, {
Header1: `${icons}#header1`,
Header2: `${icons}#header2`,
Header3: `${icons}#header3`,
Underline: `${icons}#underline`,
Strikethrough: `${icons}#strikethrough`,
Bold: `${icons}#bold`,
Italic: `${icons}#italic`,
Link: `${icons}#link`,
ListNumber: `${icons}#listNumber`,
ListBullet: `${icons}#listBullet`,
Quote: `${icons}#quote`,
Code: `${icons}#code`,
CodeBlock: `${icons}#codeBlock`,
TableProps: `${icons}#tableProps`,
AlignLeft: `${icons}#alignLeft`,
AlignCenter: `${icons}#alignCenter`,
AlignRight: `${icons}#alignRight`,
MoreH: `${icons}#moreH`,
Expand: `${icons}#expand`,
ScaleOut: `${icons}#scaleOut`
})