@json-to-office/core-docx 2.3.0 → 2.5.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/highcharts.d.ts.map +1 -1
- package/dist/core/generationContext.d.ts.map +1 -1
- package/dist/index.js +653 -52
- package/dist/index.js.map +1 -1
- package/dist/ir/compiler.d.ts.map +1 -1
- package/dist/plugin/example/index.js +476 -61
- package/dist/plugin/example/index.js.map +1 -1
- package/dist/quality/facts.d.ts +56 -2
- package/dist/quality/facts.d.ts.map +1 -1
- package/dist/quality/rules.d.ts +16 -0
- package/dist/quality/rules.d.ts.map +1 -1
- package/dist/renderers/docxjs/emit.d.ts.map +1 -1
- package/dist/renderers/docxjs/index.d.ts.map +1 -1
- package/dist/renderers/office-open/index.d.ts.map +1 -1
- package/dist/styles/themeToStyles.d.ts.map +1 -1
- package/dist/styles/utils/colorUtils.d.ts +12 -1
- package/dist/styles/utils/colorUtils.d.ts.map +1 -1
- package/dist/styles/utils/styleHelpers.d.ts +2 -0
- package/dist/styles/utils/styleHelpers.d.ts.map +1 -1
- package/dist/templates/themes/index.d.ts +1896 -668
- package/dist/templates/themes/index.d.ts.map +1 -1
- package/dist/themes/defaults.d.ts +196 -181
- package/dist/themes/defaults.d.ts.map +1 -1
- package/dist/themes/design-system.d.ts +4 -0
- package/dist/themes/design-system.d.ts.map +1 -0
- package/dist/themes/overrides.d.ts +2 -1
- package/dist/themes/overrides.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/normalizeTextCase.d.ts +15 -0
- package/dist/utils/normalizeTextCase.d.ts.map +1 -0
- package/dist/utils/packageDocument.d.ts +2 -0
- package/dist/utils/packageDocument.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -135,7 +135,19 @@ export declare const DEFAULT_PAGE: {
|
|
|
135
135
|
};
|
|
136
136
|
};
|
|
137
137
|
/**
|
|
138
|
-
* Ensures theme has all required properties with defaults
|
|
138
|
+
* Ensures theme has all required properties with defaults.
|
|
139
|
+
*
|
|
140
|
+
* Backfill, never rebuild. This used to return a hand-written literal of the
|
|
141
|
+
* ten root keys it knew about, which deleted everything else the schema
|
|
142
|
+
* allows — `fontRegistry` and `noProofWords` were being dropped from every
|
|
143
|
+
* bundled theme and every `--theme-path` render. That failure is invisible by
|
|
144
|
+
* construction: the file validates, generation succeeds, and the styling is
|
|
145
|
+
* simply absent, with nothing to search for.
|
|
146
|
+
*
|
|
147
|
+
* So every level spreads what it was given first and fills in defaults after,
|
|
148
|
+
* including `fonts`, whose four roles are backfilled individually but no
|
|
149
|
+
* longer bound the set. `theme-round-trip.test.ts` walks `ThemeConfigSchema`
|
|
150
|
+
* and fails the day a new property is added here and forgotten.
|
|
139
151
|
*/
|
|
140
152
|
export declare function ensureThemeDefaults(theme: Partial<ThemeConfigJson>): ThemeConfigJson;
|
|
141
153
|
/**
|
|
@@ -145,24 +157,7 @@ export declare function isCompleteTheme(theme: unknown): theme is ThemeConfigJso
|
|
|
145
157
|
/**
|
|
146
158
|
* Safe getter for theme colors with defaults
|
|
147
159
|
*/
|
|
148
|
-
export declare function getThemeColors(theme: Partial<ThemeConfigJson>):
|
|
149
|
-
accent4?: string | undefined;
|
|
150
|
-
accent5?: string | undefined;
|
|
151
|
-
accent6?: string | undefined;
|
|
152
|
-
primary: string;
|
|
153
|
-
secondary: string;
|
|
154
|
-
accent: string;
|
|
155
|
-
text: string;
|
|
156
|
-
background: string;
|
|
157
|
-
border: string;
|
|
158
|
-
textPrimary: string;
|
|
159
|
-
textSecondary: string;
|
|
160
|
-
textMuted: string;
|
|
161
|
-
borderPrimary: string;
|
|
162
|
-
borderSecondary: string;
|
|
163
|
-
backgroundPrimary: string;
|
|
164
|
-
backgroundSecondary: string;
|
|
165
|
-
};
|
|
160
|
+
export declare function getThemeColors(theme: Partial<ThemeConfigJson>): Record<string, string | undefined>;
|
|
166
161
|
/**
|
|
167
162
|
* Safe getter for theme fonts with defaults
|
|
168
163
|
*/
|
|
@@ -171,6 +166,11 @@ export declare function getThemeFonts(theme: Partial<ThemeConfigJson>): {
|
|
|
171
166
|
family: string;
|
|
172
167
|
size: number;
|
|
173
168
|
} | {
|
|
169
|
+
spacing?: {
|
|
170
|
+
before?: number | undefined;
|
|
171
|
+
after?: number | undefined;
|
|
172
|
+
} | undefined;
|
|
173
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
174
174
|
size?: number | undefined;
|
|
175
175
|
color?: string | undefined;
|
|
176
176
|
bold?: boolean | undefined;
|
|
@@ -181,10 +181,6 @@ export declare function getThemeFonts(theme: Partial<ThemeConfigJson>): {
|
|
|
181
181
|
value?: number | undefined;
|
|
182
182
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
183
183
|
} | undefined;
|
|
184
|
-
spacing?: {
|
|
185
|
-
before?: number | undefined;
|
|
186
|
-
after?: number | undefined;
|
|
187
|
-
} | undefined;
|
|
188
184
|
characterSpacing?: {
|
|
189
185
|
type: "condensed" | "expanded";
|
|
190
186
|
value: number;
|
|
@@ -196,6 +192,11 @@ export declare function getThemeFonts(theme: Partial<ThemeConfigJson>): {
|
|
|
196
192
|
family: string;
|
|
197
193
|
size: number;
|
|
198
194
|
} | {
|
|
195
|
+
spacing?: {
|
|
196
|
+
before?: number | undefined;
|
|
197
|
+
after?: number | undefined;
|
|
198
|
+
} | undefined;
|
|
199
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
199
200
|
size?: number | undefined;
|
|
200
201
|
color?: string | undefined;
|
|
201
202
|
bold?: boolean | undefined;
|
|
@@ -206,10 +207,6 @@ export declare function getThemeFonts(theme: Partial<ThemeConfigJson>): {
|
|
|
206
207
|
value?: number | undefined;
|
|
207
208
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
208
209
|
} | undefined;
|
|
209
|
-
spacing?: {
|
|
210
|
-
before?: number | undefined;
|
|
211
|
-
after?: number | undefined;
|
|
212
|
-
} | undefined;
|
|
213
210
|
characterSpacing?: {
|
|
214
211
|
type: "condensed" | "expanded";
|
|
215
212
|
value: number;
|
|
@@ -221,6 +218,11 @@ export declare function getThemeFonts(theme: Partial<ThemeConfigJson>): {
|
|
|
221
218
|
family: string;
|
|
222
219
|
size: number;
|
|
223
220
|
} | {
|
|
221
|
+
spacing?: {
|
|
222
|
+
before?: number | undefined;
|
|
223
|
+
after?: number | undefined;
|
|
224
|
+
} | undefined;
|
|
225
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
224
226
|
size?: number | undefined;
|
|
225
227
|
color?: string | undefined;
|
|
226
228
|
bold?: boolean | undefined;
|
|
@@ -231,10 +233,6 @@ export declare function getThemeFonts(theme: Partial<ThemeConfigJson>): {
|
|
|
231
233
|
value?: number | undefined;
|
|
232
234
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
233
235
|
} | undefined;
|
|
234
|
-
spacing?: {
|
|
235
|
-
before?: number | undefined;
|
|
236
|
-
after?: number | undefined;
|
|
237
|
-
} | undefined;
|
|
238
236
|
characterSpacing?: {
|
|
239
237
|
type: "condensed" | "expanded";
|
|
240
238
|
value: number;
|
|
@@ -246,6 +244,11 @@ export declare function getThemeFonts(theme: Partial<ThemeConfigJson>): {
|
|
|
246
244
|
family: string;
|
|
247
245
|
size: number;
|
|
248
246
|
} | {
|
|
247
|
+
spacing?: {
|
|
248
|
+
before?: number | undefined;
|
|
249
|
+
after?: number | undefined;
|
|
250
|
+
} | undefined;
|
|
251
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
249
252
|
size?: number | undefined;
|
|
250
253
|
color?: string | undefined;
|
|
251
254
|
bold?: boolean | undefined;
|
|
@@ -256,10 +259,6 @@ export declare function getThemeFonts(theme: Partial<ThemeConfigJson>): {
|
|
|
256
259
|
value?: number | undefined;
|
|
257
260
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
258
261
|
} | undefined;
|
|
259
|
-
spacing?: {
|
|
260
|
-
before?: number | undefined;
|
|
261
|
-
after?: number | undefined;
|
|
262
|
-
} | undefined;
|
|
263
262
|
characterSpacing?: {
|
|
264
263
|
type: "condensed" | "expanded";
|
|
265
264
|
value: number;
|
|
@@ -285,6 +284,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
285
284
|
after: number;
|
|
286
285
|
};
|
|
287
286
|
} | {
|
|
287
|
+
spacing?: {
|
|
288
|
+
before?: number | undefined;
|
|
289
|
+
after?: number | undefined;
|
|
290
|
+
} | undefined;
|
|
291
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
288
292
|
size?: number | undefined;
|
|
289
293
|
color?: string | undefined;
|
|
290
294
|
bold?: boolean | undefined;
|
|
@@ -295,10 +299,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
295
299
|
value?: number | undefined;
|
|
296
300
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
297
301
|
} | undefined;
|
|
298
|
-
spacing?: {
|
|
299
|
-
before?: number | undefined;
|
|
300
|
-
after?: number | undefined;
|
|
301
|
-
} | undefined;
|
|
302
302
|
characterSpacing?: {
|
|
303
303
|
type: "condensed" | "expanded";
|
|
304
304
|
value: number;
|
|
@@ -317,31 +317,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
317
317
|
space?: number | undefined;
|
|
318
318
|
size: number;
|
|
319
319
|
color: string;
|
|
320
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
320
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
321
321
|
} | undefined;
|
|
322
322
|
top?: {
|
|
323
323
|
space?: number | undefined;
|
|
324
324
|
size: number;
|
|
325
325
|
color: string;
|
|
326
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
326
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
327
327
|
} | undefined;
|
|
328
328
|
bottom?: {
|
|
329
329
|
space?: number | undefined;
|
|
330
330
|
size: number;
|
|
331
331
|
color: string;
|
|
332
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
332
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
333
333
|
} | undefined;
|
|
334
334
|
right?: {
|
|
335
335
|
space?: number | undefined;
|
|
336
336
|
size: number;
|
|
337
337
|
color: string;
|
|
338
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
338
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
339
339
|
} | undefined;
|
|
340
340
|
between?: {
|
|
341
341
|
space?: number | undefined;
|
|
342
342
|
size: number;
|
|
343
343
|
color: string;
|
|
344
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
344
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
345
345
|
} | undefined;
|
|
346
346
|
} | undefined;
|
|
347
347
|
indent?: {
|
|
@@ -360,6 +360,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
360
360
|
after: number;
|
|
361
361
|
};
|
|
362
362
|
} | {
|
|
363
|
+
spacing?: {
|
|
364
|
+
before?: number | undefined;
|
|
365
|
+
after?: number | undefined;
|
|
366
|
+
} | undefined;
|
|
367
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
363
368
|
size?: number | undefined;
|
|
364
369
|
color?: string | undefined;
|
|
365
370
|
bold?: boolean | undefined;
|
|
@@ -370,10 +375,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
370
375
|
value?: number | undefined;
|
|
371
376
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
372
377
|
} | undefined;
|
|
373
|
-
spacing?: {
|
|
374
|
-
before?: number | undefined;
|
|
375
|
-
after?: number | undefined;
|
|
376
|
-
} | undefined;
|
|
377
378
|
characterSpacing?: {
|
|
378
379
|
type: "condensed" | "expanded";
|
|
379
380
|
value: number;
|
|
@@ -392,31 +393,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
392
393
|
space?: number | undefined;
|
|
393
394
|
size: number;
|
|
394
395
|
color: string;
|
|
395
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
396
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
396
397
|
} | undefined;
|
|
397
398
|
top?: {
|
|
398
399
|
space?: number | undefined;
|
|
399
400
|
size: number;
|
|
400
401
|
color: string;
|
|
401
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
402
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
402
403
|
} | undefined;
|
|
403
404
|
bottom?: {
|
|
404
405
|
space?: number | undefined;
|
|
405
406
|
size: number;
|
|
406
407
|
color: string;
|
|
407
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
408
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
408
409
|
} | undefined;
|
|
409
410
|
right?: {
|
|
410
411
|
space?: number | undefined;
|
|
411
412
|
size: number;
|
|
412
413
|
color: string;
|
|
413
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
414
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
414
415
|
} | undefined;
|
|
415
416
|
between?: {
|
|
416
417
|
space?: number | undefined;
|
|
417
418
|
size: number;
|
|
418
419
|
color: string;
|
|
419
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
420
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
420
421
|
} | undefined;
|
|
421
422
|
} | undefined;
|
|
422
423
|
indent?: {
|
|
@@ -435,6 +436,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
435
436
|
after: number;
|
|
436
437
|
};
|
|
437
438
|
} | {
|
|
439
|
+
spacing?: {
|
|
440
|
+
before?: number | undefined;
|
|
441
|
+
after?: number | undefined;
|
|
442
|
+
} | undefined;
|
|
443
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
438
444
|
size?: number | undefined;
|
|
439
445
|
color?: string | undefined;
|
|
440
446
|
bold?: boolean | undefined;
|
|
@@ -445,10 +451,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
445
451
|
value?: number | undefined;
|
|
446
452
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
447
453
|
} | undefined;
|
|
448
|
-
spacing?: {
|
|
449
|
-
before?: number | undefined;
|
|
450
|
-
after?: number | undefined;
|
|
451
|
-
} | undefined;
|
|
452
454
|
characterSpacing?: {
|
|
453
455
|
type: "condensed" | "expanded";
|
|
454
456
|
value: number;
|
|
@@ -467,31 +469,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
467
469
|
space?: number | undefined;
|
|
468
470
|
size: number;
|
|
469
471
|
color: string;
|
|
470
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
472
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
471
473
|
} | undefined;
|
|
472
474
|
top?: {
|
|
473
475
|
space?: number | undefined;
|
|
474
476
|
size: number;
|
|
475
477
|
color: string;
|
|
476
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
478
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
477
479
|
} | undefined;
|
|
478
480
|
bottom?: {
|
|
479
481
|
space?: number | undefined;
|
|
480
482
|
size: number;
|
|
481
483
|
color: string;
|
|
482
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
484
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
483
485
|
} | undefined;
|
|
484
486
|
right?: {
|
|
485
487
|
space?: number | undefined;
|
|
486
488
|
size: number;
|
|
487
489
|
color: string;
|
|
488
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
490
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
489
491
|
} | undefined;
|
|
490
492
|
between?: {
|
|
491
493
|
space?: number | undefined;
|
|
492
494
|
size: number;
|
|
493
495
|
color: string;
|
|
494
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
496
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
495
497
|
} | undefined;
|
|
496
498
|
} | undefined;
|
|
497
499
|
indent?: {
|
|
@@ -510,6 +512,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
510
512
|
after: number;
|
|
511
513
|
};
|
|
512
514
|
} | {
|
|
515
|
+
spacing?: {
|
|
516
|
+
before?: number | undefined;
|
|
517
|
+
after?: number | undefined;
|
|
518
|
+
} | undefined;
|
|
519
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
513
520
|
size?: number | undefined;
|
|
514
521
|
color?: string | undefined;
|
|
515
522
|
bold?: boolean | undefined;
|
|
@@ -520,10 +527,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
520
527
|
value?: number | undefined;
|
|
521
528
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
522
529
|
} | undefined;
|
|
523
|
-
spacing?: {
|
|
524
|
-
before?: number | undefined;
|
|
525
|
-
after?: number | undefined;
|
|
526
|
-
} | undefined;
|
|
527
530
|
characterSpacing?: {
|
|
528
531
|
type: "condensed" | "expanded";
|
|
529
532
|
value: number;
|
|
@@ -542,31 +545,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
542
545
|
space?: number | undefined;
|
|
543
546
|
size: number;
|
|
544
547
|
color: string;
|
|
545
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
548
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
546
549
|
} | undefined;
|
|
547
550
|
top?: {
|
|
548
551
|
space?: number | undefined;
|
|
549
552
|
size: number;
|
|
550
553
|
color: string;
|
|
551
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
554
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
552
555
|
} | undefined;
|
|
553
556
|
bottom?: {
|
|
554
557
|
space?: number | undefined;
|
|
555
558
|
size: number;
|
|
556
559
|
color: string;
|
|
557
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
560
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
558
561
|
} | undefined;
|
|
559
562
|
right?: {
|
|
560
563
|
space?: number | undefined;
|
|
561
564
|
size: number;
|
|
562
565
|
color: string;
|
|
563
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
566
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
564
567
|
} | undefined;
|
|
565
568
|
between?: {
|
|
566
569
|
space?: number | undefined;
|
|
567
570
|
size: number;
|
|
568
571
|
color: string;
|
|
569
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
572
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
570
573
|
} | undefined;
|
|
571
574
|
} | undefined;
|
|
572
575
|
indent?: {
|
|
@@ -585,6 +588,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
585
588
|
after: number;
|
|
586
589
|
};
|
|
587
590
|
} | {
|
|
591
|
+
spacing?: {
|
|
592
|
+
before?: number | undefined;
|
|
593
|
+
after?: number | undefined;
|
|
594
|
+
} | undefined;
|
|
595
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
588
596
|
size?: number | undefined;
|
|
589
597
|
color?: string | undefined;
|
|
590
598
|
bold?: boolean | undefined;
|
|
@@ -595,10 +603,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
595
603
|
value?: number | undefined;
|
|
596
604
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
597
605
|
} | undefined;
|
|
598
|
-
spacing?: {
|
|
599
|
-
before?: number | undefined;
|
|
600
|
-
after?: number | undefined;
|
|
601
|
-
} | undefined;
|
|
602
606
|
characterSpacing?: {
|
|
603
607
|
type: "condensed" | "expanded";
|
|
604
608
|
value: number;
|
|
@@ -617,31 +621,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
617
621
|
space?: number | undefined;
|
|
618
622
|
size: number;
|
|
619
623
|
color: string;
|
|
620
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
624
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
621
625
|
} | undefined;
|
|
622
626
|
top?: {
|
|
623
627
|
space?: number | undefined;
|
|
624
628
|
size: number;
|
|
625
629
|
color: string;
|
|
626
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
630
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
627
631
|
} | undefined;
|
|
628
632
|
bottom?: {
|
|
629
633
|
space?: number | undefined;
|
|
630
634
|
size: number;
|
|
631
635
|
color: string;
|
|
632
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
636
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
633
637
|
} | undefined;
|
|
634
638
|
right?: {
|
|
635
639
|
space?: number | undefined;
|
|
636
640
|
size: number;
|
|
637
641
|
color: string;
|
|
638
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
642
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
639
643
|
} | undefined;
|
|
640
644
|
between?: {
|
|
641
645
|
space?: number | undefined;
|
|
642
646
|
size: number;
|
|
643
647
|
color: string;
|
|
644
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
648
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
645
649
|
} | undefined;
|
|
646
650
|
} | undefined;
|
|
647
651
|
indent?: {
|
|
@@ -660,6 +664,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
660
664
|
after: number;
|
|
661
665
|
};
|
|
662
666
|
} | {
|
|
667
|
+
spacing?: {
|
|
668
|
+
before?: number | undefined;
|
|
669
|
+
after?: number | undefined;
|
|
670
|
+
} | undefined;
|
|
671
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
663
672
|
size?: number | undefined;
|
|
664
673
|
color?: string | undefined;
|
|
665
674
|
bold?: boolean | undefined;
|
|
@@ -670,10 +679,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
670
679
|
value?: number | undefined;
|
|
671
680
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
672
681
|
} | undefined;
|
|
673
|
-
spacing?: {
|
|
674
|
-
before?: number | undefined;
|
|
675
|
-
after?: number | undefined;
|
|
676
|
-
} | undefined;
|
|
677
682
|
characterSpacing?: {
|
|
678
683
|
type: "condensed" | "expanded";
|
|
679
684
|
value: number;
|
|
@@ -692,31 +697,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
692
697
|
space?: number | undefined;
|
|
693
698
|
size: number;
|
|
694
699
|
color: string;
|
|
695
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
700
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
696
701
|
} | undefined;
|
|
697
702
|
top?: {
|
|
698
703
|
space?: number | undefined;
|
|
699
704
|
size: number;
|
|
700
705
|
color: string;
|
|
701
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
706
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
702
707
|
} | undefined;
|
|
703
708
|
bottom?: {
|
|
704
709
|
space?: number | undefined;
|
|
705
710
|
size: number;
|
|
706
711
|
color: string;
|
|
707
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
712
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
708
713
|
} | undefined;
|
|
709
714
|
right?: {
|
|
710
715
|
space?: number | undefined;
|
|
711
716
|
size: number;
|
|
712
717
|
color: string;
|
|
713
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
718
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
714
719
|
} | undefined;
|
|
715
720
|
between?: {
|
|
716
721
|
space?: number | undefined;
|
|
717
722
|
size: number;
|
|
718
723
|
color: string;
|
|
719
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
724
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
720
725
|
} | undefined;
|
|
721
726
|
} | undefined;
|
|
722
727
|
indent?: {
|
|
@@ -735,6 +740,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
735
740
|
after: number;
|
|
736
741
|
};
|
|
737
742
|
} | {
|
|
743
|
+
spacing?: {
|
|
744
|
+
before?: number | undefined;
|
|
745
|
+
after?: number | undefined;
|
|
746
|
+
} | undefined;
|
|
747
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
738
748
|
size?: number | undefined;
|
|
739
749
|
color?: string | undefined;
|
|
740
750
|
bold?: boolean | undefined;
|
|
@@ -745,10 +755,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
745
755
|
value?: number | undefined;
|
|
746
756
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
747
757
|
} | undefined;
|
|
748
|
-
spacing?: {
|
|
749
|
-
before?: number | undefined;
|
|
750
|
-
after?: number | undefined;
|
|
751
|
-
} | undefined;
|
|
752
758
|
characterSpacing?: {
|
|
753
759
|
type: "condensed" | "expanded";
|
|
754
760
|
value: number;
|
|
@@ -767,31 +773,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
767
773
|
space?: number | undefined;
|
|
768
774
|
size: number;
|
|
769
775
|
color: string;
|
|
770
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
776
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
771
777
|
} | undefined;
|
|
772
778
|
top?: {
|
|
773
779
|
space?: number | undefined;
|
|
774
780
|
size: number;
|
|
775
781
|
color: string;
|
|
776
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
782
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
777
783
|
} | undefined;
|
|
778
784
|
bottom?: {
|
|
779
785
|
space?: number | undefined;
|
|
780
786
|
size: number;
|
|
781
787
|
color: string;
|
|
782
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
788
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
783
789
|
} | undefined;
|
|
784
790
|
right?: {
|
|
785
791
|
space?: number | undefined;
|
|
786
792
|
size: number;
|
|
787
793
|
color: string;
|
|
788
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
794
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
789
795
|
} | undefined;
|
|
790
796
|
between?: {
|
|
791
797
|
space?: number | undefined;
|
|
792
798
|
size: number;
|
|
793
799
|
color: string;
|
|
794
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
800
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
795
801
|
} | undefined;
|
|
796
802
|
} | undefined;
|
|
797
803
|
indent?: {
|
|
@@ -801,6 +807,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
801
807
|
font?: "body" | "heading" | "mono" | "light" | undefined;
|
|
802
808
|
};
|
|
803
809
|
title?: {
|
|
810
|
+
spacing?: {
|
|
811
|
+
before?: number | undefined;
|
|
812
|
+
after?: number | undefined;
|
|
813
|
+
} | undefined;
|
|
814
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
804
815
|
size?: number | undefined;
|
|
805
816
|
color?: string | undefined;
|
|
806
817
|
bold?: boolean | undefined;
|
|
@@ -811,10 +822,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
811
822
|
value?: number | undefined;
|
|
812
823
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
813
824
|
} | undefined;
|
|
814
|
-
spacing?: {
|
|
815
|
-
before?: number | undefined;
|
|
816
|
-
after?: number | undefined;
|
|
817
|
-
} | undefined;
|
|
818
825
|
characterSpacing?: {
|
|
819
826
|
type: "condensed" | "expanded";
|
|
820
827
|
value: number;
|
|
@@ -833,31 +840,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
833
840
|
space?: number | undefined;
|
|
834
841
|
size: number;
|
|
835
842
|
color: string;
|
|
836
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
843
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
837
844
|
} | undefined;
|
|
838
845
|
top?: {
|
|
839
846
|
space?: number | undefined;
|
|
840
847
|
size: number;
|
|
841
848
|
color: string;
|
|
842
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
849
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
843
850
|
} | undefined;
|
|
844
851
|
bottom?: {
|
|
845
852
|
space?: number | undefined;
|
|
846
853
|
size: number;
|
|
847
854
|
color: string;
|
|
848
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
855
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
849
856
|
} | undefined;
|
|
850
857
|
right?: {
|
|
851
858
|
space?: number | undefined;
|
|
852
859
|
size: number;
|
|
853
860
|
color: string;
|
|
854
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
861
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
855
862
|
} | undefined;
|
|
856
863
|
between?: {
|
|
857
864
|
space?: number | undefined;
|
|
858
865
|
size: number;
|
|
859
866
|
color: string;
|
|
860
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
867
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
861
868
|
} | undefined;
|
|
862
869
|
} | undefined;
|
|
863
870
|
indent?: {
|
|
@@ -867,6 +874,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
867
874
|
font?: "body" | "heading" | "mono" | "light" | undefined;
|
|
868
875
|
} | undefined;
|
|
869
876
|
subtitle?: {
|
|
877
|
+
spacing?: {
|
|
878
|
+
before?: number | undefined;
|
|
879
|
+
after?: number | undefined;
|
|
880
|
+
} | undefined;
|
|
881
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
870
882
|
size?: number | undefined;
|
|
871
883
|
color?: string | undefined;
|
|
872
884
|
bold?: boolean | undefined;
|
|
@@ -877,10 +889,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
877
889
|
value?: number | undefined;
|
|
878
890
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
879
891
|
} | undefined;
|
|
880
|
-
spacing?: {
|
|
881
|
-
before?: number | undefined;
|
|
882
|
-
after?: number | undefined;
|
|
883
|
-
} | undefined;
|
|
884
892
|
characterSpacing?: {
|
|
885
893
|
type: "condensed" | "expanded";
|
|
886
894
|
value: number;
|
|
@@ -899,31 +907,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
899
907
|
space?: number | undefined;
|
|
900
908
|
size: number;
|
|
901
909
|
color: string;
|
|
902
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
910
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
903
911
|
} | undefined;
|
|
904
912
|
top?: {
|
|
905
913
|
space?: number | undefined;
|
|
906
914
|
size: number;
|
|
907
915
|
color: string;
|
|
908
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
916
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
909
917
|
} | undefined;
|
|
910
918
|
bottom?: {
|
|
911
919
|
space?: number | undefined;
|
|
912
920
|
size: number;
|
|
913
921
|
color: string;
|
|
914
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
922
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
915
923
|
} | undefined;
|
|
916
924
|
right?: {
|
|
917
925
|
space?: number | undefined;
|
|
918
926
|
size: number;
|
|
919
927
|
color: string;
|
|
920
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
928
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
921
929
|
} | undefined;
|
|
922
930
|
between?: {
|
|
923
931
|
space?: number | undefined;
|
|
924
932
|
size: number;
|
|
925
933
|
color: string;
|
|
926
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
934
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
927
935
|
} | undefined;
|
|
928
936
|
} | undefined;
|
|
929
937
|
indent?: {
|
|
@@ -933,6 +941,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
933
941
|
font?: "body" | "heading" | "mono" | "light" | undefined;
|
|
934
942
|
} | undefined;
|
|
935
943
|
TOC1?: {
|
|
944
|
+
spacing?: {
|
|
945
|
+
before?: number | undefined;
|
|
946
|
+
after?: number | undefined;
|
|
947
|
+
} | undefined;
|
|
948
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
936
949
|
size?: number | undefined;
|
|
937
950
|
color?: string | undefined;
|
|
938
951
|
bold?: boolean | undefined;
|
|
@@ -943,10 +956,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
943
956
|
value?: number | undefined;
|
|
944
957
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
945
958
|
} | undefined;
|
|
946
|
-
spacing?: {
|
|
947
|
-
before?: number | undefined;
|
|
948
|
-
after?: number | undefined;
|
|
949
|
-
} | undefined;
|
|
950
959
|
characterSpacing?: {
|
|
951
960
|
type: "condensed" | "expanded";
|
|
952
961
|
value: number;
|
|
@@ -964,31 +973,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
964
973
|
space?: number | undefined;
|
|
965
974
|
size: number;
|
|
966
975
|
color: string;
|
|
967
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
976
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
968
977
|
} | undefined;
|
|
969
978
|
top?: {
|
|
970
979
|
space?: number | undefined;
|
|
971
980
|
size: number;
|
|
972
981
|
color: string;
|
|
973
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
982
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
974
983
|
} | undefined;
|
|
975
984
|
bottom?: {
|
|
976
985
|
space?: number | undefined;
|
|
977
986
|
size: number;
|
|
978
987
|
color: string;
|
|
979
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
988
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
980
989
|
} | undefined;
|
|
981
990
|
right?: {
|
|
982
991
|
space?: number | undefined;
|
|
983
992
|
size: number;
|
|
984
993
|
color: string;
|
|
985
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
994
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
986
995
|
} | undefined;
|
|
987
996
|
between?: {
|
|
988
997
|
space?: number | undefined;
|
|
989
998
|
size: number;
|
|
990
999
|
color: string;
|
|
991
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1000
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
992
1001
|
} | undefined;
|
|
993
1002
|
} | undefined;
|
|
994
1003
|
indent?: {
|
|
@@ -1003,6 +1012,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
1003
1012
|
}[] | undefined;
|
|
1004
1013
|
} | undefined;
|
|
1005
1014
|
TOC2?: {
|
|
1015
|
+
spacing?: {
|
|
1016
|
+
before?: number | undefined;
|
|
1017
|
+
after?: number | undefined;
|
|
1018
|
+
} | undefined;
|
|
1019
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
1006
1020
|
size?: number | undefined;
|
|
1007
1021
|
color?: string | undefined;
|
|
1008
1022
|
bold?: boolean | undefined;
|
|
@@ -1013,10 +1027,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
1013
1027
|
value?: number | undefined;
|
|
1014
1028
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
1015
1029
|
} | undefined;
|
|
1016
|
-
spacing?: {
|
|
1017
|
-
before?: number | undefined;
|
|
1018
|
-
after?: number | undefined;
|
|
1019
|
-
} | undefined;
|
|
1020
1030
|
characterSpacing?: {
|
|
1021
1031
|
type: "condensed" | "expanded";
|
|
1022
1032
|
value: number;
|
|
@@ -1034,31 +1044,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
1034
1044
|
space?: number | undefined;
|
|
1035
1045
|
size: number;
|
|
1036
1046
|
color: string;
|
|
1037
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1047
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1038
1048
|
} | undefined;
|
|
1039
1049
|
top?: {
|
|
1040
1050
|
space?: number | undefined;
|
|
1041
1051
|
size: number;
|
|
1042
1052
|
color: string;
|
|
1043
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1053
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1044
1054
|
} | undefined;
|
|
1045
1055
|
bottom?: {
|
|
1046
1056
|
space?: number | undefined;
|
|
1047
1057
|
size: number;
|
|
1048
1058
|
color: string;
|
|
1049
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1059
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1050
1060
|
} | undefined;
|
|
1051
1061
|
right?: {
|
|
1052
1062
|
space?: number | undefined;
|
|
1053
1063
|
size: number;
|
|
1054
1064
|
color: string;
|
|
1055
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1065
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1056
1066
|
} | undefined;
|
|
1057
1067
|
between?: {
|
|
1058
1068
|
space?: number | undefined;
|
|
1059
1069
|
size: number;
|
|
1060
1070
|
color: string;
|
|
1061
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1071
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1062
1072
|
} | undefined;
|
|
1063
1073
|
} | undefined;
|
|
1064
1074
|
indent?: {
|
|
@@ -1073,6 +1083,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
1073
1083
|
}[] | undefined;
|
|
1074
1084
|
} | undefined;
|
|
1075
1085
|
TOC3?: {
|
|
1086
|
+
spacing?: {
|
|
1087
|
+
before?: number | undefined;
|
|
1088
|
+
after?: number | undefined;
|
|
1089
|
+
} | undefined;
|
|
1090
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
1076
1091
|
size?: number | undefined;
|
|
1077
1092
|
color?: string | undefined;
|
|
1078
1093
|
bold?: boolean | undefined;
|
|
@@ -1083,10 +1098,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
1083
1098
|
value?: number | undefined;
|
|
1084
1099
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
1085
1100
|
} | undefined;
|
|
1086
|
-
spacing?: {
|
|
1087
|
-
before?: number | undefined;
|
|
1088
|
-
after?: number | undefined;
|
|
1089
|
-
} | undefined;
|
|
1090
1101
|
characterSpacing?: {
|
|
1091
1102
|
type: "condensed" | "expanded";
|
|
1092
1103
|
value: number;
|
|
@@ -1104,31 +1115,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
1104
1115
|
space?: number | undefined;
|
|
1105
1116
|
size: number;
|
|
1106
1117
|
color: string;
|
|
1107
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1118
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1108
1119
|
} | undefined;
|
|
1109
1120
|
top?: {
|
|
1110
1121
|
space?: number | undefined;
|
|
1111
1122
|
size: number;
|
|
1112
1123
|
color: string;
|
|
1113
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1124
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1114
1125
|
} | undefined;
|
|
1115
1126
|
bottom?: {
|
|
1116
1127
|
space?: number | undefined;
|
|
1117
1128
|
size: number;
|
|
1118
1129
|
color: string;
|
|
1119
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1130
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1120
1131
|
} | undefined;
|
|
1121
1132
|
right?: {
|
|
1122
1133
|
space?: number | undefined;
|
|
1123
1134
|
size: number;
|
|
1124
1135
|
color: string;
|
|
1125
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1136
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1126
1137
|
} | undefined;
|
|
1127
1138
|
between?: {
|
|
1128
1139
|
space?: number | undefined;
|
|
1129
1140
|
size: number;
|
|
1130
1141
|
color: string;
|
|
1131
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1142
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1132
1143
|
} | undefined;
|
|
1133
1144
|
} | undefined;
|
|
1134
1145
|
indent?: {
|
|
@@ -1143,6 +1154,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
1143
1154
|
}[] | undefined;
|
|
1144
1155
|
} | undefined;
|
|
1145
1156
|
TOC4?: {
|
|
1157
|
+
spacing?: {
|
|
1158
|
+
before?: number | undefined;
|
|
1159
|
+
after?: number | undefined;
|
|
1160
|
+
} | undefined;
|
|
1161
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
1146
1162
|
size?: number | undefined;
|
|
1147
1163
|
color?: string | undefined;
|
|
1148
1164
|
bold?: boolean | undefined;
|
|
@@ -1153,10 +1169,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
1153
1169
|
value?: number | undefined;
|
|
1154
1170
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
1155
1171
|
} | undefined;
|
|
1156
|
-
spacing?: {
|
|
1157
|
-
before?: number | undefined;
|
|
1158
|
-
after?: number | undefined;
|
|
1159
|
-
} | undefined;
|
|
1160
1172
|
characterSpacing?: {
|
|
1161
1173
|
type: "condensed" | "expanded";
|
|
1162
1174
|
value: number;
|
|
@@ -1174,31 +1186,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
1174
1186
|
space?: number | undefined;
|
|
1175
1187
|
size: number;
|
|
1176
1188
|
color: string;
|
|
1177
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1189
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1178
1190
|
} | undefined;
|
|
1179
1191
|
top?: {
|
|
1180
1192
|
space?: number | undefined;
|
|
1181
1193
|
size: number;
|
|
1182
1194
|
color: string;
|
|
1183
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1195
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1184
1196
|
} | undefined;
|
|
1185
1197
|
bottom?: {
|
|
1186
1198
|
space?: number | undefined;
|
|
1187
1199
|
size: number;
|
|
1188
1200
|
color: string;
|
|
1189
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1201
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1190
1202
|
} | undefined;
|
|
1191
1203
|
right?: {
|
|
1192
1204
|
space?: number | undefined;
|
|
1193
1205
|
size: number;
|
|
1194
1206
|
color: string;
|
|
1195
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1207
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1196
1208
|
} | undefined;
|
|
1197
1209
|
between?: {
|
|
1198
1210
|
space?: number | undefined;
|
|
1199
1211
|
size: number;
|
|
1200
1212
|
color: string;
|
|
1201
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1213
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1202
1214
|
} | undefined;
|
|
1203
1215
|
} | undefined;
|
|
1204
1216
|
indent?: {
|
|
@@ -1213,6 +1225,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
1213
1225
|
}[] | undefined;
|
|
1214
1226
|
} | undefined;
|
|
1215
1227
|
TOC5?: {
|
|
1228
|
+
spacing?: {
|
|
1229
|
+
before?: number | undefined;
|
|
1230
|
+
after?: number | undefined;
|
|
1231
|
+
} | undefined;
|
|
1232
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
1216
1233
|
size?: number | undefined;
|
|
1217
1234
|
color?: string | undefined;
|
|
1218
1235
|
bold?: boolean | undefined;
|
|
@@ -1223,10 +1240,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
1223
1240
|
value?: number | undefined;
|
|
1224
1241
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
1225
1242
|
} | undefined;
|
|
1226
|
-
spacing?: {
|
|
1227
|
-
before?: number | undefined;
|
|
1228
|
-
after?: number | undefined;
|
|
1229
|
-
} | undefined;
|
|
1230
1243
|
characterSpacing?: {
|
|
1231
1244
|
type: "condensed" | "expanded";
|
|
1232
1245
|
value: number;
|
|
@@ -1244,31 +1257,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
1244
1257
|
space?: number | undefined;
|
|
1245
1258
|
size: number;
|
|
1246
1259
|
color: string;
|
|
1247
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1260
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1248
1261
|
} | undefined;
|
|
1249
1262
|
top?: {
|
|
1250
1263
|
space?: number | undefined;
|
|
1251
1264
|
size: number;
|
|
1252
1265
|
color: string;
|
|
1253
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1266
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1254
1267
|
} | undefined;
|
|
1255
1268
|
bottom?: {
|
|
1256
1269
|
space?: number | undefined;
|
|
1257
1270
|
size: number;
|
|
1258
1271
|
color: string;
|
|
1259
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1272
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1260
1273
|
} | undefined;
|
|
1261
1274
|
right?: {
|
|
1262
1275
|
space?: number | undefined;
|
|
1263
1276
|
size: number;
|
|
1264
1277
|
color: string;
|
|
1265
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1278
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1266
1279
|
} | undefined;
|
|
1267
1280
|
between?: {
|
|
1268
1281
|
space?: number | undefined;
|
|
1269
1282
|
size: number;
|
|
1270
1283
|
color: string;
|
|
1271
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1284
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1272
1285
|
} | undefined;
|
|
1273
1286
|
} | undefined;
|
|
1274
1287
|
indent?: {
|
|
@@ -1283,6 +1296,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
1283
1296
|
}[] | undefined;
|
|
1284
1297
|
} | undefined;
|
|
1285
1298
|
TOC6?: {
|
|
1299
|
+
spacing?: {
|
|
1300
|
+
before?: number | undefined;
|
|
1301
|
+
after?: number | undefined;
|
|
1302
|
+
} | undefined;
|
|
1303
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
1286
1304
|
size?: number | undefined;
|
|
1287
1305
|
color?: string | undefined;
|
|
1288
1306
|
bold?: boolean | undefined;
|
|
@@ -1293,10 +1311,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
1293
1311
|
value?: number | undefined;
|
|
1294
1312
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
1295
1313
|
} | undefined;
|
|
1296
|
-
spacing?: {
|
|
1297
|
-
before?: number | undefined;
|
|
1298
|
-
after?: number | undefined;
|
|
1299
|
-
} | undefined;
|
|
1300
1314
|
characterSpacing?: {
|
|
1301
1315
|
type: "condensed" | "expanded";
|
|
1302
1316
|
value: number;
|
|
@@ -1314,31 +1328,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
|
|
|
1314
1328
|
space?: number | undefined;
|
|
1315
1329
|
size: number;
|
|
1316
1330
|
color: string;
|
|
1317
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1331
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1318
1332
|
} | undefined;
|
|
1319
1333
|
top?: {
|
|
1320
1334
|
space?: number | undefined;
|
|
1321
1335
|
size: number;
|
|
1322
1336
|
color: string;
|
|
1323
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1337
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1324
1338
|
} | undefined;
|
|
1325
1339
|
bottom?: {
|
|
1326
1340
|
space?: number | undefined;
|
|
1327
1341
|
size: number;
|
|
1328
1342
|
color: string;
|
|
1329
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1343
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1330
1344
|
} | undefined;
|
|
1331
1345
|
right?: {
|
|
1332
1346
|
space?: number | undefined;
|
|
1333
1347
|
size: number;
|
|
1334
1348
|
color: string;
|
|
1335
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1349
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1336
1350
|
} | undefined;
|
|
1337
1351
|
between?: {
|
|
1338
1352
|
space?: number | undefined;
|
|
1339
1353
|
size: number;
|
|
1340
1354
|
color: string;
|
|
1341
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1355
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1342
1356
|
} | undefined;
|
|
1343
1357
|
} | undefined;
|
|
1344
1358
|
indent?: {
|
|
@@ -1369,6 +1383,13 @@ export declare function getNormalStyle(theme: Partial<ThemeConfigJson>): {
|
|
|
1369
1383
|
after: number;
|
|
1370
1384
|
};
|
|
1371
1385
|
} | {
|
|
1386
|
+
spacing: {
|
|
1387
|
+
after: number;
|
|
1388
|
+
} | {
|
|
1389
|
+
before?: number | undefined;
|
|
1390
|
+
after?: number | undefined;
|
|
1391
|
+
};
|
|
1392
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
1372
1393
|
size: number;
|
|
1373
1394
|
color: string;
|
|
1374
1395
|
bold?: boolean | undefined;
|
|
@@ -1379,12 +1400,6 @@ export declare function getNormalStyle(theme: Partial<ThemeConfigJson>): {
|
|
|
1379
1400
|
value?: number | undefined;
|
|
1380
1401
|
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
1381
1402
|
};
|
|
1382
|
-
spacing: {
|
|
1383
|
-
after: number;
|
|
1384
|
-
} | {
|
|
1385
|
-
before?: number | undefined;
|
|
1386
|
-
after?: number | undefined;
|
|
1387
|
-
};
|
|
1388
1403
|
characterSpacing?: {
|
|
1389
1404
|
type: "condensed" | "expanded";
|
|
1390
1405
|
value: number;
|
|
@@ -1403,31 +1418,31 @@ export declare function getNormalStyle(theme: Partial<ThemeConfigJson>): {
|
|
|
1403
1418
|
space?: number | undefined;
|
|
1404
1419
|
size: number;
|
|
1405
1420
|
color: string;
|
|
1406
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1421
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1407
1422
|
} | undefined;
|
|
1408
1423
|
top?: {
|
|
1409
1424
|
space?: number | undefined;
|
|
1410
1425
|
size: number;
|
|
1411
1426
|
color: string;
|
|
1412
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1427
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1413
1428
|
} | undefined;
|
|
1414
1429
|
bottom?: {
|
|
1415
1430
|
space?: number | undefined;
|
|
1416
1431
|
size: number;
|
|
1417
1432
|
color: string;
|
|
1418
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1433
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1419
1434
|
} | undefined;
|
|
1420
1435
|
right?: {
|
|
1421
1436
|
space?: number | undefined;
|
|
1422
1437
|
size: number;
|
|
1423
1438
|
color: string;
|
|
1424
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1439
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1425
1440
|
} | undefined;
|
|
1426
1441
|
between?: {
|
|
1427
1442
|
space?: number | undefined;
|
|
1428
1443
|
size: number;
|
|
1429
1444
|
color: string;
|
|
1430
|
-
style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "
|
|
1445
|
+
style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
|
|
1431
1446
|
} | undefined;
|
|
1432
1447
|
} | undefined;
|
|
1433
1448
|
indent?: {
|