@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
13 lines • 496 B
JavaScript
export const annotationPrefix = 'ak-editor-annotation';
export const AnnotationSharedClassNames = {
focus: `${annotationPrefix}-focus`,
blur: `${annotationPrefix}-blur`,
draft: `${annotationPrefix}-draft`,
hover: `${annotationPrefix}-hover`
};
export const blockAnnotationPrefix = 'ak-editor-block-annotation';
export const BlockAnnotationSharedClassNames = {
focus: `${blockAnnotationPrefix}-focus`,
blur: `${blockAnnotationPrefix}-blur`,
draft: `${blockAnnotationPrefix}-draft`
};