UNPKG

@dotcms/uve

Version:

Official JavaScript library for interacting with Universal Visual Editor (UVE)

46 lines (45 loc) 893 B
/** * TinyMCE default config across all versions * * @internal */ export declare const __DEFAULT_TINYMCE_CONFIG__: { menubar: boolean; inline: boolean; valid_styles: { '*': string; }; powerpaste_word_import: string; powerpaste_html_import: string; suffix: string; }; /** * TinyMCE config to use per mode * * @internal */ export declare const __BASE_TINYMCE_CONFIG_WITH_NO_DEFAULT__: { full: { plugins: string; toolbar: string[]; style_formats: { title: string; format: string; }[]; }; plain: { plugins: string; toolbar: string; }; minimal: { plugins: string; toolbar: string; valid_elements: string; }; }; /** * TinyMCE path * * @internal */ export declare const __TINYMCE_PATH_ON_DOTCMS__ = "/ext/tinymcev7/tinymce.min.js";