json-joy
Version:
Collection of libraries for building collaborative editing apps.
17 lines (16 loc) • 541 B
TypeScript
export declare enum Char {
ZeroLengthSpace = "\uFEFF"
}
export declare enum ElementAttr {
InlineOffset = "__jsonjoy.com"
}
export declare enum CssClass {
/** The whole editor. */
Editor = "jsonjoy-peritext-editor",
/** Editable area of the editor, beginning of the root block. */
Editable = "jsonjoy-peritext-editable",
/** Portal for overlay rendering, stacks z-index over "Editable" area. */
Overlays = "jsonjoy-peritext-overlays",
/** Inline editable areas. */
Inline = "jsonjoy-peritext-inline"
}