@innovastudio/contentbox 1.6.82 → 1.6.84

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.
Files changed (2) hide show
  1. package/index.d.ts +6 -4
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -331,14 +331,16 @@ declare class ContentBox {
331
331
  openSettings(e: object): void;
332
332
  clear(): void;
333
333
  saveImages(handler?: string, onComplete?: () => void, onSave?: (img: HTMLImageElement, base64: string, filename: string) => void): void;
334
- html(bForView?: boolean)
335
- mainCss(): void;
336
- sectionCss(): void;
334
+ html(bForView?: boolean): string;
335
+ mainCss(): string;
336
+ sectionCss(): string;
337
337
  undo(): void;
338
338
  redo(): void;
339
339
  setScreenMode(screenMode: string): void;
340
- download(options: object): void;
340
+ download(options?: object): void;
341
341
  viewHtml(): void;
342
342
  toggleEditPanel(): void;
343
+
344
+ screenMode: string;
343
345
  }
344
346
  export default ContentBox;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbox",
3
3
  "type": "module",
4
- "version": "1.6.82",
4
+ "version": "1.6.84",
5
5
  "description": "",
6
6
  "main": "public/contentbox/contentbox.esm.js",
7
7
  "types": "index.d.ts",