mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
* feat: support document apply remote events * fix: add tests for database * fix: add test for filter,sort and group * fix: jest ci * fix: jest ci * fix: jest ci * fix: jest ci * fix: cypress test
47 lines
924 B
TypeScript
47 lines
924 B
TypeScript
import { ReactEditor } from 'slate-react';
|
|
|
|
interface EditorInlineAttributes {
|
|
bold?: boolean;
|
|
italic?: boolean;
|
|
underline?: boolean;
|
|
strikethrough?: boolean;
|
|
font_color?: string;
|
|
bg_color?: string;
|
|
href?: string;
|
|
code?: boolean;
|
|
font_family?: string;
|
|
formula?: string;
|
|
prism_token?: string;
|
|
class_name?: string;
|
|
mention?: {
|
|
type: string;
|
|
// inline page ref id
|
|
page?: string;
|
|
// reminder date ref id
|
|
date?: string;
|
|
};
|
|
}
|
|
|
|
type CustomElement = {
|
|
children: (CustomText | CustomElement)[];
|
|
type?: string;
|
|
data?: unknown;
|
|
blockId?: string;
|
|
textId?: string;
|
|
relationId?: string;
|
|
};
|
|
|
|
type CustomText = { text: string } & EditorInlineAttributes;
|
|
|
|
declare module 'slate' {
|
|
interface CustomTypes {
|
|
Editor: BaseEditor & ReactEditor;
|
|
Element: CustomElement;
|
|
Text: CustomText;
|
|
}
|
|
|
|
interface BaseEditor {
|
|
isEmbed: (element: CustomElement) => boolean;
|
|
}
|
|
}
|