UNPKG

primeng

Version:

PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB

41 lines (40 loc) 919 B
import { BaseStyle } from 'primeng/base'; import * as i0 from "@angular/core"; export declare class EditorStyle extends BaseStyle { name: string; theme: ({ dt }: { dt: any; }) => string; classes: { root: string; toolbar: string; content: string; }; static ɵfac: i0.ɵɵFactoryDeclaration<EditorStyle, never>; static ɵprov: i0.ɵɵInjectableDeclaration<EditorStyle>; } /** * * Editor groups a collection of contents in tabs. * * [Live Demo](https://www.primeng.org/editor/) * * @module editorstyle * */ export declare enum EditorClasses { /** * Class name of the root element */ root = "p-editor", /** * Class name of the toolbar element */ toolbar = "p-editor-toolbar", /** * Class name of the content element */ content = "p-editor-content" } export interface EditorStyle extends BaseStyle { }