@json-to-office/shared-docx 0.33.0 → 0.34.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/{chunk-PVZMPANS.js → chunk-436TK3T4.js} +622 -452
- package/dist/chunk-436TK3T4.js.map +1 -0
- package/dist/{chunk-LQGORQQI.js → chunk-CQHH44HX.js} +29 -23
- package/dist/chunk-CQHH44HX.js.map +1 -0
- package/dist/{chunk-QDBFYGOR.js → chunk-FG6SI4JG.js} +14 -3
- package/dist/chunk-FG6SI4JG.js.map +1 -0
- package/dist/{chunk-UNNSBEER.js → chunk-K7PV4XUA.js} +2 -2
- package/dist/chunk-K7PV4XUA.js.map +1 -0
- package/dist/{chunk-BDVZALLE.js → chunk-NJN6UT3A.js} +56 -3
- package/dist/chunk-NJN6UT3A.js.map +1 -0
- package/dist/{chunk-R5UGQRFE.js → chunk-PSVJL2G3.js} +2 -2
- package/dist/{chunk-I7HBLM3U.js → chunk-SZCMTHGI.js} +2 -2
- package/dist/{chunk-XDMC32YP.js → chunk-VRGM2FUX.js} +6 -6
- package/dist/chunk-VRGM2FUX.js.map +1 -0
- package/dist/{chunk-WAKSQXQA.js → chunk-Y2ME2XH6.js} +2 -2
- package/dist/{chunk-5QOQVYBJ.js → chunk-Z5WQPM4B.js} +3 -3
- package/dist/index.d.ts +173 -16
- package/dist/index.js +295 -16
- package/dist/index.js.map +1 -1
- package/dist/schemas/api.d.ts +6 -0
- package/dist/schemas/api.js +5 -5
- package/dist/schemas/component-defaults.d.ts +76 -29
- package/dist/schemas/component-defaults.js +3 -1
- package/dist/schemas/component-registry.js +3 -3
- package/dist/schemas/components.d.ts +354 -29
- package/dist/schemas/components.js +18 -4
- package/dist/schemas/document.js +6 -6
- package/dist/schemas/export.js +4 -4
- package/dist/schemas/generator.js +4 -4
- package/dist/schemas/theme.d.ts +298 -14
- package/dist/schemas/theme.js +2 -2
- package/dist/validation/unified/index.d.ts +192 -23
- package/dist/validation/unified/index.js +8 -6
- package/package.json +2 -2
- package/dist/chunk-BDVZALLE.js.map +0 -1
- package/dist/chunk-LQGORQQI.js.map +0 -1
- package/dist/chunk-PVZMPANS.js.map +0 -1
- package/dist/chunk-QDBFYGOR.js.map +0 -1
- package/dist/chunk-UNNSBEER.js.map +0 -1
- package/dist/chunk-XDMC32YP.js.map +0 -1
- /package/dist/{chunk-R5UGQRFE.js.map → chunk-PSVJL2G3.js.map} +0 -0
- /package/dist/{chunk-I7HBLM3U.js.map → chunk-SZCMTHGI.js.map} +0 -0
- /package/dist/{chunk-WAKSQXQA.js.map → chunk-Y2ME2XH6.js.map} +0 -0
- /package/dist/{chunk-5QOQVYBJ.js.map → chunk-Z5WQPM4B.js.map} +0 -0
package/dist/schemas/theme.d.ts
CHANGED
|
@@ -156,6 +156,12 @@ declare const StyleDefinitionsSchema: _sinclair_typebox.TObject<{
|
|
|
156
156
|
color: _sinclair_typebox.TString;
|
|
157
157
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
158
158
|
}>>;
|
|
159
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
160
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
161
|
+
size: _sinclair_typebox.TNumber;
|
|
162
|
+
color: _sinclair_typebox.TString;
|
|
163
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
164
|
+
}>>;
|
|
159
165
|
}>>;
|
|
160
166
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
161
167
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -216,6 +222,12 @@ declare const StyleDefinitionsSchema: _sinclair_typebox.TObject<{
|
|
|
216
222
|
color: _sinclair_typebox.TString;
|
|
217
223
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
218
224
|
}>>;
|
|
225
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
226
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
227
|
+
size: _sinclair_typebox.TNumber;
|
|
228
|
+
color: _sinclair_typebox.TString;
|
|
229
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
230
|
+
}>>;
|
|
219
231
|
}>>;
|
|
220
232
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
221
233
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -276,6 +288,12 @@ declare const StyleDefinitionsSchema: _sinclair_typebox.TObject<{
|
|
|
276
288
|
color: _sinclair_typebox.TString;
|
|
277
289
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
278
290
|
}>>;
|
|
291
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
292
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
293
|
+
size: _sinclair_typebox.TNumber;
|
|
294
|
+
color: _sinclair_typebox.TString;
|
|
295
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
296
|
+
}>>;
|
|
279
297
|
}>>;
|
|
280
298
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
281
299
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -336,6 +354,12 @@ declare const StyleDefinitionsSchema: _sinclair_typebox.TObject<{
|
|
|
336
354
|
color: _sinclair_typebox.TString;
|
|
337
355
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
338
356
|
}>>;
|
|
357
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
358
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
359
|
+
size: _sinclair_typebox.TNumber;
|
|
360
|
+
color: _sinclair_typebox.TString;
|
|
361
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
362
|
+
}>>;
|
|
339
363
|
}>>;
|
|
340
364
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
341
365
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -396,6 +420,12 @@ declare const StyleDefinitionsSchema: _sinclair_typebox.TObject<{
|
|
|
396
420
|
color: _sinclair_typebox.TString;
|
|
397
421
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
398
422
|
}>>;
|
|
423
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
424
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
425
|
+
size: _sinclair_typebox.TNumber;
|
|
426
|
+
color: _sinclair_typebox.TString;
|
|
427
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
428
|
+
}>>;
|
|
399
429
|
}>>;
|
|
400
430
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
401
431
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -456,6 +486,12 @@ declare const StyleDefinitionsSchema: _sinclair_typebox.TObject<{
|
|
|
456
486
|
color: _sinclair_typebox.TString;
|
|
457
487
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
458
488
|
}>>;
|
|
489
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
490
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
491
|
+
size: _sinclair_typebox.TNumber;
|
|
492
|
+
color: _sinclair_typebox.TString;
|
|
493
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
494
|
+
}>>;
|
|
459
495
|
}>>;
|
|
460
496
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
461
497
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -516,6 +552,12 @@ declare const StyleDefinitionsSchema: _sinclair_typebox.TObject<{
|
|
|
516
552
|
color: _sinclair_typebox.TString;
|
|
517
553
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
518
554
|
}>>;
|
|
555
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
556
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
557
|
+
size: _sinclair_typebox.TNumber;
|
|
558
|
+
color: _sinclair_typebox.TString;
|
|
559
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
560
|
+
}>>;
|
|
519
561
|
}>>;
|
|
520
562
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
521
563
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -576,6 +618,12 @@ declare const StyleDefinitionsSchema: _sinclair_typebox.TObject<{
|
|
|
576
618
|
color: _sinclair_typebox.TString;
|
|
577
619
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
578
620
|
}>>;
|
|
621
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
622
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
623
|
+
size: _sinclair_typebox.TNumber;
|
|
624
|
+
color: _sinclair_typebox.TString;
|
|
625
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
626
|
+
}>>;
|
|
579
627
|
}>>;
|
|
580
628
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
581
629
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -636,6 +684,12 @@ declare const StyleDefinitionsSchema: _sinclair_typebox.TObject<{
|
|
|
636
684
|
color: _sinclair_typebox.TString;
|
|
637
685
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
638
686
|
}>>;
|
|
687
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
688
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
689
|
+
size: _sinclair_typebox.TNumber;
|
|
690
|
+
color: _sinclair_typebox.TString;
|
|
691
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
692
|
+
}>>;
|
|
639
693
|
}>>;
|
|
640
694
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
641
695
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -700,6 +754,12 @@ declare const StyleDefinitionsSchema: _sinclair_typebox.TObject<{
|
|
|
700
754
|
color: _sinclair_typebox.TString;
|
|
701
755
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
702
756
|
}>>;
|
|
757
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
758
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
759
|
+
size: _sinclair_typebox.TNumber;
|
|
760
|
+
color: _sinclair_typebox.TString;
|
|
761
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
762
|
+
}>>;
|
|
703
763
|
}>>;
|
|
704
764
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
705
765
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -764,6 +824,12 @@ declare const StyleDefinitionsSchema: _sinclair_typebox.TObject<{
|
|
|
764
824
|
color: _sinclair_typebox.TString;
|
|
765
825
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
766
826
|
}>>;
|
|
827
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
828
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
829
|
+
size: _sinclair_typebox.TNumber;
|
|
830
|
+
color: _sinclair_typebox.TString;
|
|
831
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
832
|
+
}>>;
|
|
767
833
|
}>>;
|
|
768
834
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
769
835
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -828,6 +894,12 @@ declare const StyleDefinitionsSchema: _sinclair_typebox.TObject<{
|
|
|
828
894
|
color: _sinclair_typebox.TString;
|
|
829
895
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
830
896
|
}>>;
|
|
897
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
898
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
899
|
+
size: _sinclair_typebox.TNumber;
|
|
900
|
+
color: _sinclair_typebox.TString;
|
|
901
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
902
|
+
}>>;
|
|
831
903
|
}>>;
|
|
832
904
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
833
905
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -892,6 +964,12 @@ declare const StyleDefinitionsSchema: _sinclair_typebox.TObject<{
|
|
|
892
964
|
color: _sinclair_typebox.TString;
|
|
893
965
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
894
966
|
}>>;
|
|
967
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
968
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
969
|
+
size: _sinclair_typebox.TNumber;
|
|
970
|
+
color: _sinclair_typebox.TString;
|
|
971
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
972
|
+
}>>;
|
|
895
973
|
}>>;
|
|
896
974
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
897
975
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -956,6 +1034,12 @@ declare const StyleDefinitionsSchema: _sinclair_typebox.TObject<{
|
|
|
956
1034
|
color: _sinclair_typebox.TString;
|
|
957
1035
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
958
1036
|
}>>;
|
|
1037
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1038
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
1039
|
+
size: _sinclair_typebox.TNumber;
|
|
1040
|
+
color: _sinclair_typebox.TString;
|
|
1041
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1042
|
+
}>>;
|
|
959
1043
|
}>>;
|
|
960
1044
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
961
1045
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -1020,6 +1104,12 @@ declare const StyleDefinitionsSchema: _sinclair_typebox.TObject<{
|
|
|
1020
1104
|
color: _sinclair_typebox.TString;
|
|
1021
1105
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1022
1106
|
}>>;
|
|
1107
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1108
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
1109
|
+
size: _sinclair_typebox.TNumber;
|
|
1110
|
+
color: _sinclair_typebox.TString;
|
|
1111
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1112
|
+
}>>;
|
|
1023
1113
|
}>>;
|
|
1024
1114
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1025
1115
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -1085,6 +1175,12 @@ declare const HeadingDefinitionSchema: _sinclair_typebox.TObject<{
|
|
|
1085
1175
|
color: _sinclair_typebox.TString;
|
|
1086
1176
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1087
1177
|
}>>;
|
|
1178
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1179
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
1180
|
+
size: _sinclair_typebox.TNumber;
|
|
1181
|
+
color: _sinclair_typebox.TString;
|
|
1182
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1183
|
+
}>>;
|
|
1088
1184
|
}>>;
|
|
1089
1185
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1090
1186
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -1275,6 +1371,12 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
|
|
|
1275
1371
|
color: _sinclair_typebox.TString;
|
|
1276
1372
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1277
1373
|
}>>;
|
|
1374
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1375
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
1376
|
+
size: _sinclair_typebox.TNumber;
|
|
1377
|
+
color: _sinclair_typebox.TString;
|
|
1378
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1379
|
+
}>>;
|
|
1278
1380
|
}>>;
|
|
1279
1381
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1280
1382
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -1335,6 +1437,12 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
|
|
|
1335
1437
|
color: _sinclair_typebox.TString;
|
|
1336
1438
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1337
1439
|
}>>;
|
|
1440
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1441
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
1442
|
+
size: _sinclair_typebox.TNumber;
|
|
1443
|
+
color: _sinclair_typebox.TString;
|
|
1444
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1445
|
+
}>>;
|
|
1338
1446
|
}>>;
|
|
1339
1447
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1340
1448
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -1395,6 +1503,12 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
|
|
|
1395
1503
|
color: _sinclair_typebox.TString;
|
|
1396
1504
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1397
1505
|
}>>;
|
|
1506
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1507
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
1508
|
+
size: _sinclair_typebox.TNumber;
|
|
1509
|
+
color: _sinclair_typebox.TString;
|
|
1510
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1511
|
+
}>>;
|
|
1398
1512
|
}>>;
|
|
1399
1513
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1400
1514
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -1455,6 +1569,12 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
|
|
|
1455
1569
|
color: _sinclair_typebox.TString;
|
|
1456
1570
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1457
1571
|
}>>;
|
|
1572
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1573
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
1574
|
+
size: _sinclair_typebox.TNumber;
|
|
1575
|
+
color: _sinclair_typebox.TString;
|
|
1576
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1577
|
+
}>>;
|
|
1458
1578
|
}>>;
|
|
1459
1579
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1460
1580
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -1515,6 +1635,12 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
|
|
|
1515
1635
|
color: _sinclair_typebox.TString;
|
|
1516
1636
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1517
1637
|
}>>;
|
|
1638
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1639
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
1640
|
+
size: _sinclair_typebox.TNumber;
|
|
1641
|
+
color: _sinclair_typebox.TString;
|
|
1642
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1643
|
+
}>>;
|
|
1518
1644
|
}>>;
|
|
1519
1645
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1520
1646
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -1575,6 +1701,12 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
|
|
|
1575
1701
|
color: _sinclair_typebox.TString;
|
|
1576
1702
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1577
1703
|
}>>;
|
|
1704
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1705
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
1706
|
+
size: _sinclair_typebox.TNumber;
|
|
1707
|
+
color: _sinclair_typebox.TString;
|
|
1708
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1709
|
+
}>>;
|
|
1578
1710
|
}>>;
|
|
1579
1711
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1580
1712
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -1635,6 +1767,12 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
|
|
|
1635
1767
|
color: _sinclair_typebox.TString;
|
|
1636
1768
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1637
1769
|
}>>;
|
|
1770
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1771
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
1772
|
+
size: _sinclair_typebox.TNumber;
|
|
1773
|
+
color: _sinclair_typebox.TString;
|
|
1774
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1775
|
+
}>>;
|
|
1638
1776
|
}>>;
|
|
1639
1777
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1640
1778
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -1695,6 +1833,12 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
|
|
|
1695
1833
|
color: _sinclair_typebox.TString;
|
|
1696
1834
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1697
1835
|
}>>;
|
|
1836
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1837
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
1838
|
+
size: _sinclair_typebox.TNumber;
|
|
1839
|
+
color: _sinclair_typebox.TString;
|
|
1840
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1841
|
+
}>>;
|
|
1698
1842
|
}>>;
|
|
1699
1843
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1700
1844
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -1755,6 +1899,12 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
|
|
|
1755
1899
|
color: _sinclair_typebox.TString;
|
|
1756
1900
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1757
1901
|
}>>;
|
|
1902
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1903
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
1904
|
+
size: _sinclair_typebox.TNumber;
|
|
1905
|
+
color: _sinclair_typebox.TString;
|
|
1906
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1907
|
+
}>>;
|
|
1758
1908
|
}>>;
|
|
1759
1909
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1760
1910
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -1819,6 +1969,12 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
|
|
|
1819
1969
|
color: _sinclair_typebox.TString;
|
|
1820
1970
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1821
1971
|
}>>;
|
|
1972
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1973
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
1974
|
+
size: _sinclair_typebox.TNumber;
|
|
1975
|
+
color: _sinclair_typebox.TString;
|
|
1976
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1977
|
+
}>>;
|
|
1822
1978
|
}>>;
|
|
1823
1979
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1824
1980
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -1883,6 +2039,12 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
|
|
|
1883
2039
|
color: _sinclair_typebox.TString;
|
|
1884
2040
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1885
2041
|
}>>;
|
|
2042
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2043
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
2044
|
+
size: _sinclair_typebox.TNumber;
|
|
2045
|
+
color: _sinclair_typebox.TString;
|
|
2046
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2047
|
+
}>>;
|
|
1886
2048
|
}>>;
|
|
1887
2049
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1888
2050
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -1947,6 +2109,12 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
|
|
|
1947
2109
|
color: _sinclair_typebox.TString;
|
|
1948
2110
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
1949
2111
|
}>>;
|
|
2112
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2113
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
2114
|
+
size: _sinclair_typebox.TNumber;
|
|
2115
|
+
color: _sinclair_typebox.TString;
|
|
2116
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2117
|
+
}>>;
|
|
1950
2118
|
}>>;
|
|
1951
2119
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
1952
2120
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2011,6 +2179,12 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
|
|
|
2011
2179
|
color: _sinclair_typebox.TString;
|
|
2012
2180
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2013
2181
|
}>>;
|
|
2182
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2183
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
2184
|
+
size: _sinclair_typebox.TNumber;
|
|
2185
|
+
color: _sinclair_typebox.TString;
|
|
2186
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2187
|
+
}>>;
|
|
2014
2188
|
}>>;
|
|
2015
2189
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2016
2190
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2075,6 +2249,12 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
|
|
|
2075
2249
|
color: _sinclair_typebox.TString;
|
|
2076
2250
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2077
2251
|
}>>;
|
|
2252
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2253
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
2254
|
+
size: _sinclair_typebox.TNumber;
|
|
2255
|
+
color: _sinclair_typebox.TString;
|
|
2256
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2257
|
+
}>>;
|
|
2078
2258
|
}>>;
|
|
2079
2259
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2080
2260
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2139,6 +2319,12 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
|
|
|
2139
2319
|
color: _sinclair_typebox.TString;
|
|
2140
2320
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2141
2321
|
}>>;
|
|
2322
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2323
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
2324
|
+
size: _sinclair_typebox.TNumber;
|
|
2325
|
+
color: _sinclair_typebox.TString;
|
|
2326
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2327
|
+
}>>;
|
|
2142
2328
|
}>>;
|
|
2143
2329
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2144
2330
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2331,6 +2517,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2331
2517
|
color: _sinclair_typebox.TString;
|
|
2332
2518
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2333
2519
|
}>>;
|
|
2520
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2521
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
2522
|
+
size: _sinclair_typebox.TNumber;
|
|
2523
|
+
color: _sinclair_typebox.TString;
|
|
2524
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2525
|
+
}>>;
|
|
2334
2526
|
}>>;
|
|
2335
2527
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2336
2528
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2391,6 +2583,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2391
2583
|
color: _sinclair_typebox.TString;
|
|
2392
2584
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2393
2585
|
}>>;
|
|
2586
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2587
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
2588
|
+
size: _sinclair_typebox.TNumber;
|
|
2589
|
+
color: _sinclair_typebox.TString;
|
|
2590
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2591
|
+
}>>;
|
|
2394
2592
|
}>>;
|
|
2395
2593
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2396
2594
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2451,6 +2649,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2451
2649
|
color: _sinclair_typebox.TString;
|
|
2452
2650
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2453
2651
|
}>>;
|
|
2652
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2653
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
2654
|
+
size: _sinclair_typebox.TNumber;
|
|
2655
|
+
color: _sinclair_typebox.TString;
|
|
2656
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2657
|
+
}>>;
|
|
2454
2658
|
}>>;
|
|
2455
2659
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2456
2660
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2511,6 +2715,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2511
2715
|
color: _sinclair_typebox.TString;
|
|
2512
2716
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2513
2717
|
}>>;
|
|
2718
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2719
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
2720
|
+
size: _sinclair_typebox.TNumber;
|
|
2721
|
+
color: _sinclair_typebox.TString;
|
|
2722
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2723
|
+
}>>;
|
|
2514
2724
|
}>>;
|
|
2515
2725
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2516
2726
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2571,6 +2781,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2571
2781
|
color: _sinclair_typebox.TString;
|
|
2572
2782
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2573
2783
|
}>>;
|
|
2784
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2785
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
2786
|
+
size: _sinclair_typebox.TNumber;
|
|
2787
|
+
color: _sinclair_typebox.TString;
|
|
2788
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2789
|
+
}>>;
|
|
2574
2790
|
}>>;
|
|
2575
2791
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2576
2792
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2631,6 +2847,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2631
2847
|
color: _sinclair_typebox.TString;
|
|
2632
2848
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2633
2849
|
}>>;
|
|
2850
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2851
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
2852
|
+
size: _sinclair_typebox.TNumber;
|
|
2853
|
+
color: _sinclair_typebox.TString;
|
|
2854
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2855
|
+
}>>;
|
|
2634
2856
|
}>>;
|
|
2635
2857
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2636
2858
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2691,6 +2913,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2691
2913
|
color: _sinclair_typebox.TString;
|
|
2692
2914
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2693
2915
|
}>>;
|
|
2916
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2917
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
2918
|
+
size: _sinclair_typebox.TNumber;
|
|
2919
|
+
color: _sinclair_typebox.TString;
|
|
2920
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2921
|
+
}>>;
|
|
2694
2922
|
}>>;
|
|
2695
2923
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2696
2924
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2751,6 +2979,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2751
2979
|
color: _sinclair_typebox.TString;
|
|
2752
2980
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2753
2981
|
}>>;
|
|
2982
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2983
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
2984
|
+
size: _sinclair_typebox.TNumber;
|
|
2985
|
+
color: _sinclair_typebox.TString;
|
|
2986
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2987
|
+
}>>;
|
|
2754
2988
|
}>>;
|
|
2755
2989
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2756
2990
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2811,6 +3045,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2811
3045
|
color: _sinclair_typebox.TString;
|
|
2812
3046
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2813
3047
|
}>>;
|
|
3048
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3049
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
3050
|
+
size: _sinclair_typebox.TNumber;
|
|
3051
|
+
color: _sinclair_typebox.TString;
|
|
3052
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3053
|
+
}>>;
|
|
2814
3054
|
}>>;
|
|
2815
3055
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2816
3056
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2875,6 +3115,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2875
3115
|
color: _sinclair_typebox.TString;
|
|
2876
3116
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2877
3117
|
}>>;
|
|
3118
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3119
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
3120
|
+
size: _sinclair_typebox.TNumber;
|
|
3121
|
+
color: _sinclair_typebox.TString;
|
|
3122
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3123
|
+
}>>;
|
|
2878
3124
|
}>>;
|
|
2879
3125
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2880
3126
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2939,6 +3185,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2939
3185
|
color: _sinclair_typebox.TString;
|
|
2940
3186
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2941
3187
|
}>>;
|
|
3188
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3189
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
3190
|
+
size: _sinclair_typebox.TNumber;
|
|
3191
|
+
color: _sinclair_typebox.TString;
|
|
3192
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3193
|
+
}>>;
|
|
2942
3194
|
}>>;
|
|
2943
3195
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2944
3196
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -3003,6 +3255,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3003
3255
|
color: _sinclair_typebox.TString;
|
|
3004
3256
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3005
3257
|
}>>;
|
|
3258
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3259
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
3260
|
+
size: _sinclair_typebox.TNumber;
|
|
3261
|
+
color: _sinclair_typebox.TString;
|
|
3262
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3263
|
+
}>>;
|
|
3006
3264
|
}>>;
|
|
3007
3265
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3008
3266
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -3067,6 +3325,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3067
3325
|
color: _sinclair_typebox.TString;
|
|
3068
3326
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3069
3327
|
}>>;
|
|
3328
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3329
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
3330
|
+
size: _sinclair_typebox.TNumber;
|
|
3331
|
+
color: _sinclair_typebox.TString;
|
|
3332
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3333
|
+
}>>;
|
|
3070
3334
|
}>>;
|
|
3071
3335
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3072
3336
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -3131,6 +3395,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3131
3395
|
color: _sinclair_typebox.TString;
|
|
3132
3396
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3133
3397
|
}>>;
|
|
3398
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3399
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
3400
|
+
size: _sinclair_typebox.TNumber;
|
|
3401
|
+
color: _sinclair_typebox.TString;
|
|
3402
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3403
|
+
}>>;
|
|
3134
3404
|
}>>;
|
|
3135
3405
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3136
3406
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -3195,6 +3465,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3195
3465
|
color: _sinclair_typebox.TString;
|
|
3196
3466
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3197
3467
|
}>>;
|
|
3468
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3469
|
+
style: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"single">, _sinclair_typebox.TLiteral<"dashDotStroked">, _sinclair_typebox.TLiteral<"dashed">, _sinclair_typebox.TLiteral<"dashSmallGap">, _sinclair_typebox.TLiteral<"dotDash">, _sinclair_typebox.TLiteral<"dotDotDash">, _sinclair_typebox.TLiteral<"dotted">, _sinclair_typebox.TLiteral<"double">, _sinclair_typebox.TLiteral<"doubleWave">, _sinclair_typebox.TLiteral<"inset">, _sinclair_typebox.TLiteral<"nil">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"outset">, _sinclair_typebox.TLiteral<"thick">, _sinclair_typebox.TLiteral<"thickThinLargeGap">, _sinclair_typebox.TLiteral<"thickThinMediumGap">, _sinclair_typebox.TLiteral<"thickThinSmallGap">, _sinclair_typebox.TLiteral<"thinThickLargeGap">, _sinclair_typebox.TLiteral<"thinThickMediumGap">, _sinclair_typebox.TLiteral<"thinThickSmallGap">, _sinclair_typebox.TLiteral<"thinThickThinLargeGap">, _sinclair_typebox.TLiteral<"thinThickThinMediumGap">, _sinclair_typebox.TLiteral<"thinThickThinSmallGap">, _sinclair_typebox.TLiteral<"threeDEmboss">, _sinclair_typebox.TLiteral<"threeDEngrave">, _sinclair_typebox.TLiteral<"triple">, _sinclair_typebox.TLiteral<"wave">]>;
|
|
3470
|
+
size: _sinclair_typebox.TNumber;
|
|
3471
|
+
color: _sinclair_typebox.TString;
|
|
3472
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3473
|
+
}>>;
|
|
3198
3474
|
}>>;
|
|
3199
3475
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3200
3476
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -3314,6 +3590,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3314
3590
|
columnBreak: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
3315
3591
|
keepNext: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
3316
3592
|
keepLines: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
3593
|
+
id: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
3317
3594
|
themeStyle: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
3318
3595
|
boldColor: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
3319
3596
|
tabStops: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TObject<{
|
|
@@ -3339,7 +3616,6 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3339
3616
|
width: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3340
3617
|
height: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3341
3618
|
}>>;
|
|
3342
|
-
id: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
3343
3619
|
}>>;
|
|
3344
3620
|
image: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3345
3621
|
path: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
@@ -3438,6 +3714,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3438
3714
|
gap: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
3439
3715
|
}>>;
|
|
3440
3716
|
list: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3717
|
+
format: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"decimal">, _sinclair_typebox.TLiteral<"upperRoman">, _sinclair_typebox.TLiteral<"lowerRoman">, _sinclair_typebox.TLiteral<"upperLetter">, _sinclair_typebox.TLiteral<"lowerLetter">, _sinclair_typebox.TLiteral<"bullet">, _sinclair_typebox.TLiteral<"ordinal">, _sinclair_typebox.TLiteral<"cardinalText">, _sinclair_typebox.TLiteral<"ordinalText">, _sinclair_typebox.TLiteral<"hex">, _sinclair_typebox.TLiteral<"chicago">, _sinclair_typebox.TLiteral<"ideographDigital">, _sinclair_typebox.TLiteral<"japaneseCounting">, _sinclair_typebox.TLiteral<"aiueo">, _sinclair_typebox.TLiteral<"iroha">, _sinclair_typebox.TLiteral<"decimalFullWidth">, _sinclair_typebox.TLiteral<"decimalHalfWidth">, _sinclair_typebox.TLiteral<"japaneseLegal">, _sinclair_typebox.TLiteral<"japaneseDigitalTenThousand">, _sinclair_typebox.TLiteral<"decimalEnclosedCircle">, _sinclair_typebox.TLiteral<"decimalFullWidth2">, _sinclair_typebox.TLiteral<"aiueoFullWidth">, _sinclair_typebox.TLiteral<"irohaFullWidth">, _sinclair_typebox.TLiteral<"decimalZero">, _sinclair_typebox.TLiteral<"ganada">, _sinclair_typebox.TLiteral<"chosung">, _sinclair_typebox.TLiteral<"decimalEnclosedFullstop">, _sinclair_typebox.TLiteral<"decimalEnclosedParen">, _sinclair_typebox.TLiteral<"decimalEnclosedCircleChinese">, _sinclair_typebox.TLiteral<"ideographEnclosedCircle">, _sinclair_typebox.TLiteral<"ideographTraditional">, _sinclair_typebox.TLiteral<"ideographZodiac">, _sinclair_typebox.TLiteral<"ideographZodiacTraditional">, _sinclair_typebox.TLiteral<"taiwaneseCounting">, _sinclair_typebox.TLiteral<"ideographLegalTraditional">, _sinclair_typebox.TLiteral<"taiwaneseCountingThousand">, _sinclair_typebox.TLiteral<"taiwaneseDigital">, _sinclair_typebox.TLiteral<"chineseCounting">, _sinclair_typebox.TLiteral<"chineseLegalSimplified">, _sinclair_typebox.TLiteral<"chineseCountingThousand">, _sinclair_typebox.TLiteral<"koreanDigital">, _sinclair_typebox.TLiteral<"koreanCounting">, _sinclair_typebox.TLiteral<"koreanLegal">, _sinclair_typebox.TLiteral<"koreanDigital2">, _sinclair_typebox.TLiteral<"vietnameseCounting">, _sinclair_typebox.TLiteral<"russianLower">, _sinclair_typebox.TLiteral<"russianUpper">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"numberInDash">, _sinclair_typebox.TLiteral<"hebrew1">, _sinclair_typebox.TLiteral<"hebrew2">, _sinclair_typebox.TLiteral<"arabicAlpha">, _sinclair_typebox.TLiteral<"arabicAbjad">, _sinclair_typebox.TLiteral<"hindiVowels">, _sinclair_typebox.TLiteral<"hindiConsonants">, _sinclair_typebox.TLiteral<"hindiNumbers">, _sinclair_typebox.TLiteral<"hindiCounting">, _sinclair_typebox.TLiteral<"thaiLetters">, _sinclair_typebox.TLiteral<"thaiNumbers">, _sinclair_typebox.TLiteral<"thaiCounting">]>, _sinclair_typebox.TLiteral<"numbered">, _sinclair_typebox.TLiteral<"none">]>>;
|
|
3441
3718
|
items: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TUnion<[_sinclair_typebox.TString, _sinclair_typebox.TObject<{
|
|
3442
3719
|
text: _sinclair_typebox.TString;
|
|
3443
3720
|
level: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -3450,6 +3727,18 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3450
3727
|
}>>;
|
|
3451
3728
|
}>>;
|
|
3452
3729
|
}>]>>>;
|
|
3730
|
+
spacing: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3731
|
+
before: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3732
|
+
after: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3733
|
+
item: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3734
|
+
}>>;
|
|
3735
|
+
start: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3736
|
+
alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">, _sinclair_typebox.TLiteral<"justify">]>>;
|
|
3737
|
+
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TObject<{
|
|
3738
|
+
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3739
|
+
hanging: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3740
|
+
}>]>>;
|
|
3741
|
+
bullet: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
3453
3742
|
reference: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
3454
3743
|
levels: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TObject<{
|
|
3455
3744
|
level: _sinclair_typebox.TNumber;
|
|
@@ -3461,20 +3750,15 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3461
3750
|
hanging: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3462
3751
|
}>>;
|
|
3463
3752
|
start: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3753
|
+
font: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3754
|
+
family: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
3755
|
+
size: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3756
|
+
color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
3757
|
+
bold: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
3758
|
+
italic: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
3759
|
+
underline: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
3760
|
+
}>>;
|
|
3464
3761
|
}>>>;
|
|
3465
|
-
format: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"decimal">, _sinclair_typebox.TLiteral<"upperRoman">, _sinclair_typebox.TLiteral<"lowerRoman">, _sinclair_typebox.TLiteral<"upperLetter">, _sinclair_typebox.TLiteral<"lowerLetter">, _sinclair_typebox.TLiteral<"bullet">, _sinclair_typebox.TLiteral<"ordinal">, _sinclair_typebox.TLiteral<"cardinalText">, _sinclair_typebox.TLiteral<"ordinalText">, _sinclair_typebox.TLiteral<"hex">, _sinclair_typebox.TLiteral<"chicago">, _sinclair_typebox.TLiteral<"ideographDigital">, _sinclair_typebox.TLiteral<"japaneseCounting">, _sinclair_typebox.TLiteral<"aiueo">, _sinclair_typebox.TLiteral<"iroha">, _sinclair_typebox.TLiteral<"decimalFullWidth">, _sinclair_typebox.TLiteral<"decimalHalfWidth">, _sinclair_typebox.TLiteral<"japaneseLegal">, _sinclair_typebox.TLiteral<"japaneseDigitalTenThousand">, _sinclair_typebox.TLiteral<"decimalEnclosedCircle">, _sinclair_typebox.TLiteral<"decimalFullWidth2">, _sinclair_typebox.TLiteral<"aiueoFullWidth">, _sinclair_typebox.TLiteral<"irohaFullWidth">, _sinclair_typebox.TLiteral<"decimalZero">, _sinclair_typebox.TLiteral<"ganada">, _sinclair_typebox.TLiteral<"chosung">, _sinclair_typebox.TLiteral<"decimalEnclosedFullstop">, _sinclair_typebox.TLiteral<"decimalEnclosedParen">, _sinclair_typebox.TLiteral<"decimalEnclosedCircleChinese">, _sinclair_typebox.TLiteral<"ideographEnclosedCircle">, _sinclair_typebox.TLiteral<"ideographTraditional">, _sinclair_typebox.TLiteral<"ideographZodiac">, _sinclair_typebox.TLiteral<"ideographZodiacTraditional">, _sinclair_typebox.TLiteral<"taiwaneseCounting">, _sinclair_typebox.TLiteral<"ideographLegalTraditional">, _sinclair_typebox.TLiteral<"taiwaneseCountingThousand">, _sinclair_typebox.TLiteral<"taiwaneseDigital">, _sinclair_typebox.TLiteral<"chineseCounting">, _sinclair_typebox.TLiteral<"chineseLegalSimplified">, _sinclair_typebox.TLiteral<"chineseCountingThousand">, _sinclair_typebox.TLiteral<"koreanDigital">, _sinclair_typebox.TLiteral<"koreanCounting">, _sinclair_typebox.TLiteral<"koreanLegal">, _sinclair_typebox.TLiteral<"koreanDigital2">, _sinclair_typebox.TLiteral<"vietnameseCounting">, _sinclair_typebox.TLiteral<"russianLower">, _sinclair_typebox.TLiteral<"russianUpper">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"numberInDash">, _sinclair_typebox.TLiteral<"hebrew1">, _sinclair_typebox.TLiteral<"hebrew2">, _sinclair_typebox.TLiteral<"arabicAlpha">, _sinclair_typebox.TLiteral<"arabicAbjad">, _sinclair_typebox.TLiteral<"hindiVowels">, _sinclair_typebox.TLiteral<"hindiConsonants">, _sinclair_typebox.TLiteral<"hindiNumbers">, _sinclair_typebox.TLiteral<"hindiCounting">, _sinclair_typebox.TLiteral<"thaiLetters">, _sinclair_typebox.TLiteral<"thaiNumbers">, _sinclair_typebox.TLiteral<"thaiCounting">]>, _sinclair_typebox.TLiteral<"numbered">, _sinclair_typebox.TLiteral<"none">]>>;
|
|
3466
|
-
bullet: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
3467
|
-
start: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3468
|
-
spacing: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3469
|
-
before: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3470
|
-
after: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3471
|
-
item: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3472
|
-
}>>;
|
|
3473
|
-
alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">, _sinclair_typebox.TLiteral<"justify">]>>;
|
|
3474
|
-
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TObject<{
|
|
3475
|
-
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3476
|
-
hanging: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3477
|
-
}>]>>;
|
|
3478
3762
|
}>>;
|
|
3479
3763
|
}>>;
|
|
3480
3764
|
noProofWords: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TString>>;
|