@liteeditor/editor 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/liteeditor.cjs +1 -1
- package/dist/liteeditor.css +1 -1
- package/dist/liteeditor.esm.js +1 -1
- package/dist/liteeditor.min.js +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +3 -0
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -7,6 +7,9 @@ export interface LiteEditorConfig {
|
|
|
7
7
|
plugins?: string;
|
|
8
8
|
/** Toolbar layout; use "|" to separate button groups. */
|
|
9
9
|
toolbar?: string;
|
|
10
|
+
/** TinyMCE-style menubar. `true` = all menus, or a space-separated subset
|
|
11
|
+
* like "file edit format". Default: off. */
|
|
12
|
+
menubar?: boolean | string;
|
|
10
13
|
/** Editor height in pixels. */
|
|
11
14
|
height?: number;
|
|
12
15
|
/** Your LiteEditor API key (from https://liteeditor.com). */
|