@cairn214/fluent-editor
Version:
A rich text editor based on Quill 2.0, which extends rich modules and formats on the basis of Quill. It's powerful and out-of-the-box.
39 lines (38 loc) • 2.01 kB
TypeScript
export declare const TABLE_CELL_LINE_CLASS = "qlrte__better-table-cell-line";
export declare const ROW_TOOL_CLASS = "qlrte__row-tool";
export declare const ROW_TOOL_CELL_CLASS = "qlrte__row-tool-cell";
export declare const ROW_TOOL_CELL_HOLDER_CLASS = "qlrte__row-tool-cell-holder";
export declare const COL_TOOL_CLASS = "qlrte__col-tool";
export declare const COL_TOOL_CELL_CLASS = "qlrte__col-tool-cell";
export declare const COL_TOOL_CELL_HOLDER_CLASS = "qlrte__col-tool-cell-holder";
export declare const SELECT_LINE_CLASS = "qlrte__selection-line";
export declare const OPERATE_MENU_CLASS = "qlrte__op-menu";
export declare const OPERATE_MENU_ITEM_CLASS = "qlrte__op-menu-item";
export declare const OPERATE_MENU_ICON_CLASS = "qlrte__op-menu-icon";
export declare const OPERATE_MENU_ICON_PREFIX_CLASS = "qlrte__op-menu-icon-prefix";
export declare const OPERATE_MENU_TEXT_CLASS = "qlrte__op-menu-text";
export declare const OPERATE_MENU_DIVIDING_CLASS = "qlrte__op-menu-dividing";
export declare const OPERATE_MENU_SUBTITLE_CLASS = "qlrte__op-menu-subtitle";
export declare const OPERATE_MENU_COLORPICKER_CLASS = "qlrte__op-menu-color-picker";
export declare const OPERATE_MENU_COLORPICKER_ITEM_CLASS = "qlrte__op-menu-color-picker-item";
export declare const COL_ATTRIBUTES: string[];
export declare const COL_DEFAULT: {
width: number;
};
export declare const CELL_IDENTITY_KEYS: string[];
export declare const CELL_ATTRIBUTES: string[];
export declare const CELL_DEFAULT: {
rowspan: number;
colspan: number;
};
export declare const ERROR_LIMIT = 5;
export declare const SCROLL_BAR_PANEL_HEIGHT = 32;
export declare const ROW_TOOL_WIDTH = 16;
export declare const COL_TOOL_HEIGHT = 16;
export declare const CELL_MIN_WIDTH = 50;
export declare const CELL_MIN_HEIGHT = 29;
export declare const PRIMARY_COLOR: string[];
export declare const MENU_ITEM_HEIGHT = 40;
export declare const MENU_MIN_HEIGHT = 150;
export declare const MENU_WIDTH = 205;
export declare const LINE_POSITIONS: string[];