primevue-mirror/components/lib/editor/style/EditorStyle.d.ts

28 lines
529 B
TypeScript
Raw Normal View History

/**
*
* Editor groups a collection of contents in tabs.
*
* [Live Demo](https://www.primevue.org/editor/)
*
* @module editorstyle
*
*/
2023-10-02 13:15:41 +00:00
import { BaseStyle } from '../../base/style';
export enum EditorClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-editor',
2024-05-22 13:52:02 +00:00
/**
* Class name of the toolbar element
*/
toolbar = 'p-editor-toolbar',
2024-05-22 13:52:02 +00:00
/**
* Class name of the content element
*/
content = 'p-editor-content'
}
2023-10-02 13:15:41 +00:00
export interface EditorStyle extends BaseStyle {}