@retikz/core 0.2.0-alpha.1 → 0.2.0-alpha.2

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.
Files changed (55) hide show
  1. package/dist/es/compile/compile.d.ts.map +1 -1
  2. package/dist/es/compile/compile.js +7 -5
  3. package/dist/es/compile/node.d.ts +2 -2
  4. package/dist/es/compile/node.d.ts.map +1 -1
  5. package/dist/es/compile/node.js +7 -7
  6. package/dist/es/compile/path/index.js +1 -1
  7. package/dist/es/compile/path/label.d.ts +1 -1
  8. package/dist/es/compile/path/label.d.ts.map +1 -1
  9. package/dist/es/compile/path/label.js +17 -4
  10. package/dist/es/compile/style.d.ts +46 -0
  11. package/dist/es/compile/style.d.ts.map +1 -0
  12. package/dist/es/compile/style.js +259 -0
  13. package/dist/es/index.d.ts +2 -2
  14. package/dist/es/index.d.ts.map +1 -1
  15. package/dist/es/index.js +2 -2
  16. package/dist/es/ir/node.d.ts +5 -2
  17. package/dist/es/ir/node.d.ts.map +1 -1
  18. package/dist/es/ir/node.js +1 -0
  19. package/dist/es/ir/path/path.d.ts +531 -0
  20. package/dist/es/ir/path/path.d.ts.map +1 -1
  21. package/dist/es/ir/path/path.js +1 -0
  22. package/dist/es/ir/path/step.d.ts +834 -0
  23. package/dist/es/ir/path/step.d.ts.map +1 -1
  24. package/dist/es/ir/path/step.js +5 -1
  25. package/dist/es/ir/scope.d.ts +3503 -3
  26. package/dist/es/ir/scope.d.ts.map +1 -1
  27. package/dist/es/ir/scope.js +64 -4
  28. package/dist/lib/compile/compile.cjs +7 -5
  29. package/dist/lib/compile/compile.d.ts.map +1 -1
  30. package/dist/lib/compile/node.cjs +7 -7
  31. package/dist/lib/compile/node.d.ts +2 -2
  32. package/dist/lib/compile/node.d.ts.map +1 -1
  33. package/dist/lib/compile/path/index.cjs +1 -1
  34. package/dist/lib/compile/path/label.cjs +17 -4
  35. package/dist/lib/compile/path/label.d.ts +1 -1
  36. package/dist/lib/compile/path/label.d.ts.map +1 -1
  37. package/dist/lib/compile/style.cjs +262 -0
  38. package/dist/lib/compile/style.d.ts +46 -0
  39. package/dist/lib/compile/style.d.ts.map +1 -0
  40. package/dist/lib/index.cjs +4 -0
  41. package/dist/lib/index.d.ts +2 -2
  42. package/dist/lib/index.d.ts.map +1 -1
  43. package/dist/lib/ir/node.cjs +1 -0
  44. package/dist/lib/ir/node.d.ts +5 -2
  45. package/dist/lib/ir/node.d.ts.map +1 -1
  46. package/dist/lib/ir/path/path.cjs +1 -0
  47. package/dist/lib/ir/path/path.d.ts +531 -0
  48. package/dist/lib/ir/path/path.d.ts.map +1 -1
  49. package/dist/lib/ir/path/step.cjs +5 -1
  50. package/dist/lib/ir/path/step.d.ts +834 -0
  51. package/dist/lib/ir/path/step.d.ts.map +1 -1
  52. package/dist/lib/ir/scope.cjs +67 -3
  53. package/dist/lib/ir/scope.d.ts +3503 -3
  54. package/dist/lib/ir/scope.d.ts.map +1 -1
  55. package/package.json +1 -1
@@ -1,6 +1,7 @@
1
1
  import { z } from 'zod';
