platform/plugins/text-editor-assets/src/index.ts
Victor Ilyushchenko 24b66777ea
Text & Table cell color styling features (#7624)
Signed-off-by: Victor Ilyushchenko <alt13ri@gmail.com>
2025-01-10 16:32:30 +07:00

50 lines
1.8 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`,
Download: `${icons}#download`,
Note: `${icons}#note`,
Comment: `${icons}#comment`,
SelectTable: `${icons}#move`,
MergeCells: `${icons}#union`,
SplitCells: `${icons}#divide`,
Brush: `${icons}#brush`,
TextStyle: `${icons}#textStyle`
})