@json-to-office/core-docx 0.33.0 → 0.35.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/components/heading.d.ts.map +1 -1
- package/dist/components/list.d.ts.map +1 -1
- package/dist/components/paragraph.d.ts.map +1 -1
- package/dist/components/section.d.ts.map +1 -1
- package/dist/components/table.d.ts.map +1 -1
- package/dist/components/toc/index.d.ts.map +1 -1
- package/dist/components/visual.d.ts +15 -2
- package/dist/components/visual.d.ts.map +1 -1
- package/dist/core/cached-render.d.ts +9 -1
- package/dist/core/cached-render.d.ts.map +1 -1
- package/dist/core/collectTocHeadings.d.ts +60 -0
- package/dist/core/collectTocHeadings.d.ts.map +1 -0
- package/dist/core/content.d.ts +17 -1
- package/dist/core/content.d.ts.map +1 -1
- package/dist/core/flattenVisuals.d.ts +8 -1
- package/dist/core/flattenVisuals.d.ts.map +1 -1
- package/dist/core/fontResolution.d.ts +15 -1
- package/dist/core/fontResolution.d.ts.map +1 -1
- package/dist/core/generator.d.ts.map +1 -1
- package/dist/core/layout.d.ts +5 -0
- package/dist/core/layout.d.ts.map +1 -1
- package/dist/core/prerasterizeVisuals.d.ts +8 -1
- package/dist/core/prerasterizeVisuals.d.ts.map +1 -1
- package/dist/core/render.d.ts +8 -1
- package/dist/core/render.d.ts.map +1 -1
- package/dist/core/sectionBookmarks.d.ts +53 -0
- package/dist/core/sectionBookmarks.d.ts.map +1 -0
- package/dist/core/sectionOrdinals.d.ts +32 -0
- package/dist/core/sectionOrdinals.d.ts.map +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +943 -206
- package/dist/index.js.map +1 -1
- package/dist/plugin/createDocumentGenerator.d.ts.map +1 -1
- package/dist/plugin/example/index.js +3286 -2568
- package/dist/plugin/example/index.js.map +1 -1
- package/dist/styles/index.d.ts +2 -2
- package/dist/styles/index.d.ts.map +1 -1
- package/dist/styles/themeToDocxAdapter.d.ts.map +1 -1
- package/dist/styles/utils/layoutUtils.d.ts +48 -0
- package/dist/styles/utils/layoutUtils.d.ts.map +1 -1
- package/dist/templates/themes/index.d.ts +552 -12
- package/dist/templates/themes/index.d.ts.map +1 -1
- package/dist/themes/defaults.d.ts +96 -0
- package/dist/themes/defaults.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/index.d.ts +16 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/utils/commentAnchors.d.ts +39 -0
- package/dist/utils/commentAnchors.d.ts.map +1 -0
- package/dist/utils/commentRegistry.d.ts +49 -0
- package/dist/utils/commentRegistry.d.ts.map +1 -0
- package/dist/utils/componentAnnotations.d.ts +23 -0
- package/dist/utils/componentAnnotations.d.ts.map +1 -0
- package/dist/utils/fixFloatingImageIds.d.ts +1 -1
- package/dist/utils/fixFloatingImageIds.d.ts.map +1 -1
- package/dist/utils/noteRegistry.d.ts +43 -0
- package/dist/utils/noteRegistry.d.ts.map +1 -0
- package/dist/utils/noteResolver.d.ts +31 -0
- package/dist/utils/noteResolver.d.ts.map +1 -0
- package/dist/utils/numberingConfig.d.ts +15 -0
- package/dist/utils/numberingConfig.d.ts.map +1 -1
- package/dist/utils/placeholderProcessor.d.ts +2 -2
- package/dist/utils/placeholderProcessor.d.ts.map +1 -1
- package/dist/utils/revisionUtils.d.ts +32 -9
- package/dist/utils/revisionUtils.d.ts.map +1 -1
- package/dist/utils/textParser.d.ts +12 -0
- package/dist/utils/textParser.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -5,6 +5,43 @@
|
|
|
5
5
|
import { type ThemeConfigJson } from '@json-to-office/shared-docx';
|
|
6
6
|
export declare const themes: Record<string, {
|
|
7
7
|
$schema?: string | undefined;
|
|
8
|
+
fontRegistry?: {
|
|
9
|
+
category?: "mono" | "sans" | "serif" | "display" | "handwriting" | undefined;
|
|
10
|
+
family: string;
|
|
11
|
+
id: string;
|
|
12
|
+
sources: ({
|
|
13
|
+
family: string;
|
|
14
|
+
kind: "safe";
|
|
15
|
+
} | {
|
|
16
|
+
weights?: number[] | undefined;
|
|
17
|
+
italics?: boolean | undefined;
|
|
18
|
+
family: string;
|
|
19
|
+
kind: "google";
|
|
20
|
+
} | {
|
|
21
|
+
italic?: boolean | undefined;
|
|
22
|
+
weight?: number | undefined;
|
|
23
|
+
kind: "file";
|
|
24
|
+
path: string;
|
|
25
|
+
} | {
|
|
26
|
+
italic?: boolean | undefined;
|
|
27
|
+
weight?: number | undefined;
|
|
28
|
+
kind: "data";
|
|
29
|
+
data: string;
|
|
30
|
+
} | {
|
|
31
|
+
italic?: boolean | undefined;
|
|
32
|
+
weight?: number | undefined;
|
|
33
|
+
kind: "url";
|
|
34
|
+
url: string;
|
|
35
|
+
} | {
|
|
36
|
+
italic?: boolean | undefined;
|
|
37
|
+
axes?: {
|
|
38
|
+
[x: string]: number;
|
|
39
|
+
} | undefined;
|
|
40
|
+
kind: "variable";
|
|
41
|
+
weight: number;
|
|
42
|
+
url: string;
|
|
43
|
+
})[];
|
|
44
|
+
}[] | undefined;
|
|
8
45
|
styles?: {
|
|
9
46
|
normal?: {
|
|
10
47
|
size?: number | undefined;
|
|
@@ -59,6 +96,12 @@ export declare const themes: Record<string, {
|
|
|
59
96
|
color: string;
|
|
60
97
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
61
98
|
} | undefined;
|
|
99
|
+
between?: {
|
|
100
|
+
space?: number | undefined;
|
|
101
|
+
size: number;
|
|
102
|
+
color: string;
|
|
103
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
104
|
+
} | undefined;
|
|
62
105
|
} | undefined;
|
|
63
106
|
indent?: {
|
|
64
107
|
left?: number | undefined;
|
|
@@ -119,6 +162,12 @@ export declare const themes: Record<string, {
|
|
|
119
162
|
color: string;
|
|
120
163
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
121
164
|
} | undefined;
|
|
165
|
+
between?: {
|
|
166
|
+
space?: number | undefined;
|
|
167
|
+
size: number;
|
|
168
|
+
color: string;
|
|
169
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
170
|
+
} | undefined;
|
|
122
171
|
} | undefined;
|
|
123
172
|
indent?: {
|
|
124
173
|
left?: number | undefined;
|
|
@@ -179,6 +228,12 @@ export declare const themes: Record<string, {
|
|
|
179
228
|
color: string;
|
|
180
229
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
181
230
|
} | undefined;
|
|
231
|
+
between?: {
|
|
232
|
+
space?: number | undefined;
|
|
233
|
+
size: number;
|
|
234
|
+
color: string;
|
|
235
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
236
|
+
} | undefined;
|
|
182
237
|
} | undefined;
|
|
183
238
|
indent?: {
|
|
184
239
|
left?: number | undefined;
|
|
@@ -239,6 +294,12 @@ export declare const themes: Record<string, {
|
|
|
239
294
|
color: string;
|
|
240
295
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
241
296
|
} | undefined;
|
|
297
|
+
between?: {
|
|
298
|
+
space?: number | undefined;
|
|
299
|
+
size: number;
|
|
300
|
+
color: string;
|
|
301
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
302
|
+
} | undefined;
|
|
242
303
|
} | undefined;
|
|
243
304
|
indent?: {
|
|
244
305
|
left?: number | undefined;
|
|
@@ -299,6 +360,12 @@ export declare const themes: Record<string, {
|
|
|
299
360
|
color: string;
|
|
300
361
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
301
362
|
} | undefined;
|
|
363
|
+
between?: {
|
|
364
|
+
space?: number | undefined;
|
|
365
|
+
size: number;
|
|
366
|
+
color: string;
|
|
367
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
368
|
+
} | undefined;
|
|
302
369
|
} | undefined;
|
|
303
370
|
indent?: {
|
|
304
371
|
left?: number | undefined;
|
|
@@ -359,6 +426,12 @@ export declare const themes: Record<string, {
|
|
|
359
426
|
color: string;
|
|
360
427
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
361
428
|
} | undefined;
|
|
429
|
+
between?: {
|
|
430
|
+
space?: number | undefined;
|
|
431
|
+
size: number;
|
|
432
|
+
color: string;
|
|
433
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
434
|
+
} | undefined;
|
|
362
435
|
} | undefined;
|
|
363
436
|
indent?: {
|
|
364
437
|
left?: number | undefined;
|
|
@@ -419,6 +492,12 @@ export declare const themes: Record<string, {
|
|
|
419
492
|
color: string;
|
|
420
493
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
421
494
|
} | undefined;
|
|
495
|
+
between?: {
|
|
496
|
+
space?: number | undefined;
|
|
497
|
+
size: number;
|
|
498
|
+
color: string;
|
|
499
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
500
|
+
} | undefined;
|
|
422
501
|
} | undefined;
|
|
423
502
|
indent?: {
|
|
424
503
|
left?: number | undefined;
|
|
@@ -479,6 +558,12 @@ export declare const themes: Record<string, {
|
|
|
479
558
|
color: string;
|
|
480
559
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
481
560
|
} | undefined;
|
|
561
|
+
between?: {
|
|
562
|
+
space?: number | undefined;
|
|
563
|
+
size: number;
|
|
564
|
+
color: string;
|
|
565
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
566
|
+
} | undefined;
|
|
482
567
|
} | undefined;
|
|
483
568
|
indent?: {
|
|
484
569
|
left?: number | undefined;
|
|
@@ -539,6 +624,12 @@ export declare const themes: Record<string, {
|
|
|
539
624
|
color: string;
|
|
540
625
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
541
626
|
} | undefined;
|
|
627
|
+
between?: {
|
|
628
|
+
space?: number | undefined;
|
|
629
|
+
size: number;
|
|
630
|
+
color: string;
|
|
631
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
632
|
+
} | undefined;
|
|
542
633
|
} | undefined;
|
|
543
634
|
indent?: {
|
|
544
635
|
left?: number | undefined;
|
|
@@ -598,6 +689,12 @@ export declare const themes: Record<string, {
|
|
|
598
689
|
color: string;
|
|
599
690
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
600
691
|
} | undefined;
|
|
692
|
+
between?: {
|
|
693
|
+
space?: number | undefined;
|
|
694
|
+
size: number;
|
|
695
|
+
color: string;
|
|
696
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
697
|
+
} | undefined;
|
|
601
698
|
} | undefined;
|
|
602
699
|
indent?: {
|
|
603
700
|
left?: number | undefined;
|
|
@@ -662,6 +759,12 @@ export declare const themes: Record<string, {
|
|
|
662
759
|
color: string;
|
|
663
760
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
664
761
|
} | undefined;
|
|
762
|
+
between?: {
|
|
763
|
+
space?: number | undefined;
|
|
764
|
+
size: number;
|
|
765
|
+
color: string;
|
|
766
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
767
|
+
} | undefined;
|
|
665
768
|
} | undefined;
|
|
666
769
|
indent?: {
|
|
667
770
|
left?: number | undefined;
|
|
@@ -726,6 +829,12 @@ export declare const themes: Record<string, {
|
|
|
726
829
|
color: string;
|
|
727
830
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
728
831
|
} | undefined;
|
|
832
|
+
between?: {
|
|
833
|
+
space?: number | undefined;
|
|
834
|
+
size: number;
|
|
835
|
+
color: string;
|
|
836
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
837
|
+
} | undefined;
|
|
729
838
|
} | undefined;
|
|
730
839
|
indent?: {
|
|
731
840
|
left?: number | undefined;
|
|
@@ -790,6 +899,12 @@ export declare const themes: Record<string, {
|
|
|
790
899
|
color: string;
|
|
791
900
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
792
901
|
} | undefined;
|
|
902
|
+
between?: {
|
|
903
|
+
space?: number | undefined;
|
|
904
|
+
size: number;
|
|
905
|
+
color: string;
|
|
906
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
907
|
+
} | undefined;
|
|
793
908
|
} | undefined;
|
|
794
909
|
indent?: {
|
|
795
910
|
left?: number | undefined;
|
|
@@ -854,6 +969,12 @@ export declare const themes: Record<string, {
|
|
|
854
969
|
color: string;
|
|
855
970
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
856
971
|
} | undefined;
|
|
972
|
+
between?: {
|
|
973
|
+
space?: number | undefined;
|
|
974
|
+
size: number;
|
|
975
|
+
color: string;
|
|
976
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
977
|
+
} | undefined;
|
|
857
978
|
} | undefined;
|
|
858
979
|
indent?: {
|
|
859
980
|
left?: number | undefined;
|
|
@@ -918,6 +1039,12 @@ export declare const themes: Record<string, {
|
|
|
918
1039
|
color: string;
|
|
919
1040
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
920
1041
|
} | undefined;
|
|
1042
|
+
between?: {
|
|
1043
|
+
space?: number | undefined;
|
|
1044
|
+
size: number;
|
|
1045
|
+
color: string;
|
|
1046
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1047
|
+
} | undefined;
|
|
921
1048
|
} | undefined;
|
|
922
1049
|
indent?: {
|
|
923
1050
|
left?: number | undefined;
|
|
@@ -988,6 +1115,7 @@ export declare const themes: Record<string, {
|
|
|
988
1115
|
before?: number | undefined;
|
|
989
1116
|
after?: number | undefined;
|
|
990
1117
|
} | undefined;
|
|
1118
|
+
id?: string | undefined;
|
|
991
1119
|
alignment?: "left" | "right" | "center" | "justify" | undefined;
|
|
992
1120
|
keepNext?: boolean | undefined;
|
|
993
1121
|
indent?: {
|
|
@@ -1048,13 +1176,13 @@ export declare const themes: Record<string, {
|
|
|
1048
1176
|
} | undefined;
|
|
1049
1177
|
lockAnchor?: boolean | undefined;
|
|
1050
1178
|
} | undefined;
|
|
1051
|
-
id?: string | undefined;
|
|
1052
1179
|
} | undefined;
|
|
1053
1180
|
image?: {
|
|
1054
1181
|
spacing?: {
|
|
1055
1182
|
before?: number | undefined;
|
|
1056
1183
|
after?: number | undefined;
|
|
1057
1184
|
} | undefined;
|
|
1185
|
+
path?: string | undefined;
|
|
1058
1186
|
width?: string | number | undefined;
|
|
1059
1187
|
height?: string | number | undefined;
|
|
1060
1188
|
alignment?: "left" | "right" | "center" | undefined;
|
|
@@ -1089,7 +1217,6 @@ export declare const themes: Record<string, {
|
|
|
1089
1217
|
rotation?: number | undefined;
|
|
1090
1218
|
visibility?: "hidden" | "inherit" | undefined;
|
|
1091
1219
|
} | undefined;
|
|
1092
|
-
path?: string | undefined;
|
|
1093
1220
|
base64?: string | undefined;
|
|
1094
1221
|
svg?: string | undefined;
|
|
1095
1222
|
alt?: string | undefined;
|
|
@@ -1171,6 +1298,7 @@ export declare const themes: Record<string, {
|
|
|
1171
1298
|
} | undefined;
|
|
1172
1299
|
text: string;
|
|
1173
1300
|
})[] | undefined;
|
|
1301
|
+
bullet?: string | undefined;
|
|
1174
1302
|
reference?: string | undefined;
|
|
1175
1303
|
levels?: {
|
|
1176
1304
|
text?: string | undefined;
|
|
@@ -1179,11 +1307,18 @@ export declare const themes: Record<string, {
|
|
|
1179
1307
|
left?: number | undefined;
|
|
1180
1308
|
hanging?: number | undefined;
|
|
1181
1309
|
} | undefined;
|
|
1310
|
+
font?: {
|
|
1311
|
+
size?: number | undefined;
|
|
1312
|
+
color?: string | undefined;
|
|
1313
|
+
bold?: boolean | undefined;
|
|
1314
|
+
italic?: boolean | undefined;
|
|
1315
|
+
underline?: boolean | undefined;
|
|
1316
|
+
family?: string | undefined;
|
|
1317
|
+
} | undefined;
|
|
1182
1318
|
start?: number | undefined;
|
|
1183
1319
|
format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | undefined;
|
|
1184
1320
|
level: number;
|
|
1185
1321
|
}[] | undefined;
|
|
1186
|
-
bullet?: string | undefined;
|
|
1187
1322
|
} | undefined;
|
|
1188
1323
|
} | undefined;
|
|
1189
1324
|
noProofWords?: string[] | undefined;
|
|
@@ -1352,6 +1487,43 @@ export declare const isValidThemeName: (themeName: string) => themeName is strin
|
|
|
1352
1487
|
export declare const getThemeNames: () => string[];
|
|
1353
1488
|
export declare const minimalTheme: {
|
|
1354
1489
|
$schema?: string | undefined;
|
|
1490
|
+
fontRegistry?: {
|
|
1491
|
+
category?: "mono" | "sans" | "serif" | "display" | "handwriting" | undefined;
|
|
1492
|
+
family: string;
|
|
1493
|
+
id: string;
|
|
1494
|
+
sources: ({
|
|
1495
|
+
family: string;
|
|
1496
|
+
kind: "safe";
|
|
1497
|
+
} | {
|
|
1498
|
+
weights?: number[] | undefined;
|
|
1499
|
+
italics?: boolean | undefined;
|
|
1500
|
+
family: string;
|
|
1501
|
+
kind: "google";
|
|
1502
|
+
} | {
|
|
1503
|
+
italic?: boolean | undefined;
|
|
1504
|
+
weight?: number | undefined;
|
|
1505
|
+
kind: "file";
|
|
1506
|
+
path: string;
|
|
1507
|
+
} | {
|
|
1508
|
+
italic?: boolean | undefined;
|
|
1509
|
+
weight?: number | undefined;
|
|
1510
|
+
kind: "data";
|
|
1511
|
+
data: string;
|
|
1512
|
+
} | {
|
|
1513
|
+
italic?: boolean | undefined;
|
|
1514
|
+
weight?: number | undefined;
|
|
1515
|
+
kind: "url";
|
|
1516
|
+
url: string;
|
|
1517
|
+
} | {
|
|
1518
|
+
italic?: boolean | undefined;
|
|
1519
|
+
axes?: {
|
|
1520
|
+
[x: string]: number;
|
|
1521
|
+
} | undefined;
|
|
1522
|
+
kind: "variable";
|
|
1523
|
+
weight: number;
|
|
1524
|
+
url: string;
|
|
1525
|
+
})[];
|
|
1526
|
+
}[] | undefined;
|
|
1355
1527
|
styles?: {
|
|
1356
1528
|
normal?: {
|
|
1357
1529
|
size?: number | undefined;
|
|
@@ -1406,6 +1578,12 @@ export declare const minimalTheme: {
|
|
|
1406
1578
|
color: string;
|
|
1407
1579
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1408
1580
|
} | undefined;
|
|
1581
|
+
between?: {
|
|
1582
|
+
space?: number | undefined;
|
|
1583
|
+
size: number;
|
|
1584
|
+
color: string;
|
|
1585
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1586
|
+
} | undefined;
|
|
1409
1587
|
} | undefined;
|
|
1410
1588
|
indent?: {
|
|
1411
1589
|
left?: number | undefined;
|
|
@@ -1466,6 +1644,12 @@ export declare const minimalTheme: {
|
|
|
1466
1644
|
color: string;
|
|
1467
1645
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1468
1646
|
} | undefined;
|
|
1647
|
+
between?: {
|
|
1648
|
+
space?: number | undefined;
|
|
1649
|
+
size: number;
|
|
1650
|
+
color: string;
|
|
1651
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1652
|
+
} | undefined;
|
|
1469
1653
|
} | undefined;
|
|
1470
1654
|
indent?: {
|
|
1471
1655
|
left?: number | undefined;
|
|
@@ -1526,6 +1710,12 @@ export declare const minimalTheme: {
|
|
|
1526
1710
|
color: string;
|
|
1527
1711
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1528
1712
|
} | undefined;
|
|
1713
|
+
between?: {
|
|
1714
|
+
space?: number | undefined;
|
|
1715
|
+
size: number;
|
|
1716
|
+
color: string;
|
|
1717
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1718
|
+
} | undefined;
|
|
1529
1719
|
} | undefined;
|
|
1530
1720
|
indent?: {
|
|
1531
1721
|
left?: number | undefined;
|
|
@@ -1586,6 +1776,12 @@ export declare const minimalTheme: {
|
|
|
1586
1776
|
color: string;
|
|
1587
1777
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1588
1778
|
} | undefined;
|
|
1779
|
+
between?: {
|
|
1780
|
+
space?: number | undefined;
|
|
1781
|
+
size: number;
|
|
1782
|
+
color: string;
|
|
1783
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1784
|
+
} | undefined;
|
|
1589
1785
|
} | undefined;
|
|
1590
1786
|
indent?: {
|
|
1591
1787
|
left?: number | undefined;
|
|
@@ -1646,6 +1842,12 @@ export declare const minimalTheme: {
|
|
|
1646
1842
|
color: string;
|
|
1647
1843
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1648
1844
|
} | undefined;
|
|
1845
|
+
between?: {
|
|
1846
|
+
space?: number | undefined;
|
|
1847
|
+
size: number;
|
|
1848
|
+
color: string;
|
|
1849
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1850
|
+
} | undefined;
|
|
1649
1851
|
} | undefined;
|
|
1650
1852
|
indent?: {
|
|
1651
1853
|
left?: number | undefined;
|
|
@@ -1706,6 +1908,12 @@ export declare const minimalTheme: {
|
|
|
1706
1908
|
color: string;
|
|
1707
1909
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1708
1910
|
} | undefined;
|
|
1911
|
+
between?: {
|
|
1912
|
+
space?: number | undefined;
|
|
1913
|
+
size: number;
|
|
1914
|
+
color: string;
|
|
1915
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1916
|
+
} | undefined;
|
|
1709
1917
|
} | undefined;
|
|
1710
1918
|
indent?: {
|
|
1711
1919
|
left?: number | undefined;
|
|
@@ -1766,6 +1974,12 @@ export declare const minimalTheme: {
|
|
|
1766
1974
|
color: string;
|
|
1767
1975
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1768
1976
|
} | undefined;
|
|
1977
|
+
between?: {
|
|
1978
|
+
space?: number | undefined;
|
|
1979
|
+
size: number;
|
|
1980
|
+
color: string;
|
|
1981
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1982
|
+
} | undefined;
|
|
1769
1983
|
} | undefined;
|
|
1770
1984
|
indent?: {
|
|
1771
1985
|
left?: number | undefined;
|
|
@@ -1826,6 +2040,12 @@ export declare const minimalTheme: {
|
|
|
1826
2040
|
color: string;
|
|
1827
2041
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1828
2042
|
} | undefined;
|
|
2043
|
+
between?: {
|
|
2044
|
+
space?: number | undefined;
|
|
2045
|
+
size: number;
|
|
2046
|
+
color: string;
|
|
2047
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2048
|
+
} | undefined;
|
|
1829
2049
|
} | undefined;
|
|
1830
2050
|
indent?: {
|
|
1831
2051
|
left?: number | undefined;
|
|
@@ -1886,6 +2106,12 @@ export declare const minimalTheme: {
|
|
|
1886
2106
|
color: string;
|
|
1887
2107
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1888
2108
|
} | undefined;
|
|
2109
|
+
between?: {
|
|
2110
|
+
space?: number | undefined;
|
|
2111
|
+
size: number;
|
|
2112
|
+
color: string;
|
|
2113
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2114
|
+
} | undefined;
|
|
1889
2115
|
} | undefined;
|
|
1890
2116
|
indent?: {
|
|
1891
2117
|
left?: number | undefined;
|
|
@@ -1945,6 +2171,12 @@ export declare const minimalTheme: {
|
|
|
1945
2171
|
color: string;
|
|
1946
2172
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1947
2173
|
} | undefined;
|
|
2174
|
+
between?: {
|
|
2175
|
+
space?: number | undefined;
|
|
2176
|
+
size: number;
|
|
2177
|
+
color: string;
|
|
2178
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2179
|
+
} | undefined;
|
|
1948
2180
|
} | undefined;
|
|
1949
2181
|
indent?: {
|
|
1950
2182
|
left?: number | undefined;
|
|
@@ -2009,6 +2241,12 @@ export declare const minimalTheme: {
|
|
|
2009
2241
|
color: string;
|
|
2010
2242
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2011
2243
|
} | undefined;
|
|
2244
|
+
between?: {
|
|
2245
|
+
space?: number | undefined;
|
|
2246
|
+
size: number;
|
|
2247
|
+
color: string;
|
|
2248
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2249
|
+
} | undefined;
|
|
2012
2250
|
} | undefined;
|
|
2013
2251
|
indent?: {
|
|
2014
2252
|
left?: number | undefined;
|
|
@@ -2073,6 +2311,12 @@ export declare const minimalTheme: {
|
|
|
2073
2311
|
color: string;
|
|
2074
2312
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2075
2313
|
} | undefined;
|
|
2314
|
+
between?: {
|
|
2315
|
+
space?: number | undefined;
|
|
2316
|
+
size: number;
|
|
2317
|
+
color: string;
|
|
2318
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2319
|
+
} | undefined;
|
|
2076
2320
|
} | undefined;
|
|
2077
2321
|
indent?: {
|
|
2078
2322
|
left?: number | undefined;
|
|
@@ -2137,6 +2381,12 @@ export declare const minimalTheme: {
|
|
|
2137
2381
|
color: string;
|
|
2138
2382
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2139
2383
|
} | undefined;
|
|
2384
|
+
between?: {
|
|
2385
|
+
space?: number | undefined;
|
|
2386
|
+
size: number;
|
|
2387
|
+
color: string;
|
|
2388
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2389
|
+
} | undefined;
|
|
2140
2390
|
} | undefined;
|
|
2141
2391
|
indent?: {
|
|
2142
2392
|
left?: number | undefined;
|
|
@@ -2201,6 +2451,12 @@ export declare const minimalTheme: {
|
|
|
2201
2451
|
color: string;
|
|
2202
2452
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2203
2453
|
} | undefined;
|
|
2454
|
+
between?: {
|
|
2455
|
+
space?: number | undefined;
|
|
2456
|
+
size: number;
|
|
2457
|
+
color: string;
|
|
2458
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2459
|
+
} | undefined;
|
|
2204
2460
|
} | undefined;
|
|
2205
2461
|
indent?: {
|
|
2206
2462
|
left?: number | undefined;
|
|
@@ -2265,6 +2521,12 @@ export declare const minimalTheme: {
|
|
|
2265
2521
|
color: string;
|
|
2266
2522
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2267
2523
|
} | undefined;
|
|
2524
|
+
between?: {
|
|
2525
|
+
space?: number | undefined;
|
|
2526
|
+
size: number;
|
|
2527
|
+
color: string;
|
|
2528
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2529
|
+
} | undefined;
|
|
2268
2530
|
} | undefined;
|
|
2269
2531
|
indent?: {
|
|
2270
2532
|
left?: number | undefined;
|
|
@@ -2335,6 +2597,7 @@ export declare const minimalTheme: {
|
|
|
2335
2597
|
before?: number | undefined;
|
|
2336
2598
|
after?: number | undefined;
|
|
2337
2599
|
} | undefined;
|
|
2600
|
+
id?: string | undefined;
|
|
2338
2601
|
alignment?: "left" | "right" | "center" | "justify" | undefined;
|
|
2339
2602
|
keepNext?: boolean | undefined;
|
|
2340
2603
|
indent?: {
|
|
@@ -2395,13 +2658,13 @@ export declare const minimalTheme: {
|
|
|
2395
2658
|
} | undefined;
|
|
2396
2659
|
lockAnchor?: boolean | undefined;
|
|
2397
2660
|
} | undefined;
|
|
2398
|
-
id?: string | undefined;
|
|
2399
2661
|
} | undefined;
|
|
2400
2662
|
image?: {
|
|
2401
2663
|
spacing?: {
|
|
2402
2664
|
before?: number | undefined;
|
|
2403
2665
|
after?: number | undefined;
|
|
2404
2666
|
} | undefined;
|
|
2667
|
+
path?: string | undefined;
|
|
2405
2668
|
width?: string | number | undefined;
|
|
2406
2669
|
height?: string | number | undefined;
|
|
2407
2670
|
alignment?: "left" | "right" | "center" | undefined;
|
|
@@ -2436,7 +2699,6 @@ export declare const minimalTheme: {
|
|
|
2436
2699
|
rotation?: number | undefined;
|
|
2437
2700
|
visibility?: "hidden" | "inherit" | undefined;
|
|
2438
2701
|
} | undefined;
|
|
2439
|
-
path?: string | undefined;
|
|
2440
2702
|
base64?: string | undefined;
|
|
2441
2703
|
svg?: string | undefined;
|
|
2442
2704
|
alt?: string | undefined;
|
|
@@ -2518,6 +2780,7 @@ export declare const minimalTheme: {
|
|
|
2518
2780
|
} | undefined;
|
|
2519
2781
|
text: string;
|
|
2520
2782
|
})[] | undefined;
|
|
2783
|
+
bullet?: string | undefined;
|
|
2521
2784
|
reference?: string | undefined;
|
|
2522
2785
|
levels?: {
|
|
2523
2786
|
text?: string | undefined;
|
|
@@ -2526,11 +2789,18 @@ export declare const minimalTheme: {
|
|
|
2526
2789
|
left?: number | undefined;
|
|
2527
2790
|
hanging?: number | undefined;
|
|
2528
2791
|
} | undefined;
|
|
2792
|
+
font?: {
|
|
2793
|
+
size?: number | undefined;
|
|
2794
|
+
color?: string | undefined;
|
|
2795
|
+
bold?: boolean | undefined;
|
|
2796
|
+
italic?: boolean | undefined;
|
|
2797
|
+
underline?: boolean | undefined;
|
|
2798
|
+
family?: string | undefined;
|
|
2799
|
+
} | undefined;
|
|
2529
2800
|
start?: number | undefined;
|
|
2530
2801
|
format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | undefined;
|
|
2531
2802
|
level: number;
|
|
2532
2803
|
}[] | undefined;
|
|
2533
|
-
bullet?: string | undefined;
|
|
2534
2804
|
} | undefined;
|
|
2535
2805
|
} | undefined;
|
|
2536
2806
|
noProofWords?: string[] | undefined;
|
|
@@ -2664,6 +2934,43 @@ export declare const minimalTheme: {
|
|
|
2664
2934
|
};
|
|
2665
2935
|
export declare const corporateTheme: {
|
|
2666
2936
|
$schema?: string | undefined;
|
|
2937
|
+
fontRegistry?: {
|
|
2938
|
+
category?: "mono" | "sans" | "serif" | "display" | "handwriting" | undefined;
|
|
2939
|
+
family: string;
|
|
2940
|
+
id: string;
|
|
2941
|
+
sources: ({
|
|
2942
|
+
family: string;
|
|
2943
|
+
kind: "safe";
|
|
2944
|
+
} | {
|
|
2945
|
+
weights?: number[] | undefined;
|
|
2946
|
+
italics?: boolean | undefined;
|
|
2947
|
+
family: string;
|
|
2948
|
+
kind: "google";
|
|
2949
|
+
} | {
|
|
2950
|
+
italic?: boolean | undefined;
|
|
2951
|
+
weight?: number | undefined;
|
|
2952
|
+
kind: "file";
|
|
2953
|
+
path: string;
|
|
2954
|
+
} | {
|
|
2955
|
+
italic?: boolean | undefined;
|
|
2956
|
+
weight?: number | undefined;
|
|
2957
|
+
kind: "data";
|
|
2958
|
+
data: string;
|
|
2959
|
+
} | {
|
|
2960
|
+
italic?: boolean | undefined;
|
|
2961
|
+
weight?: number | undefined;
|
|
2962
|
+
kind: "url";
|
|
2963
|
+
url: string;
|
|
2964
|
+
} | {
|
|
2965
|
+
italic?: boolean | undefined;
|
|
2966
|
+
axes?: {
|
|
2967
|
+
[x: string]: number;
|
|
2968
|
+
} | undefined;
|
|
2969
|
+
kind: "variable";
|
|
2970
|
+
weight: number;
|
|
2971
|
+
url: string;
|
|
2972
|
+
})[];
|
|
2973
|
+
}[] | undefined;
|
|
2667
2974
|
styles?: {
|
|
2668
2975
|
normal?: {
|
|
2669
2976
|
size?: number | undefined;
|
|
@@ -2718,6 +3025,12 @@ export declare const corporateTheme: {
|
|
|
2718
3025
|
color: string;
|
|
2719
3026
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2720
3027
|
} | undefined;
|
|
3028
|
+
between?: {
|
|
3029
|
+
space?: number | undefined;
|
|
3030
|
+
size: number;
|
|
3031
|
+
color: string;
|
|
3032
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3033
|
+
} | undefined;
|
|
2721
3034
|
} | undefined;
|
|
2722
3035
|
indent?: {
|
|
2723
3036
|
left?: number | undefined;
|
|
@@ -2778,6 +3091,12 @@ export declare const corporateTheme: {
|
|
|
2778
3091
|
color: string;
|
|
2779
3092
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2780
3093
|
} | undefined;
|
|
3094
|
+
between?: {
|
|
3095
|
+
space?: number | undefined;
|
|
3096
|
+
size: number;
|
|
3097
|
+
color: string;
|
|
3098
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3099
|
+
} | undefined;
|
|
2781
3100
|
} | undefined;
|
|
2782
3101
|
indent?: {
|
|
2783
3102
|
left?: number | undefined;
|
|
@@ -2838,6 +3157,12 @@ export declare const corporateTheme: {
|
|
|
2838
3157
|
color: string;
|
|
2839
3158
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2840
3159
|
} | undefined;
|
|
3160
|
+
between?: {
|
|
3161
|
+
space?: number | undefined;
|
|
3162
|
+
size: number;
|
|
3163
|
+
color: string;
|
|
3164
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3165
|
+
} | undefined;
|
|
2841
3166
|
} | undefined;
|
|
2842
3167
|
indent?: {
|
|
2843
3168
|
left?: number | undefined;
|
|
@@ -2898,6 +3223,12 @@ export declare const corporateTheme: {
|
|
|
2898
3223
|
color: string;
|
|
2899
3224
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2900
3225
|
} | undefined;
|
|
3226
|
+
between?: {
|
|
3227
|
+
space?: number | undefined;
|
|
3228
|
+
size: number;
|
|
3229
|
+
color: string;
|
|
3230
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3231
|
+
} | undefined;
|
|
2901
3232
|
} | undefined;
|
|
2902
3233
|
indent?: {
|
|
2903
3234
|
left?: number | undefined;
|
|
@@ -2958,6 +3289,12 @@ export declare const corporateTheme: {
|
|
|
2958
3289
|
color: string;
|
|
2959
3290
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
2960
3291
|
} | undefined;
|
|
3292
|
+
between?: {
|
|
3293
|
+
space?: number | undefined;
|
|
3294
|
+
size: number;
|
|
3295
|
+
color: string;
|
|
3296
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3297
|
+
} | undefined;
|
|
2961
3298
|
} | undefined;
|
|
2962
3299
|
indent?: {
|
|
2963
3300
|
left?: number | undefined;
|
|
@@ -3018,6 +3355,12 @@ export declare const corporateTheme: {
|
|
|
3018
3355
|
color: string;
|
|
3019
3356
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3020
3357
|
} | undefined;
|
|
3358
|
+
between?: {
|
|
3359
|
+
space?: number | undefined;
|
|
3360
|
+
size: number;
|
|
3361
|
+
color: string;
|
|
3362
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3363
|
+
} | undefined;
|
|
3021
3364
|
} | undefined;
|
|
3022
3365
|
indent?: {
|
|
3023
3366
|
left?: number | undefined;
|
|
@@ -3078,6 +3421,12 @@ export declare const corporateTheme: {
|
|
|
3078
3421
|
color: string;
|
|
3079
3422
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3080
3423
|
} | undefined;
|
|
3424
|
+
between?: {
|
|
3425
|
+
space?: number | undefined;
|
|
3426
|
+
size: number;
|
|
3427
|
+
color: string;
|
|
3428
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3429
|
+
} | undefined;
|
|
3081
3430
|
} | undefined;
|
|
3082
3431
|
indent?: {
|
|
3083
3432
|
left?: number | undefined;
|
|
@@ -3138,6 +3487,12 @@ export declare const corporateTheme: {
|
|
|
3138
3487
|
color: string;
|
|
3139
3488
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3140
3489
|
} | undefined;
|
|
3490
|
+
between?: {
|
|
3491
|
+
space?: number | undefined;
|
|
3492
|
+
size: number;
|
|
3493
|
+
color: string;
|
|
3494
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3495
|
+
} | undefined;
|
|
3141
3496
|
} | undefined;
|
|
3142
3497
|
indent?: {
|
|
3143
3498
|
left?: number | undefined;
|
|
@@ -3198,6 +3553,12 @@ export declare const corporateTheme: {
|
|
|
3198
3553
|
color: string;
|
|
3199
3554
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3200
3555
|
} | undefined;
|
|
3556
|
+
between?: {
|
|
3557
|
+
space?: number | undefined;
|
|
3558
|
+
size: number;
|
|
3559
|
+
color: string;
|
|
3560
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3561
|
+
} | undefined;
|
|
3201
3562
|
} | undefined;
|
|
3202
3563
|
indent?: {
|
|
3203
3564
|
left?: number | undefined;
|
|
@@ -3257,6 +3618,12 @@ export declare const corporateTheme: {
|
|
|
3257
3618
|
color: string;
|
|
3258
3619
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3259
3620
|
} | undefined;
|
|
3621
|
+
between?: {
|
|
3622
|
+
space?: number | undefined;
|
|
3623
|
+
size: number;
|
|
3624
|
+
color: string;
|
|
3625
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3626
|
+
} | undefined;
|
|
3260
3627
|
} | undefined;
|
|
3261
3628
|
indent?: {
|
|
3262
3629
|
left?: number | undefined;
|
|
@@ -3321,6 +3688,12 @@ export declare const corporateTheme: {
|
|
|
3321
3688
|
color: string;
|
|
3322
3689
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3323
3690
|
} | undefined;
|
|
3691
|
+
between?: {
|
|
3692
|
+
space?: number | undefined;
|
|
3693
|
+
size: number;
|
|
3694
|
+
color: string;
|
|
3695
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3696
|
+
} | undefined;
|
|
3324
3697
|
} | undefined;
|
|
3325
3698
|
indent?: {
|
|
3326
3699
|
left?: number | undefined;
|
|
@@ -3385,6 +3758,12 @@ export declare const corporateTheme: {
|
|
|
3385
3758
|
color: string;
|
|
3386
3759
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3387
3760
|
} | undefined;
|
|
3761
|
+
between?: {
|
|
3762
|
+
space?: number | undefined;
|
|
3763
|
+
size: number;
|
|
3764
|
+
color: string;
|
|
3765
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3766
|
+
} | undefined;
|
|
3388
3767
|
} | undefined;
|
|
3389
3768
|
indent?: {
|
|
3390
3769
|
left?: number | undefined;
|
|
@@ -3449,6 +3828,12 @@ export declare const corporateTheme: {
|
|
|
3449
3828
|
color: string;
|
|
3450
3829
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3451
3830
|
} | undefined;
|
|
3831
|
+
between?: {
|
|
3832
|
+
space?: number | undefined;
|
|
3833
|
+
size: number;
|
|
3834
|
+
color: string;
|
|
3835
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3836
|
+
} | undefined;
|
|
3452
3837
|
} | undefined;
|
|
3453
3838
|
indent?: {
|
|
3454
3839
|
left?: number | undefined;
|
|
@@ -3513,6 +3898,12 @@ export declare const corporateTheme: {
|
|
|
3513
3898
|
color: string;
|
|
3514
3899
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3515
3900
|
} | undefined;
|
|
3901
|
+
between?: {
|
|
3902
|
+
space?: number | undefined;
|
|
3903
|
+
size: number;
|
|
3904
|
+
color: string;
|
|
3905
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3906
|
+
} | undefined;
|
|
3516
3907
|
} | undefined;
|
|
3517
3908
|
indent?: {
|
|
3518
3909
|
left?: number | undefined;
|
|
@@ -3577,6 +3968,12 @@ export declare const corporateTheme: {
|
|
|
3577
3968
|
color: string;
|
|
3578
3969
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3579
3970
|
} | undefined;
|
|
3971
|
+
between?: {
|
|
3972
|
+
space?: number | undefined;
|
|
3973
|
+
size: number;
|
|
3974
|
+
color: string;
|
|
3975
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
3976
|
+
} | undefined;
|
|
3580
3977
|
} | undefined;
|
|
3581
3978
|
indent?: {
|
|
3582
3979
|
left?: number | undefined;
|
|
@@ -3647,6 +4044,7 @@ export declare const corporateTheme: {
|
|
|
3647
4044
|
before?: number | undefined;
|
|
3648
4045
|
after?: number | undefined;
|
|
3649
4046
|
} | undefined;
|
|
4047
|
+
id?: string | undefined;
|
|
3650
4048
|
alignment?: "left" | "right" | "center" | "justify" | undefined;
|
|
3651
4049
|
keepNext?: boolean | undefined;
|
|
3652
4050
|
indent?: {
|
|
@@ -3707,13 +4105,13 @@ export declare const corporateTheme: {
|
|
|
3707
4105
|
} | undefined;
|
|
3708
4106
|
lockAnchor?: boolean | undefined;
|
|
3709
4107
|
} | undefined;
|
|
3710
|
-
id?: string | undefined;
|
|
3711
4108
|
} | undefined;
|
|
3712
4109
|
image?: {
|
|
3713
4110
|
spacing?: {
|
|
3714
4111
|
before?: number | undefined;
|
|
3715
4112
|
after?: number | undefined;
|
|
3716
4113
|
} | undefined;
|
|
4114
|
+
path?: string | undefined;
|
|
3717
4115
|
width?: string | number | undefined;
|
|
3718
4116
|
height?: string | number | undefined;
|
|
3719
4117
|
alignment?: "left" | "right" | "center" | undefined;
|
|
@@ -3748,7 +4146,6 @@ export declare const corporateTheme: {
|
|
|
3748
4146
|
rotation?: number | undefined;
|
|
3749
4147
|
visibility?: "hidden" | "inherit" | undefined;
|
|
3750
4148
|
} | undefined;
|
|
3751
|
-
path?: string | undefined;
|
|
3752
4149
|
base64?: string | undefined;
|
|
3753
4150
|
svg?: string | undefined;
|
|
3754
4151
|
alt?: string | undefined;
|
|
@@ -3830,6 +4227,7 @@ export declare const corporateTheme: {
|
|
|
3830
4227
|
} | undefined;
|
|
3831
4228
|
text: string;
|
|
3832
4229
|
})[] | undefined;
|
|
4230
|
+
bullet?: string | undefined;
|
|
3833
4231
|
reference?: string | undefined;
|
|
3834
4232
|
levels?: {
|
|
3835
4233
|
text?: string | undefined;
|
|
@@ -3838,11 +4236,18 @@ export declare const corporateTheme: {
|
|
|
3838
4236
|
left?: number | undefined;
|
|
3839
4237
|
hanging?: number | undefined;
|
|
3840
4238
|
} | undefined;
|
|
4239
|
+
font?: {
|
|
4240
|
+
size?: number | undefined;
|
|
4241
|
+
color?: string | undefined;
|
|
4242
|
+
bold?: boolean | undefined;
|
|
4243
|
+
italic?: boolean | undefined;
|
|
4244
|
+
underline?: boolean | undefined;
|
|
4245
|
+
family?: string | undefined;
|
|
4246
|
+
} | undefined;
|
|
3841
4247
|
start?: number | undefined;
|
|
3842
4248
|
format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | undefined;
|
|
3843
4249
|
level: number;
|
|
3844
4250
|
}[] | undefined;
|
|
3845
|
-
bullet?: string | undefined;
|
|
3846
4251
|
} | undefined;
|
|
3847
4252
|
} | undefined;
|
|
3848
4253
|
noProofWords?: string[] | undefined;
|
|
@@ -3976,6 +4381,43 @@ export declare const corporateTheme: {
|
|
|
3976
4381
|
};
|
|
3977
4382
|
export declare const modernTheme: {
|
|
3978
4383
|
$schema?: string | undefined;
|
|
4384
|
+
fontRegistry?: {
|
|
4385
|
+
category?: "mono" | "sans" | "serif" | "display" | "handwriting" | undefined;
|
|
4386
|
+
family: string;
|
|
4387
|
+
id: string;
|
|
4388
|
+
sources: ({
|
|
4389
|
+
family: string;
|
|
4390
|
+
kind: "safe";
|
|
4391
|
+
} | {
|
|
4392
|
+
weights?: number[] | undefined;
|
|
4393
|
+
italics?: boolean | undefined;
|
|
4394
|
+
family: string;
|
|
4395
|
+
kind: "google";
|
|
4396
|
+
} | {
|
|
4397
|
+
italic?: boolean | undefined;
|
|
4398
|
+
weight?: number | undefined;
|
|
4399
|
+
kind: "file";
|
|
4400
|
+
path: string;
|
|
4401
|
+
} | {
|
|
4402
|
+
italic?: boolean | undefined;
|
|
4403
|
+
weight?: number | undefined;
|
|
4404
|
+
kind: "data";
|
|
4405
|
+
data: string;
|
|
4406
|
+
} | {
|
|
4407
|
+
italic?: boolean | undefined;
|
|
4408
|
+
weight?: number | undefined;
|
|
4409
|
+
kind: "url";
|
|
4410
|
+
url: string;
|
|
4411
|
+
} | {
|
|
4412
|
+
italic?: boolean | undefined;
|
|
4413
|
+
axes?: {
|
|
4414
|
+
[x: string]: number;
|
|
4415
|
+
} | undefined;
|
|
4416
|
+
kind: "variable";
|
|
4417
|
+
weight: number;
|
|
4418
|
+
url: string;
|
|
4419
|
+
})[];
|
|
4420
|
+
}[] | undefined;
|
|
3979
4421
|
styles?: {
|
|
3980
4422
|
normal?: {
|
|
3981
4423
|
size?: number | undefined;
|
|
@@ -4030,6 +4472,12 @@ export declare const modernTheme: {
|
|
|
4030
4472
|
color: string;
|
|
4031
4473
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4032
4474
|
} | undefined;
|
|
4475
|
+
between?: {
|
|
4476
|
+
space?: number | undefined;
|
|
4477
|
+
size: number;
|
|
4478
|
+
color: string;
|
|
4479
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4480
|
+
} | undefined;
|
|
4033
4481
|
} | undefined;
|
|
4034
4482
|
indent?: {
|
|
4035
4483
|
left?: number | undefined;
|
|
@@ -4090,6 +4538,12 @@ export declare const modernTheme: {
|
|
|
4090
4538
|
color: string;
|
|
4091
4539
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4092
4540
|
} | undefined;
|
|
4541
|
+
between?: {
|
|
4542
|
+
space?: number | undefined;
|
|
4543
|
+
size: number;
|
|
4544
|
+
color: string;
|
|
4545
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4546
|
+
} | undefined;
|
|
4093
4547
|
} | undefined;
|
|
4094
4548
|
indent?: {
|
|
4095
4549
|
left?: number | undefined;
|
|
@@ -4150,6 +4604,12 @@ export declare const modernTheme: {
|
|
|
4150
4604
|
color: string;
|
|
4151
4605
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4152
4606
|
} | undefined;
|
|
4607
|
+
between?: {
|
|
4608
|
+
space?: number | undefined;
|
|
4609
|
+
size: number;
|
|
4610
|
+
color: string;
|
|
4611
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4612
|
+
} | undefined;
|
|
4153
4613
|
} | undefined;
|
|
4154
4614
|
indent?: {
|
|
4155
4615
|
left?: number | undefined;
|
|
@@ -4210,6 +4670,12 @@ export declare const modernTheme: {
|
|
|
4210
4670
|
color: string;
|
|
4211
4671
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4212
4672
|
} | undefined;
|
|
4673
|
+
between?: {
|
|
4674
|
+
space?: number | undefined;
|
|
4675
|
+
size: number;
|
|
4676
|
+
color: string;
|
|
4677
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4678
|
+
} | undefined;
|
|
4213
4679
|
} | undefined;
|
|
4214
4680
|
indent?: {
|
|
4215
4681
|
left?: number | undefined;
|
|
@@ -4270,6 +4736,12 @@ export declare const modernTheme: {
|
|
|
4270
4736
|
color: string;
|
|
4271
4737
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4272
4738
|
} | undefined;
|
|
4739
|
+
between?: {
|
|
4740
|
+
space?: number | undefined;
|
|
4741
|
+
size: number;
|
|
4742
|
+
color: string;
|
|
4743
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4744
|
+
} | undefined;
|
|
4273
4745
|
} | undefined;
|
|
4274
4746
|
indent?: {
|
|
4275
4747
|
left?: number | undefined;
|
|
@@ -4330,6 +4802,12 @@ export declare const modernTheme: {
|
|
|
4330
4802
|
color: string;
|
|
4331
4803
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4332
4804
|
} | undefined;
|
|
4805
|
+
between?: {
|
|
4806
|
+
space?: number | undefined;
|
|
4807
|
+
size: number;
|
|
4808
|
+
color: string;
|
|
4809
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4810
|
+
} | undefined;
|
|
4333
4811
|
} | undefined;
|
|
4334
4812
|
indent?: {
|
|
4335
4813
|
left?: number | undefined;
|
|
@@ -4390,6 +4868,12 @@ export declare const modernTheme: {
|
|
|
4390
4868
|
color: string;
|
|
4391
4869
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4392
4870
|
} | undefined;
|
|
4871
|
+
between?: {
|
|
4872
|
+
space?: number | undefined;
|
|
4873
|
+
size: number;
|
|
4874
|
+
color: string;
|
|
4875
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4876
|
+
} | undefined;
|
|
4393
4877
|
} | undefined;
|
|
4394
4878
|
indent?: {
|
|
4395
4879
|
left?: number | undefined;
|
|
@@ -4450,6 +4934,12 @@ export declare const modernTheme: {
|
|
|
4450
4934
|
color: string;
|
|
4451
4935
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4452
4936
|
} | undefined;
|
|
4937
|
+
between?: {
|
|
4938
|
+
space?: number | undefined;
|
|
4939
|
+
size: number;
|
|
4940
|
+
color: string;
|
|
4941
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4942
|
+
} | undefined;
|
|
4453
4943
|
} | undefined;
|
|
4454
4944
|
indent?: {
|
|
4455
4945
|
left?: number | undefined;
|
|
@@ -4510,6 +5000,12 @@ export declare const modernTheme: {
|
|
|
4510
5000
|
color: string;
|
|
4511
5001
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4512
5002
|
} | undefined;
|
|
5003
|
+
between?: {
|
|
5004
|
+
space?: number | undefined;
|
|
5005
|
+
size: number;
|
|
5006
|
+
color: string;
|
|
5007
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
5008
|
+
} | undefined;
|
|
4513
5009
|
} | undefined;
|
|
4514
5010
|
indent?: {
|
|
4515
5011
|
left?: number | undefined;
|
|
@@ -4569,6 +5065,12 @@ export declare const modernTheme: {
|
|
|
4569
5065
|
color: string;
|
|
4570
5066
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4571
5067
|
} | undefined;
|
|
5068
|
+
between?: {
|
|
5069
|
+
space?: number | undefined;
|
|
5070
|
+
size: number;
|
|
5071
|
+
color: string;
|
|
5072
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
5073
|
+
} | undefined;
|
|
4572
5074
|
} | undefined;
|
|
4573
5075
|
indent?: {
|
|
4574
5076
|
left?: number | undefined;
|
|
@@ -4633,6 +5135,12 @@ export declare const modernTheme: {
|
|
|
4633
5135
|
color: string;
|
|
4634
5136
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4635
5137
|
} | undefined;
|
|
5138
|
+
between?: {
|
|
5139
|
+
space?: number | undefined;
|
|
5140
|
+
size: number;
|
|
5141
|
+
color: string;
|
|
5142
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
5143
|
+
} | undefined;
|
|
4636
5144
|
} | undefined;
|
|
4637
5145
|
indent?: {
|
|
4638
5146
|
left?: number | undefined;
|
|
@@ -4697,6 +5205,12 @@ export declare const modernTheme: {
|
|
|
4697
5205
|
color: string;
|
|
4698
5206
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4699
5207
|
} | undefined;
|
|
5208
|
+
between?: {
|
|
5209
|
+
space?: number | undefined;
|
|
5210
|
+
size: number;
|
|
5211
|
+
color: string;
|
|
5212
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
5213
|
+
} | undefined;
|
|
4700
5214
|
} | undefined;
|
|
4701
5215
|
indent?: {
|
|
4702
5216
|
left?: number | undefined;
|
|
@@ -4761,6 +5275,12 @@ export declare const modernTheme: {
|
|
|
4761
5275
|
color: string;
|
|
4762
5276
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4763
5277
|
} | undefined;
|
|
5278
|
+
between?: {
|
|
5279
|
+
space?: number | undefined;
|
|
5280
|
+
size: number;
|
|
5281
|
+
color: string;
|
|
5282
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
5283
|
+
} | undefined;
|
|
4764
5284
|
} | undefined;
|
|
4765
5285
|
indent?: {
|
|
4766
5286
|
left?: number | undefined;
|
|
@@ -4825,6 +5345,12 @@ export declare const modernTheme: {
|
|
|
4825
5345
|
color: string;
|
|
4826
5346
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4827
5347
|
} | undefined;
|
|
5348
|
+
between?: {
|
|
5349
|
+
space?: number | undefined;
|
|
5350
|
+
size: number;
|
|
5351
|
+
color: string;
|
|
5352
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
5353
|
+
} | undefined;
|
|
4828
5354
|
} | undefined;
|
|
4829
5355
|
indent?: {
|
|
4830
5356
|
left?: number | undefined;
|
|
@@ -4889,6 +5415,12 @@ export declare const modernTheme: {
|
|
|
4889
5415
|
color: string;
|
|
4890
5416
|
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
4891
5417
|
} | undefined;
|
|
5418
|
+
between?: {
|
|
5419
|
+
space?: number | undefined;
|
|
5420
|
+
size: number;
|
|
5421
|
+
color: string;
|
|
5422
|
+
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
5423
|
+
} | undefined;
|
|
4892
5424
|
} | undefined;
|
|
4893
5425
|
indent?: {
|
|
4894
5426
|
left?: number | undefined;
|
|
@@ -4959,6 +5491,7 @@ export declare const modernTheme: {
|
|
|
4959
5491
|
before?: number | undefined;
|
|
4960
5492
|
after?: number | undefined;
|
|
4961
5493
|
} | undefined;
|
|
5494
|
+
id?: string | undefined;
|
|
4962
5495
|
alignment?: "left" | "right" | "center" | "justify" | undefined;
|
|
4963
5496
|
keepNext?: boolean | undefined;
|
|
4964
5497
|
indent?: {
|
|
@@ -5019,13 +5552,13 @@ export declare const modernTheme: {
|
|
|
5019
5552
|
} | undefined;
|
|
5020
5553
|
lockAnchor?: boolean | undefined;
|
|
5021
5554
|
} | undefined;
|
|
5022
|
-
id?: string | undefined;
|
|
5023
5555
|
} | undefined;
|
|
5024
5556
|
image?: {
|
|
5025
5557
|
spacing?: {
|
|
5026
5558
|
before?: number | undefined;
|
|
5027
5559
|
after?: number | undefined;
|
|
5028
5560
|
} | undefined;
|
|
5561
|
+
path?: string | undefined;
|
|
5029
5562
|
width?: string | number | undefined;
|
|
5030
5563
|
height?: string | number | undefined;
|
|
5031
5564
|
alignment?: "left" | "right" | "center" | undefined;
|
|
@@ -5060,7 +5593,6 @@ export declare const modernTheme: {
|
|
|
5060
5593
|
rotation?: number | undefined;
|
|
5061
5594
|
visibility?: "hidden" | "inherit" | undefined;
|
|
5062
5595
|
} | undefined;
|
|
5063
|
-
path?: string | undefined;
|
|
5064
5596
|
base64?: string | undefined;
|
|
5065
5597
|
svg?: string | undefined;
|
|
5066
5598
|
alt?: string | undefined;
|
|
@@ -5142,6 +5674,7 @@ export declare const modernTheme: {
|
|
|
5142
5674
|
} | undefined;
|
|
5143
5675
|
text: string;
|
|
5144
5676
|
})[] | undefined;
|
|
5677
|
+
bullet?: string | undefined;
|
|
5145
5678
|
reference?: string | undefined;
|
|
5146
5679
|
levels?: {
|
|
5147
5680
|
text?: string | undefined;
|
|
@@ -5150,11 +5683,18 @@ export declare const modernTheme: {
|
|
|
5150
5683
|
left?: number | undefined;
|
|
5151
5684
|
hanging?: number | undefined;
|
|
5152
5685
|
} | undefined;
|
|
5686
|
+
font?: {
|
|
5687
|
+
size?: number | undefined;
|
|
5688
|
+
color?: string | undefined;
|
|
5689
|
+
bold?: boolean | undefined;
|
|
5690
|
+
italic?: boolean | undefined;
|
|
5691
|
+
underline?: boolean | undefined;
|
|
5692
|
+
family?: string | undefined;
|
|
5693
|
+
} | undefined;
|
|
5153
5694
|
start?: number | undefined;
|
|
5154
5695
|
format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | undefined;
|
|
5155
5696
|
level: number;
|
|
5156
5697
|
}[] | undefined;
|
|
5157
|
-
bullet?: string | undefined;
|
|
5158
5698
|
} | undefined;
|
|
5159
5699
|
} | undefined;
|
|
5160
5700
|
noProofWords?: string[] | undefined;
|