@json-to-office/shared-docx 0.33.0 → 0.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-PVZMPANS.js → chunk-436TK3T4.js} +622 -452
- package/dist/chunk-436TK3T4.js.map +1 -0
- package/dist/{chunk-QDBFYGOR.js → chunk-4FOTCEYP.js} +14 -3
- package/dist/chunk-4FOTCEYP.js.map +1 -0
- package/dist/{chunk-WAKSQXQA.js → chunk-4ORMKPLQ.js} +2 -2
- package/dist/{chunk-BDVZALLE.js → chunk-7FNE5T7M.js} +56 -3
- package/dist/chunk-7FNE5T7M.js.map +1 -0
- package/dist/{chunk-R5UGQRFE.js → chunk-EKBKTVLD.js} +2 -2
- package/dist/{chunk-5QOQVYBJ.js → chunk-G5GIBBUX.js} +5 -3
- package/dist/chunk-G5GIBBUX.js.map +1 -0
- package/dist/{chunk-UNNSBEER.js → chunk-HHF5AQ7X.js} +2 -2
- package/dist/chunk-HHF5AQ7X.js.map +1 -0
- package/dist/{chunk-XDMC32YP.js → chunk-KKFRVDJH.js} +6 -6
- package/dist/chunk-KKFRVDJH.js.map +1 -0
- package/dist/{chunk-LQGORQQI.js → chunk-PQITDZWT.js} +31 -23
- package/dist/chunk-PQITDZWT.js.map +1 -0
- package/dist/{chunk-I7HBLM3U.js → chunk-UKOAOVPP.js} +2 -2
- package/dist/index.d.ts +218 -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 +430 -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 +336 -14
- package/dist/schemas/theme.js +2 -2
- package/dist/validation/unified/index.d.ts +231 -23
- package/dist/validation/unified/index.js +8 -6
- package/package.json +3 -3
- package/dist/chunk-5QOQVYBJ.js.map +0 -1
- 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-WAKSQXQA.js.map → chunk-4ORMKPLQ.js.map} +0 -0
- /package/dist/{chunk-R5UGQRFE.js.map → chunk-EKBKTVLD.js.map} +0 -0
- /package/dist/{chunk-I7HBLM3U.js.map → chunk-UKOAOVPP.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>;
|
|
@@ -2281,6 +2467,41 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2281
2467
|
family: _sinclair_typebox.TString;
|
|
2282
2468
|
}>;
|
|
2283
2469
|
}>;
|
|
2470
|
+
fontRegistry: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TObject<{
|
|
2471
|
+
id: _sinclair_typebox.TString;
|
|
2472
|
+
family: _sinclair_typebox.TString;
|
|
2473
|
+
category: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"sans">, _sinclair_typebox.TLiteral<"serif">, _sinclair_typebox.TLiteral<"mono">, _sinclair_typebox.TLiteral<"display">, _sinclair_typebox.TLiteral<"handwriting">]>>;
|
|
2474
|
+
sources: _sinclair_typebox.TArray<_sinclair_typebox.TUnion<[_sinclair_typebox.TObject<{
|
|
2475
|
+
kind: _sinclair_typebox.TLiteral<"safe">;
|
|
2476
|
+
family: _sinclair_typebox.TString;
|
|
2477
|
+
}>, _sinclair_typebox.TObject<{
|
|
2478
|
+
kind: _sinclair_typebox.TLiteral<"google">;
|
|
2479
|
+
family: _sinclair_typebox.TString;
|
|
2480
|
+
weights: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TNumber>>;
|
|
2481
|
+
italics: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
2482
|
+
}>, _sinclair_typebox.TObject<{
|
|
2483
|
+
kind: _sinclair_typebox.TLiteral<"file">;
|
|
2484
|
+
path: _sinclair_typebox.TString;
|
|
2485
|
+
weight: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2486
|
+
italic: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
2487
|
+
}>, _sinclair_typebox.TObject<{
|
|
2488
|
+
kind: _sinclair_typebox.TLiteral<"data">;
|
|
2489
|
+
data: _sinclair_typebox.TString;
|
|
2490
|
+
weight: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2491
|
+
italic: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
2492
|
+
}>, _sinclair_typebox.TObject<{
|
|
2493
|
+
kind: _sinclair_typebox.TLiteral<"url">;
|
|
2494
|
+
url: _sinclair_typebox.TString;
|
|
2495
|
+
weight: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2496
|
+
italic: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
2497
|
+
}>, _sinclair_typebox.TObject<{
|
|
2498
|
+
kind: _sinclair_typebox.TLiteral<"variable">;
|
|
2499
|
+
url: _sinclair_typebox.TString;
|
|
2500
|
+
weight: _sinclair_typebox.TNumber;
|
|
2501
|
+
italic: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
2502
|
+
axes: _sinclair_typebox.TOptional<_sinclair_typebox.TRecord<_sinclair_typebox.TString, _sinclair_typebox.TNumber>>;
|
|
2503
|
+
}>]>>;
|
|
2504
|
+
}>>>;
|
|
2284
2505
|
page: _sinclair_typebox.TObject<{
|
|
2285
2506
|
size: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"A4">, _sinclair_typebox.TLiteral<"A3">, _sinclair_typebox.TLiteral<"LETTER">, _sinclair_typebox.TLiteral<"LEGAL">, _sinclair_typebox.TObject<{
|
|
2286
2507
|
width: _sinclair_typebox.TNumber;
|
|
@@ -2331,6 +2552,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2331
2552
|
color: _sinclair_typebox.TString;
|
|
2332
2553
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2333
2554
|
}>>;
|
|
2555
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2556
|
+
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">]>;
|
|
2557
|
+
size: _sinclair_typebox.TNumber;
|
|
2558
|
+
color: _sinclair_typebox.TString;
|
|
2559
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2560
|
+
}>>;
|
|
2334
2561
|
}>>;
|
|
2335
2562
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2336
2563
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2391,6 +2618,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2391
2618
|
color: _sinclair_typebox.TString;
|
|
2392
2619
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2393
2620
|
}>>;
|
|
2621
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2622
|
+
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">]>;
|
|
2623
|
+
size: _sinclair_typebox.TNumber;
|
|
2624
|
+
color: _sinclair_typebox.TString;
|
|
2625
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2626
|
+
}>>;
|
|
2394
2627
|
}>>;
|
|
2395
2628
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2396
2629
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2451,6 +2684,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2451
2684
|
color: _sinclair_typebox.TString;
|
|
2452
2685
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2453
2686
|
}>>;
|
|
2687
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2688
|
+
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">]>;
|
|
2689
|
+
size: _sinclair_typebox.TNumber;
|
|
2690
|
+
color: _sinclair_typebox.TString;
|
|
2691
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2692
|
+
}>>;
|
|
2454
2693
|
}>>;
|
|
2455
2694
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2456
2695
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2511,6 +2750,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2511
2750
|
color: _sinclair_typebox.TString;
|
|
2512
2751
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2513
2752
|
}>>;
|
|
2753
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2754
|
+
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">]>;
|
|
2755
|
+
size: _sinclair_typebox.TNumber;
|
|
2756
|
+
color: _sinclair_typebox.TString;
|
|
2757
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2758
|
+
}>>;
|
|
2514
2759
|
}>>;
|
|
2515
2760
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2516
2761
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2571,6 +2816,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2571
2816
|
color: _sinclair_typebox.TString;
|
|
2572
2817
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2573
2818
|
}>>;
|
|
2819
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2820
|
+
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">]>;
|
|
2821
|
+
size: _sinclair_typebox.TNumber;
|
|
2822
|
+
color: _sinclair_typebox.TString;
|
|
2823
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2824
|
+
}>>;
|
|
2574
2825
|
}>>;
|
|
2575
2826
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2576
2827
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2631,6 +2882,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2631
2882
|
color: _sinclair_typebox.TString;
|
|
2632
2883
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2633
2884
|
}>>;
|
|
2885
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2886
|
+
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">]>;
|
|
2887
|
+
size: _sinclair_typebox.TNumber;
|
|
2888
|
+
color: _sinclair_typebox.TString;
|
|
2889
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2890
|
+
}>>;
|
|
2634
2891
|
}>>;
|
|
2635
2892
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2636
2893
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2691,6 +2948,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2691
2948
|
color: _sinclair_typebox.TString;
|
|
2692
2949
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2693
2950
|
}>>;
|
|
2951
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2952
|
+
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">]>;
|
|
2953
|
+
size: _sinclair_typebox.TNumber;
|
|
2954
|
+
color: _sinclair_typebox.TString;
|
|
2955
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2956
|
+
}>>;
|
|
2694
2957
|
}>>;
|
|
2695
2958
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2696
2959
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2751,6 +3014,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2751
3014
|
color: _sinclair_typebox.TString;
|
|
2752
3015
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2753
3016
|
}>>;
|
|
3017
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3018
|
+
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">]>;
|
|
3019
|
+
size: _sinclair_typebox.TNumber;
|
|
3020
|
+
color: _sinclair_typebox.TString;
|
|
3021
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3022
|
+
}>>;
|
|
2754
3023
|
}>>;
|
|
2755
3024
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2756
3025
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2811,6 +3080,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2811
3080
|
color: _sinclair_typebox.TString;
|
|
2812
3081
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2813
3082
|
}>>;
|
|
3083
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3084
|
+
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">]>;
|
|
3085
|
+
size: _sinclair_typebox.TNumber;
|
|
3086
|
+
color: _sinclair_typebox.TString;
|
|
3087
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3088
|
+
}>>;
|
|
2814
3089
|
}>>;
|
|
2815
3090
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2816
3091
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2875,6 +3150,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2875
3150
|
color: _sinclair_typebox.TString;
|
|
2876
3151
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2877
3152
|
}>>;
|
|
3153
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3154
|
+
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">]>;
|
|
3155
|
+
size: _sinclair_typebox.TNumber;
|
|
3156
|
+
color: _sinclair_typebox.TString;
|
|
3157
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3158
|
+
}>>;
|
|
2878
3159
|
}>>;
|
|
2879
3160
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2880
3161
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -2939,6 +3220,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
2939
3220
|
color: _sinclair_typebox.TString;
|
|
2940
3221
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
2941
3222
|
}>>;
|
|
3223
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3224
|
+
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">]>;
|
|
3225
|
+
size: _sinclair_typebox.TNumber;
|
|
3226
|
+
color: _sinclair_typebox.TString;
|
|
3227
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3228
|
+
}>>;
|
|
2942
3229
|
}>>;
|
|
2943
3230
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
2944
3231
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -3003,6 +3290,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3003
3290
|
color: _sinclair_typebox.TString;
|
|
3004
3291
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3005
3292
|
}>>;
|
|
3293
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3294
|
+
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">]>;
|
|
3295
|
+
size: _sinclair_typebox.TNumber;
|
|
3296
|
+
color: _sinclair_typebox.TString;
|
|
3297
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3298
|
+
}>>;
|
|
3006
3299
|
}>>;
|
|
3007
3300
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3008
3301
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -3067,6 +3360,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3067
3360
|
color: _sinclair_typebox.TString;
|
|
3068
3361
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3069
3362
|
}>>;
|
|
3363
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3364
|
+
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">]>;
|
|
3365
|
+
size: _sinclair_typebox.TNumber;
|
|
3366
|
+
color: _sinclair_typebox.TString;
|
|
3367
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3368
|
+
}>>;
|
|
3070
3369
|
}>>;
|
|
3071
3370
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3072
3371
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -3131,6 +3430,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3131
3430
|
color: _sinclair_typebox.TString;
|
|
3132
3431
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3133
3432
|
}>>;
|
|
3433
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3434
|
+
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">]>;
|
|
3435
|
+
size: _sinclair_typebox.TNumber;
|
|
3436
|
+
color: _sinclair_typebox.TString;
|
|
3437
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3438
|
+
}>>;
|
|
3134
3439
|
}>>;
|
|
3135
3440
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3136
3441
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -3195,6 +3500,12 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3195
3500
|
color: _sinclair_typebox.TString;
|
|
3196
3501
|
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3197
3502
|
}>>;
|
|
3503
|
+
between: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3504
|
+
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">]>;
|
|
3505
|
+
size: _sinclair_typebox.TNumber;
|
|
3506
|
+
color: _sinclair_typebox.TString;
|
|
3507
|
+
space: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3508
|
+
}>>;
|
|
3198
3509
|
}>>;
|
|
3199
3510
|
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3200
3511
|
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -3314,6 +3625,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3314
3625
|
columnBreak: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
3315
3626
|
keepNext: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
3316
3627
|
keepLines: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
3628
|
+
id: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
3317
3629
|
themeStyle: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
3318
3630
|
boldColor: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
3319
3631
|
tabStops: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TObject<{
|
|
@@ -3339,7 +3651,6 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3339
3651
|
width: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3340
3652
|
height: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3341
3653
|
}>>;
|
|
3342
|
-
id: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
3343
3654
|
}>>;
|
|
3344
3655
|
image: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3345
3656
|
path: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
@@ -3359,6 +3670,9 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3359
3670
|
floating: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3360
3671
|
horizontalPosition: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3361
3672
|
relative: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"character">, _sinclair_typebox.TLiteral<"column">, _sinclair_typebox.TLiteral<"margin">, _sinclair_typebox.TLiteral<"page">, _sinclair_typebox.TLiteral<"text">]>>;
|
|
3673
|
+
/**
|
|
3674
|
+
* Tab stop definition schema
|
|
3675
|
+
*/
|
|
3362
3676
|
align: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">, _sinclair_typebox.TLiteral<"inside">, _sinclair_typebox.TLiteral<"outside">]>>;
|
|
3363
3677
|
offset: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
3364
3678
|
}>>;
|
|
@@ -3438,6 +3752,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3438
3752
|
gap: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
3439
3753
|
}>>;
|
|
3440
3754
|
list: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3755
|
+
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
3756
|
items: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TUnion<[_sinclair_typebox.TString, _sinclair_typebox.TObject<{
|
|
3442
3757
|
text: _sinclair_typebox.TString;
|
|
3443
3758
|
level: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
@@ -3450,6 +3765,18 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3450
3765
|
}>>;
|
|
3451
3766
|
}>>;
|
|
3452
3767
|
}>]>>>;
|
|
3768
|
+
spacing: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3769
|
+
before: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3770
|
+
after: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3771
|
+
item: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3772
|
+
}>>;
|
|
3773
|
+
start: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3774
|
+
alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">, _sinclair_typebox.TLiteral<"justify">]>>;
|
|
3775
|
+
indent: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TObject<{
|
|
3776
|
+
left: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3777
|
+
hanging: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3778
|
+
}>]>>;
|
|
3779
|
+
bullet: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
3453
3780
|
reference: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
3454
3781
|
levels: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TObject<{
|
|
3455
3782
|
level: _sinclair_typebox.TNumber;
|
|
@@ -3461,20 +3788,15 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
3461
3788
|
hanging: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3462
3789
|
}>>;
|
|
3463
3790
|
start: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3791
|
+
font: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
3792
|
+
family: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
3793
|
+
size: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
3794
|
+
color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
3795
|
+
bold: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
3796
|
+
italic: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
3797
|
+
underline: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
3798
|
+
}>>;
|
|
3464
3799
|
}>>>;
|
|
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
3800
|
}>>;
|
|
3479
3801
|
}>>;
|
|
3480
3802
|
noProofWords: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TString>>;
|