2
2
  export declare const PathSchema: z.ZodObject<{
3
3
  type: z.ZodLiteral<"path">;
4
+ color: z.ZodOptional<z.ZodString>;
4
5
  stroke: z.ZodOptional<z.ZodString>;
5
6
  strokeWidth: z.ZodOptional<z.ZodNumber>;
6
7
  dashPattern: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
@@ -238,14 +239,48 @@ export declare const PathSchema: z.ZodObject<{
238
239
  text: z.ZodString;
239
240
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
240
241
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
242
+ textColor: z.ZodOptional<z.ZodString>;
243
+ opacity: z.ZodOptional<z.ZodNumber>;
244
+ font: z.ZodOptional<z.ZodObject<{
245
+ family: z.ZodOptional<z.ZodString>;
246
+ size: z.ZodOptional<z.ZodNumber>;
247
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
248
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
249
+ }, "strip", z.ZodTypeAny, {
250
+ family?: string | undefined;
251
+ size?: number | undefined;
252
+ weight?: number | "normal" | "bold" | undefined;
253
+ style?: "normal" | "italic" | "oblique" | undefined;
254
+ }, {
255
+ family?: string | undefined;
256
+ size?: number | undefined;
257
+ weight?: number | "normal" | "bold" | undefined;
258
+ style?: "normal" | "italic" | "oblique" | undefined;
259
+ }>>;
241
260
  }, "strip", z.ZodTypeAny, {
242
261
  text: string;
262
+ opacity?: number | undefined;
263
+ font?: {
264
+ family?: string | undefined;
265
+ size?: number | undefined;
266
+ weight?: number | "normal" | "bold" | undefined;
267
+ style?: "normal" | "italic" | "oblique" | undefined;
268
+ } | undefined;
243
269
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
244
270
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
271
+ textColor?: string | undefined;
245
272
  }, {
246
273
  text: string;
274
+ opacity?: number | undefined;
275
+ font?: {
276
+ family?: string | undefined;
277
+ size?: number | undefined;
278
+ weight?: number | "normal" | "bold" | undefined;
279
+ style?: "normal" | "italic" | "oblique" | undefined;
280
+ } | undefined;
247
281
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
248
282
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
283
+ textColor?: string | undefined;
249
284
  }>>;
250
285
  }, "strip", z.ZodTypeAny, {
251
286
  type: "step";
@@ -260,8 +295,16 @@ export declare const PathSchema: z.ZodObject<{
260
295
  };
261
296
  label?: {
262
297
  text: string;
298
+ opacity?: number | undefined;
299
+ font?: {
300
+ family?: string | undefined;
301
+ size?: number | undefined;
302
+ weight?: number | "normal" | "bold" | undefined;
303
+ style?: "normal" | "italic" | "oblique" | undefined;
304
+ } | undefined;
263
305
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
264
306
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
307
+ textColor?: string | undefined;
265
308
  } | undefined;
266
309
  }, {
267
310
  type: "step";
@@ -276,8 +319,16 @@ export declare const PathSchema: z.ZodObject<{
276
319
  };
277
320
  label?: {
278
321
  text: string;
322
+ opacity?: number | undefined;
323
+ font?: {
324
+ family?: string | undefined;
325
+ size?: number | undefined;
326
+ weight?: number | "normal" | "bold" | undefined;
327
+ style?: "normal" | "italic" | "oblique" | undefined;
328
+ } | undefined;
279
329
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
280
330
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
331
+ textColor?: string | undefined;
281
332
  } | undefined;
282
333
  }>, z.ZodObject<{
283
334
  type: z.ZodLiteral<"step">;
@@ -309,14 +360,48 @@ export declare const PathSchema: z.ZodObject<{
309
360
  text: z.ZodString;
310
361
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
311
362
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
363
+ textColor: z.ZodOptional<z.ZodString>;
364
+ opacity: z.ZodOptional<z.ZodNumber>;
365
+ font: z.ZodOptional<z.ZodObject<{
366
+ family: z.ZodOptional<z.ZodString>;
367
+ size: z.ZodOptional<z.ZodNumber>;
368
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
369
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
370
+ }, "strip", z.ZodTypeAny, {
371
+ family?: string | undefined;
372
+ size?: number | undefined;
373
+ weight?: number | "normal" | "bold" | undefined;
374
+ style?: "normal" | "italic" | "oblique" | undefined;
375
+ }, {
376
+ family?: string | undefined;
377
+ size?: number | undefined;
378
+ weight?: number | "normal" | "bold" | undefined;
379
+ style?: "normal" | "italic" | "oblique" | undefined;
380
+ }>>;
312
381
  }, "strip", z.ZodTypeAny, {
313
382
  text: string;
383
+ opacity?: number | undefined;
384
+ font?: {
385
+ family?: string | undefined;
386
+ size?: number | undefined;
387
+ weight?: number | "normal" | "bold" | undefined;
388
+ style?: "normal" | "italic" | "oblique" | undefined;
389
+ } | undefined;
314
390
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
315
391
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
392
+ textColor?: string | undefined;
316
393
  }, {
317
394
  text: string;
395
+ opacity?: number | undefined;
396
+ font?: {
397
+ family?: string | undefined;
398
+ size?: number | undefined;
399
+ weight?: number | "normal" | "bold" | undefined;
400
+ style?: "normal" | "italic" | "oblique" | undefined;
401
+ } | undefined;
318
402
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
319
403
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
404
+ textColor?: string | undefined;
320
405
  }>>;
321
406
  }, "strip", z.ZodTypeAny, {
322
407
  type: "step";
@@ -332,8 +417,16 @@ export declare const PathSchema: z.ZodObject<{
332
417
  via: "-|" | "|-";
333
418
  label?: {
334
419
  text: string;
420
+ opacity?: number | undefined;
421
+ font?: {
422
+ family?: string | undefined;
423
+ size?: number | undefined;
424
+ weight?: number | "normal" | "bold" | undefined;
425
+ style?: "normal" | "italic" | "oblique" | undefined;
426
+ } | undefined;
335
427
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
336
428
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
429
+ textColor?: string | undefined;
337
430
  } | undefined;
338
431
  }, {
339
432
  type: "step";
@@ -349,8 +442,16 @@ export declare const PathSchema: z.ZodObject<{
349
442
  via: "-|" | "|-";
350
443
  label?: {
351
444
  text: string;
445
+ opacity?: number | undefined;
446
+ font?: {
447
+ family?: string | undefined;
448
+ size?: number | undefined;
449
+ weight?: number | "normal" | "bold" | undefined;
450
+ style?: "normal" | "italic" | "oblique" | undefined;
451
+ } | undefined;
352
452
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
353
453
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
454
+ textColor?: string | undefined;
354
455
  } | undefined;
355
456
  }>, z.ZodObject<{
356
457
  type: z.ZodLiteral<"step">;
@@ -391,14 +492,48 @@ export declare const PathSchema: z.ZodObject<{
391
492
  text: z.ZodString;
392
493
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
393
494
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
495
+ textColor: z.ZodOptional<z.ZodString>;
496
+ opacity: z.ZodOptional<z.ZodNumber>;
497
+ font: z.ZodOptional<z.ZodObject<{
498
+ family: z.ZodOptional<z.ZodString>;
499
+ size: z.ZodOptional<z.ZodNumber>;
500
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
501
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
502
+ }, "strip", z.ZodTypeAny, {
503
+ family?: string | undefined;
504
+ size?: number | undefined;
505
+ weight?: number | "normal" | "bold" | undefined;
506
+ style?: "normal" | "italic" | "oblique" | undefined;
507
+ }, {
508
+ family?: string | undefined;
509
+ size?: number | undefined;
510
+ weight?: number | "normal" | "bold" | undefined;
511
+ style?: "normal" | "italic" | "oblique" | undefined;
512
+ }>>;
394
513
  }, "strip", z.ZodTypeAny, {
395
514
  text: string;
515
+ opacity?: number | undefined;
516
+ font?: {
517
+ family?: string | undefined;
518
+ size?: number | undefined;
519
+ weight?: number | "normal" | "bold" | undefined;
520
+ style?: "normal" | "italic" | "oblique" | undefined;
521
+ } | undefined;
396
522
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
397
523
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
524
+ textColor?: string | undefined;
398
525
  }, {
399
526
  text: string;
527
+ opacity?: number | undefined;
528
+ font?: {
529
+ family?: string | undefined;
530
+ size?: number | undefined;
531
+ weight?: number | "normal" | "bold" | undefined;
532
+ style?: "normal" | "italic" | "oblique" | undefined;
533
+ } | undefined;
400
534
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
401
535
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
536
+ textColor?: string | undefined;
402
537
  }>>;
403
538
  }, "strip", z.ZodTypeAny, {
404
539
  type: "step";
@@ -414,8 +549,16 @@ export declare const PathSchema: z.ZodObject<{
414
549
  control: [number, number];
415
550
  label?: {
416
551
  text: string;
552
+ opacity?: number | undefined;
553
+ font?: {
554
+ family?: string | undefined;
555
+ size?: number | undefined;
556
+ weight?: number | "normal" | "bold" | undefined;
557
+ style?: "normal" | "italic" | "oblique" | undefined;
558
+ } | undefined;
417
559
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
418
560
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
561
+ textColor?: string | undefined;
419
562
  } | undefined;
420
563
  }, {
421
564
  type: "step";
@@ -431,8 +574,16 @@ export declare const PathSchema: z.ZodObject<{
431
574
  control: [number, number];
432
575
  label?: {
433
576
  text: string;
577
+ opacity?: number | undefined;
578
+ font?: {
579
+ family?: string | undefined;
580
+ size?: number | undefined;
581
+ weight?: number | "normal" | "bold" | undefined;
582
+ style?: "normal" | "italic" | "oblique" | undefined;
583
+ } | undefined;
434
584
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
435
585
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
586
+ textColor?: string | undefined;
436
587
  } | undefined;
437
588
  }>, z.ZodObject<{
438
589
  type: z.ZodLiteral<"step">;
@@ -465,14 +616,48 @@ export declare const PathSchema: z.ZodObject<{
465
616
  text: z.ZodString;
466
617
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
467
618
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
619
+ textColor: z.ZodOptional<z.ZodString>;
620
+ opacity: z.ZodOptional<z.ZodNumber>;
621
+ font: z.ZodOptional<z.ZodObject<{
622
+ family: z.ZodOptional<z.ZodString>;
623
+ size: z.ZodOptional<z.ZodNumber>;
624
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
625
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
626
+ }, "strip", z.ZodTypeAny, {
627
+ family?: string | undefined;
628
+ size?: number | undefined;
629
+ weight?: number | "normal" | "bold" | undefined;
630
+ style?: "normal" | "italic" | "oblique" | undefined;
631
+ }, {
632
+ family?: string | undefined;
633
+ size?: number | undefined;
634
+ weight?: number | "normal" | "bold" | undefined;
635
+ style?: "normal" | "italic" | "oblique" | undefined;
636
+ }>>;
468
637
  }, "strip", z.ZodTypeAny, {
469
638
  text: string;
639
+ opacity?: number | undefined;
640
+ font?: {
641
+ family?: string | undefined;
642
+ size?: number | undefined;
643
+ weight?: number | "normal" | "bold" | undefined;
644
+ style?: "normal" | "italic" | "oblique" | undefined;
645
+ } | undefined;
470
646
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
471
647
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
648
+ textColor?: string | undefined;
472
649
  }, {
473
650
  text: string;
651
+ opacity?: number | undefined;
652
+ font?: {
653
+ family?: string | undefined;
654
+ size?: number | undefined;
655
+ weight?: number | "normal" | "bold" | undefined;
656
+ style?: "normal" | "italic" | "oblique" | undefined;
657
+ } | undefined;
474
658
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
475
659
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
660
+ textColor?: string | undefined;
476
661
  }>>;
477
662
  }, "strip", z.ZodTypeAny, {
478
663
  type: "step";
@@ -489,8 +674,16 @@ export declare const PathSchema: z.ZodObject<{
489
674
  control2: [number, number];
490
675
  label?: {
491
676
  text: string;
677
+ opacity?: number | undefined;
678
+ font?: {
679
+ family?: string | undefined;
680
+ size?: number | undefined;
681
+ weight?: number | "normal" | "bold" | undefined;
682
+ style?: "normal" | "italic" | "oblique" | undefined;
683
+ } | undefined;
492
684
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
493
685
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
686
+ textColor?: string | undefined;
494
687
  } | undefined;
495
688
  }, {
496
689
  type: "step";
@@ -507,8 +700,16 @@ export declare const PathSchema: z.ZodObject<{
507
700
  control2: [number, number];
508
701
  label?: {
509
702
  text: string;
703
+ opacity?: number | undefined;
704
+ font?: {
705
+ family?: string | undefined;
706
+ size?: number | undefined;
707
+ weight?: number | "normal" | "bold" | undefined;
708
+ style?: "normal" | "italic" | "oblique" | undefined;
709
+ } | undefined;
510
710
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
511
711
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
712
+ textColor?: string | undefined;
512
713
  } | undefined;
513
714
  }>, z.ZodObject<{
514
715
  type: z.ZodLiteral<"step">;
@@ -541,14 +742,48 @@ export declare const PathSchema: z.ZodObject<{
541
742
  text: z.ZodString;
542
743
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
543
744
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
745
+ textColor: z.ZodOptional<z.ZodString>;
746
+ opacity: z.ZodOptional<z.ZodNumber>;
747
+ font: z.ZodOptional<z.ZodObject<{
748
+ family: z.ZodOptional<z.ZodString>;
749
+ size: z.ZodOptional<z.ZodNumber>;
750
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
751
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
752
+ }, "strip", z.ZodTypeAny, {
753
+ family?: string | undefined;
754
+ size?: number | undefined;
755
+ weight?: number | "normal" | "bold" | undefined;
756
+ style?: "normal" | "italic" | "oblique" | undefined;
757
+ }, {
758
+ family?: string | undefined;
759
+ size?: number | undefined;
760
+ weight?: number | "normal" | "bold" | undefined;
761
+ style?: "normal" | "italic" | "oblique" | undefined;
762
+ }>>;
544
763
  }, "strip", z.ZodTypeAny, {
545
764
  text: string;
765
+ opacity?: number | undefined;
766
+ font?: {
767
+ family?: string | undefined;
768
+ size?: number | undefined;
769
+ weight?: number | "normal" | "bold" | undefined;
770
+ style?: "normal" | "italic" | "oblique" | undefined;
771
+ } | undefined;
546
772
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
547
773
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
774
+ textColor?: string | undefined;
548
775
  }, {
549
776
  text: string;
777
+ opacity?: number | undefined;
778
+ font?: {
779
+ family?: string | undefined;
780
+ size?: number | undefined;
781
+ weight?: number | "normal" | "bold" | undefined;
782
+ style?: "normal" | "italic" | "oblique" | undefined;
783
+ } | undefined;
550
784
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
551
785
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
786
+ textColor?: string | undefined;
552
787
  }>>;
553
788
  }, "strip", z.ZodTypeAny, {
554
789
  type: "step";
@@ -564,8 +799,16 @@ export declare const PathSchema: z.ZodObject<{
564
799
  bendDirection: "left" | "right";
565
800
  label?: {
566
801
  text: string;
802
+ opacity?: number | undefined;
803
+ font?: {
804
+ family?: string | undefined;
805
+ size?: number | undefined;
806
+ weight?: number | "normal" | "bold" | undefined;
807
+ style?: "normal" | "italic" | "oblique" | undefined;
808
+ } | undefined;
567
809
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
568
810
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
811
+ textColor?: string | undefined;
569
812
  } | undefined;
570
813
  bendAngle?: number | undefined;
571
814
  }, {
@@ -582,8 +825,16 @@ export declare const PathSchema: z.ZodObject<{
582
825
  bendDirection: "left" | "right";
583
826
  label?: {
584
827
  text: string;
828
+ opacity?: number | undefined;
829
+ font?: {
830
+ family?: string | undefined;
831
+ size?: number | undefined;
832
+ weight?: number | "normal" | "bold" | undefined;
833
+ style?: "normal" | "italic" | "oblique" | undefined;
834
+ } | undefined;
585
835
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
586
836
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
837
+ textColor?: string | undefined;
587
838
  } | undefined;
588
839
  bendAngle?: number | undefined;
589
840
  }>, z.ZodObject<{
@@ -596,14 +847,48 @@ export declare const PathSchema: z.ZodObject<{
596
847
  text: z.ZodString;
597
848
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
598
849
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
850
+ textColor: z.ZodOptional<z.ZodString>;
851
+ opacity: z.ZodOptional<z.ZodNumber>;
852
+ font: z.ZodOptional<z.ZodObject<{
853
+ family: z.ZodOptional<z.ZodString>;
854
+ size: z.ZodOptional<z.ZodNumber>;
855
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
856
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
857
+ }, "strip", z.ZodTypeAny, {
858
+ family?: string | undefined;
859
+ size?: number | undefined;
860
+ weight?: number | "normal" | "bold" | undefined;
861
+ style?: "normal" | "italic" | "oblique" | undefined;
862
+ }, {
863
+ family?: string | undefined;
864
+ size?: number | undefined;
865
+ weight?: number | "normal" | "bold" | undefined;
866
+ style?: "normal" | "italic" | "oblique" | undefined;
867
+ }>>;
599
868
  }, "strip", z.ZodTypeAny, {
600
869
  text: string;
870
+ opacity?: number | undefined;
871
+ font?: {
872
+ family?: string | undefined;
873
+ size?: number | undefined;
874
+ weight?: number | "normal" | "bold" | undefined;
875
+ style?: "normal" | "italic" | "oblique" | undefined;
876
+ } | undefined;
601
877
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
602
878
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
879
+ textColor?: string | undefined;
603
880
  }, {
604
881
  text: string;
882
+ opacity?: number | undefined;
883
+ font?: {
884
+ family?: string | undefined;
885
+ size?: number | undefined;
886
+ weight?: number | "normal" | "bold" | undefined;
887
+ style?: "normal" | "italic" | "oblique" | undefined;
888
+ } | undefined;
605
889
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
606
890
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
891
+ textColor?: string | undefined;
607
892
  }>>;
608
893
  }, "strip", z.ZodTypeAny, {
609
894
  type: "step";
@@ -613,8 +898,16 @@ export declare const PathSchema: z.ZodObject<{
613
898
  endAngle: number;
614
899
  label?: {
615
900
  text: string;
901
+ opacity?: number | undefined;
902
+ font?: {
903
+ family?: string | undefined;
904
+ size?: number | undefined;
905
+ weight?: number | "normal" | "bold" | undefined;
906
+ style?: "normal" | "italic" | "oblique" | undefined;
907
+ } | undefined;
616
908
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
617
909
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
910
+ textColor?: string | undefined;
618
911
  } | undefined;
619
912
  }, {
620
913
  type: "step";
@@ -624,8 +917,16 @@ export declare const PathSchema: z.ZodObject<{
624
917
  endAngle: number;
625
918
  label?: {
626
919
  text: string;
920
+ opacity?: number | undefined;
921
+ font?: {
922
+ family?: string | undefined;
923
+ size?: number | undefined;
924
+ weight?: number | "normal" | "bold" | undefined;
925
+ style?: "normal" | "italic" | "oblique" | undefined;
926
+ } | undefined;
627
927
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
628
928
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
929
+ textColor?: string | undefined;
629
930
  } | undefined;
630
931
  }>, z.ZodObject<{
631
932
  type: z.ZodLiteral<"step">;
@@ -635,14 +936,48 @@ export declare const PathSchema: z.ZodObject<{
635
936
  text: z.ZodString;
636
937
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
637
938
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
939
+ textColor: z.ZodOptional<z.ZodString>;
940
+ opacity: z.ZodOptional<z.ZodNumber>;
941
+ font: z.ZodOptional<z.ZodObject<{
942
+ family: z.ZodOptional<z.ZodString>;
943
+ size: z.ZodOptional<z.ZodNumber>;
944
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
945
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
946
+ }, "strip", z.ZodTypeAny, {
947
+ family?: string | undefined;
948
+ size?: number | undefined;
949
+ weight?: number | "normal" | "bold" | undefined;
950
+ style?: "normal" | "italic" | "oblique" | undefined;
951
+ }, {
952
+ family?: string | undefined;
953
+ size?: number | undefined;
954
+ weight?: number | "normal" | "bold" | undefined;
955
+ style?: "normal" | "italic" | "oblique" | undefined;
956
+ }>>;
638
957
  }, "strip", z.ZodTypeAny, {
639
958
  text: string;
959
+ opacity?: number | undefined;
960
+ font?: {
961
+ family?: string | undefined;
962
+ size?: number | undefined;
963
+ weight?: number | "normal" | "bold" | undefined;
964
+ style?: "normal" | "italic" | "oblique" | undefined;
965
+ } | undefined;
640
966
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
641
967
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
968
+ textColor?: string | undefined;
642
969
  }, {
643
970
  text: string;
971
+ opacity?: number | undefined;
972
+ font?: {
973
+ family?: string | undefined;
974
+ size?: number | undefined;
975
+ weight?: number | "normal" | "bold" | undefined;
976
+ style?: "normal" | "italic" | "oblique" | undefined;
977
+ } | undefined;
644
978
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
645
979
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
980
+ textColor?: string | undefined;
646
981
  }>>;
647
982
  }, "strip", z.ZodTypeAny, {
648
983
  type: "step";
@@ -650,8 +985,16 @@ export declare const PathSchema: z.ZodObject<{
650
985
  kind: "circlePath";
651
986
  label?: {
652
987
  text: string;
988
+ opacity?: number | undefined;
989
+ font?: {
990
+ family?: string | undefined;
991
+ size?: number | undefined;
992
+ weight?: number | "normal" | "bold" | undefined;
993
+ style?: "normal" | "italic" | "oblique" | undefined;
994
+ } | undefined;
653
995
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
654
996
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
997
+ textColor?: string | undefined;
655
998
  } | undefined;
656
999
  }, {
657
1000
  type: "step";
@@ -659,8 +1002,16 @@ export declare const PathSchema: z.ZodObject<{
659
1002
  kind: "circlePath";
660
1003
  label?: {
661
1004
  text: string;
1005
+ opacity?: number | undefined;
1006
+ font?: {
1007
+ family?: string | undefined;
1008
+ size?: number | undefined;
1009
+ weight?: number | "normal" | "bold" | undefined;
1010
+ style?: "normal" | "italic" | "oblique" | undefined;
1011
+ } | undefined;
662
1012
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
663
1013
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1014
+ textColor?: string | undefined;
664
1015
  } | undefined;
665
1016
  }>, z.ZodObject<{
666
1017
  type: z.ZodLiteral<"step">;
@@ -671,14 +1022,48 @@ export declare const PathSchema: z.ZodObject<{
671
1022
  text: z.ZodString;
672
1023
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
673
1024
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
1025
+ textColor: z.ZodOptional<z.ZodString>;
1026
+ opacity: z.ZodOptional<z.ZodNumber>;
1027
+ font: z.ZodOptional<z.ZodObject<{
1028
+ family: z.ZodOptional<z.ZodString>;
1029
+ size: z.ZodOptional<z.ZodNumber>;
1030
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
1031
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
1032
+ }, "strip", z.ZodTypeAny, {
1033
+ family?: string | undefined;
1034
+ size?: number | undefined;
1035
+ weight?: number | "normal" | "bold" | undefined;
1036
+ style?: "normal" | "italic" | "oblique" | undefined;
1037
+ }, {
1038
+ family?: string | undefined;
1039
+ size?: number | undefined;
1040
+ weight?: number | "normal" | "bold" | undefined;
1041
+ style?: "normal" | "italic" | "oblique" | undefined;
1042
+ }>>;
674
1043
  }, "strip", z.ZodTypeAny, {
675
1044
  text: string;
1045
+ opacity?: number | undefined;
1046
+ font?: {
1047
+ family?: string | undefined;
1048
+ size?: number | undefined;
1049
+ weight?: number | "normal" | "bold" | undefined;
1050
+ style?: "normal" | "italic" | "oblique" | undefined;
1051
+ } | undefined;
676
1052
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
677
1053
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1054
+ textColor?: string | undefined;
678
1055
  }, {
679
1056
  text: string;
1057
+ opacity?: number | undefined;
1058
+ font?: {
1059
+ family?: string | undefined;
1060
+ size?: number | undefined;
1061
+ weight?: number | "normal" | "bold" | undefined;
1062
+ style?: "normal" | "italic" | "oblique" | undefined;
1063
+ } | undefined;
680
1064
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
681
1065
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1066
+ textColor?: string | undefined;
682
1067
  }>>;
683
1068
  }, "strip", z.ZodTypeAny, {
684
1069
  type: "step";
@@ -687,8 +1072,16 @@ export declare const PathSchema: z.ZodObject<{
687
1072
  radiusY: number;
688
1073
  label?: {
689
1074
  text: string;
1075
+ opacity?: number | undefined;
1076
+ font?: {
1077
+ family?: string | undefined;
1078
+ size?: number | undefined;
1079
+ weight?: number | "normal" | "bold" | undefined;
1080
+ style?: "normal" | "italic" | "oblique" | undefined;
1081
+ } | undefined;
690
1082
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
691
1083
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1084
+ textColor?: string | undefined;
692
1085
  } | undefined;
693
1086
  }, {
694
1087
  type: "step";
@@ -697,8 +1090,16 @@ export declare const PathSchema: z.ZodObject<{
697
1090
  radiusY: number;
698
1091
  label?: {
699
1092
  text: string;
1093
+ opacity?: number | undefined;
1094
+ font?: {
1095
+ family?: string | undefined;
1096
+ size?: number | undefined;
1097
+ weight?: number | "normal" | "bold" | undefined;
1098
+ style?: "normal" | "italic" | "oblique" | undefined;
1099
+ } | undefined;
700
1100
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
701
1101
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1102
+ textColor?: string | undefined;
702
1103
  } | undefined;
703
1104
  }>]>, "many">;
704
1105
  }, "strip", z.ZodTypeAny, {
@@ -727,8 +1128,16 @@ export declare const PathSchema: z.ZodObject<{
727
1128
  };
728
1129
  label?: {
729
1130
  text: string;
1131
+ opacity?: number | undefined;
1132
+ font?: {
1133
+ family?: string | undefined;
1134
+ size?: number | undefined;
1135
+ weight?: number | "normal" | "bold" | undefined;
1136
+ style?: "normal" | "italic" | "oblique" | undefined;
1137
+ } | undefined;
730
1138
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
731
1139
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1140
+ textColor?: string | undefined;
732
1141
  } | undefined;
733
1142
  } | {
734
1143
  type: "step";
@@ -744,8 +1153,16 @@ export declare const PathSchema: z.ZodObject<{
744
1153
  via: "-|" | "|-";
745
1154
  label?: {
746
1155
  text: string;
1156
+ opacity?: number | undefined;
1157
+ font?: {
1158
+ family?: string | undefined;
1159
+ size?: number | undefined;
1160
+ weight?: number | "normal" | "bold" | undefined;
1161
+ style?: "normal" | "italic" | "oblique" | undefined;
1162
+ } | undefined;
747
1163
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
748
1164
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1165
+ textColor?: string | undefined;
749
1166
  } | undefined;
750
1167
  } | {
751
1168
  type: "step";
@@ -764,8 +1181,16 @@ export declare const PathSchema: z.ZodObject<{
764
1181
  control: [number, number];
765
1182
  label?: {
766
1183
  text: string;
1184
+ opacity?: number | undefined;
1185
+ font?: {
1186
+ family?: string | undefined;
1187
+ size?: number | undefined;
1188
+ weight?: number | "normal" | "bold" | undefined;
1189
+ style?: "normal" | "italic" | "oblique" | undefined;
1190
+ } | undefined;
767
1191
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
768
1192
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1193
+ textColor?: string | undefined;
769
1194
  } | undefined;
770
1195
  } | {
771
1196
  type: "step";
@@ -782,8 +1207,16 @@ export declare const PathSchema: z.ZodObject<{
782
1207
  control2: [number, number];
783
1208
  label?: {
784
1209
  text: string;
1210
+ opacity?: number | undefined;
1211
+ font?: {
1212
+ family?: string | undefined;
1213
+ size?: number | undefined;
1214
+ weight?: number | "normal" | "bold" | undefined;
1215
+ style?: "normal" | "italic" | "oblique" | undefined;
1216
+ } | undefined;
785
1217
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
786
1218
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1219
+ textColor?: string | undefined;
787
1220
  } | undefined;
788
1221
  } | {
789
1222
  type: "step";
@@ -799,8 +1232,16 @@ export declare const PathSchema: z.ZodObject<{
799
1232
  bendDirection: "left" | "right";
800
1233
  label?: {
801
1234
  text: string;
1235
+ opacity?: number | undefined;
1236
+ font?: {
1237
+ family?: string | undefined;
1238
+ size?: number | undefined;
1239
+ weight?: number | "normal" | "bold" | undefined;
1240
+ style?: "normal" | "italic" | "oblique" | undefined;
1241
+ } | undefined;
802
1242
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
803
1243
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1244
+ textColor?: string | undefined;
804
1245
  } | undefined;
805
1246
  bendAngle?: number | undefined;
806
1247
  } | {
@@ -811,8 +1252,16 @@ export declare const PathSchema: z.ZodObject<{
811
1252
  endAngle: number;
812
1253
  label?: {
813
1254
  text: string;
1255
+ opacity?: number | undefined;
1256
+ font?: {
1257
+ family?: string | undefined;
1258
+ size?: number | undefined;
1259
+ weight?: number | "normal" | "bold" | undefined;
1260
+ style?: "normal" | "italic" | "oblique" | undefined;
1261
+ } | undefined;
814
1262
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
815
1263
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1264
+ textColor?: string | undefined;
816
1265
  } | undefined;
817
1266
  } | {
818
1267
  type: "step";
@@ -820,8 +1269,16 @@ export declare const PathSchema: z.ZodObject<{
820
1269
  kind: "circlePath";
821
1270
  label?: {
822
1271
  text: string;
1272
+ opacity?: number | undefined;
1273
+ font?: {
1274
+ family?: string | undefined;
1275
+ size?: number | undefined;
1276
+ weight?: number | "normal" | "bold" | undefined;
1277
+ style?: "normal" | "italic" | "oblique" | undefined;
1278
+ } | undefined;
823
1279
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
824
1280
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1281
+ textColor?: string | undefined;
825
1282
  } | undefined;
826
1283
  } | {
827
1284
  type: "step";
@@ -830,12 +1287,21 @@ export declare const PathSchema: z.ZodObject<{
830
1287
  radiusY: number;
831
1288
  label?: {
832
1289
  text: string;
1290
+ opacity?: number | undefined;
1291
+ font?: {
1292
+ family?: string | undefined;
1293
+ size?: number | undefined;
1294
+ weight?: number | "normal" | "bold" | undefined;
1295
+ style?: "normal" | "italic" | "oblique" | undefined;
1296
+ } | undefined;
833
1297
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
834
1298
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1299
+ textColor?: string | undefined;
835
1300
  } | undefined;
836
1301
  })[];
837
1302
  fill?: string | undefined;
838
1303
  opacity?: number | undefined;
1304
+ color?: string | undefined;
839
1305
  stroke?: string | undefined;
840
1306
  strokeWidth?: number | undefined;
841
1307
  dashPattern?: number[] | undefined;
@@ -902,8 +1368,16 @@ export declare const PathSchema: z.ZodObject<{
902
1368
  };
903
1369
  label?: {
904
1370
  text: string;
1371
+ opacity?: number | undefined;
1372
+ font?: {
1373
+ family?: string | undefined;
1374
+ size?: number | undefined;
1375
+ weight?: number | "normal" | "bold" | undefined;
1376
+ style?: "normal" | "italic" | "oblique" | undefined;
1377
+ } | undefined;
905
1378
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
906
1379
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1380
+ textColor?: string | undefined;
907
1381
  } | undefined;
908
1382
  } | {
909
1383
  type: "step";
@@ -919,8 +1393,16 @@ export declare const PathSchema: z.ZodObject<{
919
1393
  via: "-|" | "|-";
920
1394
  label?: {
921
1395
  text: string;
1396
+ opacity?: number | undefined;
1397
+ font?: {
1398
+ family?: string | undefined;
1399
+ size?: number | undefined;
1400
+ weight?: number | "normal" | "bold" | undefined;
1401
+ style?: "normal" | "italic" | "oblique" | undefined;
1402
+ } | undefined;
922
1403
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
923
1404
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1405
+ textColor?: string | undefined;
924
1406
  } | undefined;
925
1407
  } | {
926
1408
  type: "step";
@@ -939,8 +1421,16 @@ export declare const PathSchema: z.ZodObject<{
939
1421
  control: [number, number];
940
1422
  label?: {
941
1423
  text: string;
1424
+ opacity?: number | undefined;
1425
+ font?: {
1426
+ family?: string | undefined;
1427
+ size?: number | undefined;
1428
+ weight?: number | "normal" | "bold" | undefined;
1429
+ style?: "normal" | "italic" | "oblique" | undefined;
1430
+ } | undefined;
942
1431
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
943
1432
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1433
+ textColor?: string | undefined;
944
1434
  } | undefined;
945
1435
  } | {
946
1436
  type: "step";
@@ -957,8 +1447,16 @@ export declare const PathSchema: z.ZodObject<{
957
1447
  control2: [number, number];
958
1448
  label?: {
959
1449
  text: string;
1450
+ opacity?: number | undefined;
1451
+ font?: {
1452
+ family?: string | undefined;
1453
+ size?: number | undefined;
1454
+ weight?: number | "normal" | "bold" | undefined;
1455
+ style?: "normal" | "italic" | "oblique" | undefined;
1456
+ } | undefined;
960
1457
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
961
1458
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1459
+ textColor?: string | undefined;
962
1460
  } | undefined;
963
1461
  } | {
964
1462
  type: "step";
@@ -974,8 +1472,16 @@ export declare const PathSchema: z.ZodObject<{
974
1472
  bendDirection: "left" | "right";
975
1473
  label?: {
976
1474
  text: string;
1475
+ opacity?: number | undefined;
1476
+ font?: {
1477
+ family?: string | undefined;
1478
+ size?: number | undefined;
1479
+ weight?: number | "normal" | "bold" | undefined;
1480
+ style?: "normal" | "italic" | "oblique" | undefined;
1481
+ } | undefined;
977
1482
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
978
1483
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1484
+ textColor?: string | undefined;
979
1485
  } | undefined;
980
1486
  bendAngle?: number | undefined;
981
1487
  } | {
@@ -986,8 +1492,16 @@ export declare const PathSchema: z.ZodObject<{
986
1492
  endAngle: number;
987
1493
  label?: {
988
1494
  text: string;
1495
+ opacity?: number | undefined;
1496
+ font?: {
1497
+ family?: string | undefined;
1498
+ size?: number | undefined;
1499
+ weight?: number | "normal" | "bold" | undefined;
1500
+ style?: "normal" | "italic" | "oblique" | undefined;
1501
+ } | undefined;
989
1502
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
990
1503
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1504
+ textColor?: string | undefined;
991
1505
  } | undefined;
992
1506
  } | {
993
1507
  type: "step";
@@ -995,8 +1509,16 @@ export declare const PathSchema: z.ZodObject<{
995
1509
  kind: "circlePath";
996
1510
  label?: {
997
1511
  text: string;
1512
+ opacity?: number | undefined;
1513
+ font?: {
1514
+ family?: string | undefined;
1515
+ size?: number | undefined;
1516
+ weight?: number | "normal" | "bold" | undefined;
1517
+ style?: "normal" | "italic" | "oblique" | undefined;
1518
+ } | undefined;
998
1519
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
999
1520
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1521
+ textColor?: string | undefined;
1000
1522
  } | undefined;
1001
1523
  } | {
1002
1524
  type: "step";
@@ -1005,12 +1527,21 @@ export declare const PathSchema: z.ZodObject<{
1005
1527
  radiusY: number;
1006
1528
  label?: {
1007
1529
  text: string;
1530
+ opacity?: number | undefined;
1531
+ font?: {
1532
+ family?: string | undefined;
1533
+ size?: number | undefined;
1534
+ weight?: number | "normal" | "bold" | undefined;
1535
+ style?: "normal" | "italic" | "oblique" | undefined;
1536
+ } | undefined;
1008
1537
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
1009
1538
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1539
+ textColor?: string | undefined;
1010
1540
  } | undefined;
1011
1541
  })[];
1012
1542
  fill?: string | undefined;
1013
1543
  opacity?: number | undefined;
1544
+ color?: string | undefined;
1014
1545
  stroke?: string | undefined;
1015
1546
  strokeWidth?: number | undefined;
1016
1547
  dashPattern?: number[] | undefined;