2023-12-01 17:55:17 +00:00
|
|
|
//
|
2024-07-12 08:42:13 +00:00
|
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
|
|
// Copyright © 2022, 2023, 2024 Hardcore Engineering Inc.
|
2023-12-01 17:55: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
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
2024-07-25 06:43:12 +00:00
|
|
|
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`
|
|
|
|
})
|