2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* 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';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum EditorClasses {
|
|
|
|
root = 'p-editor',
|
|
|
|
toolbar = 'p-editor-toolbar',
|
|
|
|
content = 'p-editor-content'
|
|
|
|
}
|
|
|
|
|
2023-10-02 13:15:41 +00:00
|
|
|
export interface EditorStyle extends BaseStyle {}
|