@sobree/core 0.1.15 → 0.1.17
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/createSobree.d.ts +9 -0
- package/dist/doc/builders/index.d.ts +1 -0
- package/dist/doc/builders/numbering.d.ts +19 -0
- package/dist/editor/index.d.ts +33 -2
- package/dist/editor/internal/mutations.d.ts +15 -2
- package/dist/editor/numbering.d.ts +14 -0
- package/dist/editor/sections.d.ts +15 -0
- package/dist/editor/styles.d.ts +16 -0
- package/dist/editor/types.d.ts +34 -1
- package/dist/headless.d.ts +18 -2
- package/dist/index.css +1 -1
- package/dist/index.js +2086 -1864
- package/dist/index.js.map +1 -1
- package/dist/sobree.d.ts +5 -0
- package/package.json +1 -1
package/dist/sobree.d.ts
CHANGED
|
@@ -68,6 +68,11 @@ export interface SobreeOptions {
|
|
|
68
68
|
* after a deploy) — it has no other behaviour.
|
|
69
69
|
*/
|
|
70
70
|
versionBadge?: boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Show hidden text (`<w:vanish/>`) from the start. Off by default
|
|
73
|
+
* (print-faithful). Toggle later with `editor.setShowHiddenText`.
|
|
74
|
+
*/
|
|
75
|
+
showHiddenText?: boolean;
|
|
71
76
|
}
|
|
72
77
|
/**
|
|
73
78
|
* Top-level embeddable product surface. Composes a framework-free `Editor`
|