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

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 (101) hide show
  1. package/dist/es/compile/compile.d.ts +8 -1
  2. package/dist/es/compile/compile.d.ts.map +1 -1
  3. package/dist/es/compile/compile.js +21 -6
  4. package/dist/es/compile/node.d.ts +15 -10
  5. package/dist/es/compile/node.d.ts.map +1 -1
  6. package/dist/es/compile/node.js +44 -181
  7. package/dist/es/compile/path/index.js +1 -1
  8. package/dist/es/compile/path/label.d.ts +1 -1
  9. package/dist/es/compile/path/label.d.ts.map +1 -1
  10. package/dist/es/compile/path/label.js +17 -4
  11. package/dist/es/compile/scope.d.ts.map +1 -1
  12. package/dist/es/compile/scope.js +3 -1
  13. package/dist/es/compile/style.d.ts +46 -0
  14. package/dist/es/compile/style.d.ts.map +1 -0
  15. package/dist/es/compile/style.js +259 -0
  16. package/dist/es/index.d.ts +4 -2
  17. package/dist/es/index.d.ts.map +1 -1
  18. package/dist/es/index.js +5 -3
  19. package/dist/es/ir/node.d.ts +19 -12
  20. package/dist/es/ir/node.d.ts.map +1 -1
  21. package/dist/es/ir/node.js +2 -1
  22. package/dist/es/ir/path/path.d.ts +531 -0
  23. package/dist/es/ir/path/path.d.ts.map +1 -1
  24. package/dist/es/ir/path/path.js +1 -0
  25. package/dist/es/ir/path/step.d.ts +834 -0
  26. package/dist/es/ir/path/step.d.ts.map +1 -1
  27. package/dist/es/ir/path/step.js +5 -1
  28. package/dist/es/ir/scope.d.ts +3493 -3
  29. package/dist/es/ir/scope.d.ts.map +1 -1
  30. package/dist/es/ir/scope.js +64 -4
  31. package/dist/es/shapes/_shared.d.ts +7 -0
  32. package/dist/es/shapes/_shared.d.ts.map +1 -0
  33. package/dist/es/shapes/_shared.js +11 -0
  34. package/dist/es/shapes/circle.d.ts +8 -0
  35. package/dist/es/shapes/circle.d.ts.map +1 -0
  36. package/dist/es/shapes/circle.js +33 -0
  37. package/dist/es/shapes/diamond.d.ts +8 -0
  38. package/dist/es/shapes/diamond.d.ts.map +1 -0
  39. package/dist/es/shapes/diamond.js +65 -0
  40. package/dist/es/shapes/ellipse.d.ts +8 -0
  41. package/dist/es/shapes/ellipse.d.ts.map +1 -0
  42. package/dist/es/shapes/ellipse.js +45 -0
  43. package/dist/es/shapes/index.d.ts +14 -0
  44. package/dist/es/shapes/index.d.ts.map +1 -0
  45. package/dist/es/shapes/index.js +15 -0
  46. package/dist/es/shapes/rectangle.d.ts +8 -0
  47. package/dist/es/shapes/rectangle.d.ts.map +1 -0
  48. package/dist/es/shapes/rectangle.js +40 -0
  49. package/dist/es/shapes/types.d.ts +44 -0
  50. package/dist/es/shapes/types.d.ts.map +1 -0
  51. package/dist/lib/compile/compile.cjs +23 -8
  52. package/dist/lib/compile/compile.d.ts +8 -1
  53. package/dist/lib/compile/compile.d.ts.map +1 -1
  54. package/dist/lib/compile/node.cjs +44 -181
  55. package/dist/lib/compile/node.d.ts +15 -10
  56. package/dist/lib/compile/node.d.ts.map +1 -1
  57. package/dist/lib/compile/path/index.cjs +1 -1
  58. package/dist/lib/compile/path/label.cjs +17 -4
  59. package/dist/lib/compile/path/label.d.ts +1 -1
  60. package/dist/lib/compile/path/label.d.ts.map +1 -1
  61. package/dist/lib/compile/scope.cjs +3 -1
  62. package/dist/lib/compile/scope.d.ts.map +1 -1
  63. package/dist/lib/compile/style.cjs +262 -0
  64. package/dist/lib/compile/style.d.ts +46 -0
  65. package/dist/lib/compile/style.d.ts.map +1 -0
  66. package/dist/lib/index.cjs +10 -1
  67. package/dist/lib/index.d.ts +4 -2
  68. package/dist/lib/index.d.ts.map +1 -1
  69. package/dist/lib/ir/node.cjs +2 -1
  70. package/dist/lib/ir/node.d.ts +19 -12
  71. package/dist/lib/ir/node.d.ts.map +1 -1
  72. package/dist/lib/ir/path/path.cjs +1 -0
  73. package/dist/lib/ir/path/path.d.ts +531 -0
  74. package/dist/lib/ir/path/path.d.ts.map +1 -1
  75. package/dist/lib/ir/path/step.cjs +5 -1
  76. package/dist/lib/ir/path/step.d.ts +834 -0
  77. package/dist/lib/ir/path/step.d.ts.map +1 -1
  78. package/dist/lib/ir/scope.cjs +67 -3
  79. package/dist/lib/ir/scope.d.ts +3493 -3
  80. package/dist/lib/ir/scope.d.ts.map +1 -1
  81. package/dist/lib/shapes/_shared.cjs +11 -0
  82. package/dist/lib/shapes/_shared.d.ts +7 -0
  83. package/dist/lib/shapes/_shared.d.ts.map +1 -0
  84. package/dist/lib/shapes/circle.cjs +33 -0
  85. package/dist/lib/shapes/circle.d.ts +8 -0
  86. package/dist/lib/shapes/circle.d.ts.map +1 -0
  87. package/dist/lib/shapes/diamond.cjs +65 -0
  88. package/dist/lib/shapes/diamond.d.ts +8 -0
  89. package/dist/lib/shapes/diamond.d.ts.map +1 -0
  90. package/dist/lib/shapes/ellipse.cjs +45 -0
  91. package/dist/lib/shapes/ellipse.d.ts +8 -0
  92. package/dist/lib/shapes/ellipse.d.ts.map +1 -0
  93. package/dist/lib/shapes/index.cjs +14 -0
  94. package/dist/lib/shapes/index.d.ts +14 -0
  95. package/dist/lib/shapes/index.d.ts.map +1 -0
  96. package/dist/lib/shapes/rectangle.cjs +40 -0
  97. package/dist/lib/shapes/rectangle.d.ts +8 -0
  98. package/dist/lib/shapes/rectangle.d.ts.map +1 -0
  99. package/dist/lib/shapes/types.d.ts +44 -0
  100. package/dist/lib/shapes/types.d.ts.map +1 -0
  101. package/package.json +1 -1
@@ -7,14 +7,48 @@ export declare const StepLabelSchema: z.ZodObject<{
7
7
  text: z.ZodString;
8
8
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
9
9
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
10
+ textColor: z.ZodOptional<z.ZodString>;
11
+ opacity: z.ZodOptional<z.ZodNumber>;
12
+ font: z.ZodOptional<z.ZodObject<{
13
+ family: z.ZodOptional<z.ZodString>;
14
+ size: z.ZodOptional<z.ZodNumber>;
15
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
16
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
17
+ }, "strip", z.ZodTypeAny, {
18
+ family?: string | undefined;
19
+ size?: number | undefined;
20
+ weight?: number | "normal" | "bold" | undefined;
21
+ style?: "normal" | "italic" | "oblique" | undefined;
22
+ }, {
23
+ family?: string | undefined;
24
+ size?: number | undefined;
25
+ weight?: number | "normal" | "bold" | undefined;
26
+ style?: "normal" | "italic" | "oblique" | undefined;
27
+ }>>;
10
28
  }, "strip", z.ZodTypeAny, {
11
29
  text: string;
30
+ opacity?: number | undefined;
31
+ font?: {
32
+ family?: string | undefined;
33
+ size?: number | undefined;
34
+ weight?: number | "normal" | "bold" | undefined;
35
+ style?: "normal" | "italic" | "oblique" | undefined;
36
+ } | undefined;
12
37
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
13
38
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
39
+ textColor?: string | undefined;
14
40
  }, {
15
41
  text: string;
42
+ opacity?: number | undefined;
43
+ font?: {
44
+ family?: string | undefined;
45
+ size?: number | undefined;
46
+ weight?: number | "normal" | "bold" | undefined;
47
+ style?: "normal" | "italic" | "oblique" | undefined;
48
+ } | undefined;
16
49
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
17
50
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
51
+ textColor?: string | undefined;
18
52
  }>;
19
53
  /** 边标注 IR 类型 */
20
54
  export type IRStepLabel = z.infer<typeof StepLabelSchema>;
@@ -95,14 +129,48 @@ export declare const LineStepSchema: z.ZodObject<{
95
129
  text: z.ZodString;
96
130
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
97
131
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
132
+ textColor: z.ZodOptional<z.ZodString>;
133
+ opacity: z.ZodOptional<z.ZodNumber>;
134
+ font: z.ZodOptional<z.ZodObject<{
135
+ family: z.ZodOptional<z.ZodString>;
136
+ size: z.ZodOptional<z.ZodNumber>;
137
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
138
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
139
+ }, "strip", z.ZodTypeAny, {
140
+ family?: string | undefined;
141
+ size?: number | undefined;
142
+ weight?: number | "normal" | "bold" | undefined;
143
+ style?: "normal" | "italic" | "oblique" | undefined;
144
+ }, {
145
+ family?: string | undefined;
146
+ size?: number | undefined;
147
+ weight?: number | "normal" | "bold" | undefined;
148
+ style?: "normal" | "italic" | "oblique" | undefined;
149
+ }>>;
98
150
  }, "strip", z.ZodTypeAny, {
99
151
  text: string;
152
+ opacity?: number | undefined;
153
+ font?: {
154
+ family?: string | undefined;
155
+ size?: number | undefined;
156
+ weight?: number | "normal" | "bold" | undefined;
157
+ style?: "normal" | "italic" | "oblique" | undefined;
158
+ } | undefined;
100
159
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
101
160
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
161
+ textColor?: string | undefined;
102
162
  }, {
103
163
  text: string;
164
+ opacity?: number | undefined;
165
+ font?: {
166
+ family?: string | undefined;
167
+ size?: number | undefined;
168
+ weight?: number | "normal" | "bold" | undefined;
169
+ style?: "normal" | "italic" | "oblique" | undefined;
170
+ } | undefined;
104
171
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
105
172
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
173
+ textColor?: string | undefined;
106
174
  }>>;
107
175
  }, "strip", z.ZodTypeAny, {
108
176
  type: "step";
@@ -117,8 +185,16 @@ export declare const LineStepSchema: z.ZodObject<{
117
185
  };
118
186
  label?: {
119
187
  text: string;
188
+ opacity?: number | undefined;
189
+ font?: {
190
+ family?: string | undefined;
191
+ size?: number | undefined;
192
+ weight?: number | "normal" | "bold" | undefined;
193
+ style?: "normal" | "italic" | "oblique" | undefined;
194
+ } | undefined;
120
195
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
121
196
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
197
+ textColor?: string | undefined;
122
198
  } | undefined;
123
199
  }, {
124
200
  type: "step";
@@ -133,8 +209,16 @@ export declare const LineStepSchema: z.ZodObject<{
133
209
  };
134
210
  label?: {
135
211
  text: string;
212
+ opacity?: number | undefined;
213
+ font?: {
214
+ family?: string | undefined;
215
+ size?: number | undefined;
216
+ weight?: number | "normal" | "bold" | undefined;
217
+ style?: "normal" | "italic" | "oblique" | undefined;
218
+ } | undefined;
136
219
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
137
220
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
221
+ textColor?: string | undefined;
138
222
  } | undefined;
139
223
  }>;
140
224
  export declare const FoldStepSchema: z.ZodObject<{
@@ -167,14 +251,48 @@ export declare const FoldStepSchema: z.ZodObject<{
167
251
  text: z.ZodString;
168
252
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
169
253
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
254
+ textColor: z.ZodOptional<z.ZodString>;
255
+ opacity: z.ZodOptional<z.ZodNumber>;
256
+ font: z.ZodOptional<z.ZodObject<{
257
+ family: z.ZodOptional<z.ZodString>;
258
+ size: z.ZodOptional<z.ZodNumber>;
259
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
260
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
261
+ }, "strip", z.ZodTypeAny, {
262
+ family?: string | undefined;
263
+ size?: number | undefined;
264
+ weight?: number | "normal" | "bold" | undefined;
265
+ style?: "normal" | "italic" | "oblique" | undefined;
266
+ }, {
267
+ family?: string | undefined;
268
+ size?: number | undefined;
269
+ weight?: number | "normal" | "bold" | undefined;
270
+ style?: "normal" | "italic" | "oblique" | undefined;
271
+ }>>;
170
272
  }, "strip", z.ZodTypeAny, {
171
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;
172
281
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
173
282
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
283
+ textColor?: string | undefined;
174
284
  }, {
175
285
  text: string;
286
+ opacity?: number | undefined;
287
+ font?: {
288
+ family?: string | undefined;
289
+ size?: number | undefined;
290
+ weight?: number | "normal" | "bold" | undefined;
291
+ style?: "normal" | "italic" | "oblique" | undefined;
292
+ } | undefined;
176
293
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
177
294
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
295
+ textColor?: string | undefined;
178
296
  }>>;
179
297
  }, "strip", z.ZodTypeAny, {
180
298
  type: "step";
@@ -190,8 +308,16 @@ export declare const FoldStepSchema: z.ZodObject<{
190
308
  via: "-|" | "|-";
191
309
  label?: {
192
310
  text: string;
311
+ opacity?: number | undefined;
312
+ font?: {
313
+ family?: string | undefined;
314
+ size?: number | undefined;
315
+ weight?: number | "normal" | "bold" | undefined;
316
+ style?: "normal" | "italic" | "oblique" | undefined;
317
+ } | undefined;
193
318
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
194
319
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
320
+ textColor?: string | undefined;
195
321
  } | undefined;
196
322
  }, {
197
323
  type: "step";
@@ -207,8 +333,16 @@ export declare const FoldStepSchema: z.ZodObject<{
207
333
  via: "-|" | "|-";
208
334
  label?: {
209
335
  text: string;
336
+ opacity?: number | undefined;
337
+ font?: {
338
+ family?: string | undefined;
339
+ size?: number | undefined;
340
+ weight?: number | "normal" | "bold" | undefined;
341
+ style?: "normal" | "italic" | "oblique" | undefined;
342
+ } | undefined;
210
343
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
211
344
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
345
+ textColor?: string | undefined;
212
346
  } | undefined;
213
347
  }>;
214
348
  export declare const CycleStepSchema: z.ZodObject<{
@@ -258,14 +392,48 @@ export declare const CurveStepSchema: z.ZodObject<{
258
392
  text: z.ZodString;
259
393
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
260
394
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
395
+ textColor: z.ZodOptional<z.ZodString>;
396
+ opacity: z.ZodOptional<z.ZodNumber>;
397
+ font: z.ZodOptional<z.ZodObject<{
398
+ family: z.ZodOptional<z.ZodString>;
399
+ size: z.ZodOptional<z.ZodNumber>;
400
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
401
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
402
+ }, "strip", z.ZodTypeAny, {
403
+ family?: string | undefined;
404
+ size?: number | undefined;
405
+ weight?: number | "normal" | "bold" | undefined;
406
+ style?: "normal" | "italic" | "oblique" | undefined;
407
+ }, {
408
+ family?: string | undefined;
409
+ size?: number | undefined;
410
+ weight?: number | "normal" | "bold" | undefined;
411
+ style?: "normal" | "italic" | "oblique" | undefined;
412
+ }>>;
261
413
  }, "strip", z.ZodTypeAny, {
262
414
  text: string;
415
+ opacity?: number | undefined;
416
+ font?: {
417
+ family?: string | undefined;
418
+ size?: number | undefined;
419
+ weight?: number | "normal" | "bold" | undefined;
420
+ style?: "normal" | "italic" | "oblique" | undefined;
421
+ } | undefined;
263
422
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
264
423
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
424
+ textColor?: string | undefined;
265
425
  }, {
266
426
  text: string;
427
+ opacity?: number | undefined;
428
+ font?: {
429
+ family?: string | undefined;
430
+ size?: number | undefined;
431
+ weight?: number | "normal" | "bold" | undefined;
432
+ style?: "normal" | "italic" | "oblique" | undefined;
433
+ } | undefined;
267
434
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
268
435
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
436
+ textColor?: string | undefined;
269
437
  }>>;
270
438
  }, "strip", z.ZodTypeAny, {
271
439
  type: "step";
@@ -281,8 +449,16 @@ export declare const CurveStepSchema: z.ZodObject<{
281
449
  control: [number, number];
282
450
  label?: {
283
451
  text: string;
452
+ opacity?: number | undefined;
453
+ font?: {
454
+ family?: string | undefined;
455
+ size?: number | undefined;
456
+ weight?: number | "normal" | "bold" | undefined;
457
+ style?: "normal" | "italic" | "oblique" | undefined;
458
+ } | undefined;
284
459
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
285
460
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
461
+ textColor?: string | undefined;
286
462
  } | undefined;
287
463
  }, {
288
464
  type: "step";
@@ -298,8 +474,16 @@ export declare const CurveStepSchema: z.ZodObject<{
298
474
  control: [number, number];
299
475
  label?: {
300
476
  text: string;
477
+ opacity?: number | undefined;
478
+ font?: {
479
+ family?: string | undefined;
480
+ size?: number | undefined;
481
+ weight?: number | "normal" | "bold" | undefined;
482
+ style?: "normal" | "italic" | "oblique" | undefined;
483
+ } | undefined;
301
484
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
302
485
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
486
+ textColor?: string | undefined;
303
487
  } | undefined;
304
488
  }>;
305
489
  export declare const CubicStepSchema: z.ZodObject<{
@@ -333,14 +517,48 @@ export declare const CubicStepSchema: z.ZodObject<{
333
517
  text: z.ZodString;
334
518
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
335
519
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
520
+ textColor: z.ZodOptional<z.ZodString>;
521
+ opacity: z.ZodOptional<z.ZodNumber>;
522
+ font: z.ZodOptional<z.ZodObject<{
523
+ family: z.ZodOptional<z.ZodString>;
524
+ size: z.ZodOptional<z.ZodNumber>;
525
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
526
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
527
+ }, "strip", z.ZodTypeAny, {
528
+ family?: string | undefined;
529
+ size?: number | undefined;
530
+ weight?: number | "normal" | "bold" | undefined;
531
+ style?: "normal" | "italic" | "oblique" | undefined;
532
+ }, {
533
+ family?: string | undefined;
534
+ size?: number | undefined;
535
+ weight?: number | "normal" | "bold" | undefined;
536
+ style?: "normal" | "italic" | "oblique" | undefined;
537
+ }>>;
336
538
  }, "strip", z.ZodTypeAny, {
337
539
  text: string;
540
+ opacity?: number | undefined;
541
+ font?: {
542
+ family?: string | undefined;
543
+ size?: number | undefined;
544
+ weight?: number | "normal" | "bold" | undefined;
545
+ style?: "normal" | "italic" | "oblique" | undefined;
546
+ } | undefined;
338
547
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
339
548
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
549
+ textColor?: string | undefined;
340
550
  }, {
341
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;
342
559
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
343
560
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
561
+ textColor?: string | undefined;
344
562
  }>>;
345
563
  }, "strip", z.ZodTypeAny, {
346
564
  type: "step";
@@ -357,8 +575,16 @@ export declare const CubicStepSchema: z.ZodObject<{
357
575
  control2: [number, number];
358
576
  label?: {
359
577
  text: string;
578
+ opacity?: number | undefined;
579
+ font?: {
580
+ family?: string | undefined;
581
+ size?: number | undefined;
582
+ weight?: number | "normal" | "bold" | undefined;
583
+ style?: "normal" | "italic" | "oblique" | undefined;
584
+ } | undefined;
360
585
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
361
586
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
587
+ textColor?: string | undefined;
362
588
  } | undefined;
363
589
  }, {
364
590
  type: "step";
@@ -375,8 +601,16 @@ export declare const CubicStepSchema: z.ZodObject<{
375
601
  control2: [number, number];
376
602
  label?: {
377
603
  text: string;
604
+ opacity?: number | undefined;
605
+ font?: {
606
+ family?: string | undefined;
607
+ size?: number | undefined;
608
+ weight?: number | "normal" | "bold" | undefined;
609
+ style?: "normal" | "italic" | "oblique" | undefined;
610
+ } | undefined;
378
611
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
379
612
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
613
+ textColor?: string | undefined;
380
614
  } | undefined;
381
615
  }>;
382
616
  export declare const BendStepSchema: z.ZodObject<{
@@ -410,14 +644,48 @@ export declare const BendStepSchema: z.ZodObject<{
410
644
  text: z.ZodString;
411
645
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
412
646
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
647
+ textColor: z.ZodOptional<z.ZodString>;
648
+ opacity: z.ZodOptional<z.ZodNumber>;
649
+ font: z.ZodOptional<z.ZodObject<{
650
+ family: z.ZodOptional<z.ZodString>;
651
+ size: z.ZodOptional<z.ZodNumber>;
652
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
653
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
654
+ }, "strip", z.ZodTypeAny, {
655
+ family?: string | undefined;
656
+ size?: number | undefined;
657
+ weight?: number | "normal" | "bold" | undefined;
658
+ style?: "normal" | "italic" | "oblique" | undefined;
659
+ }, {
660
+ family?: string | undefined;
661
+ size?: number | undefined;
662
+ weight?: number | "normal" | "bold" | undefined;
663
+ style?: "normal" | "italic" | "oblique" | undefined;
664
+ }>>;
413
665
  }, "strip", z.ZodTypeAny, {
414
666
  text: string;
667
+ opacity?: number | undefined;
668
+ font?: {
669
+ family?: string | undefined;
670
+ size?: number | undefined;
671
+ weight?: number | "normal" | "bold" | undefined;
672
+ style?: "normal" | "italic" | "oblique" | undefined;
673
+ } | undefined;
415
674
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
416
675
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
676
+ textColor?: string | undefined;
417
677
  }, {
418
678
  text: string;
679
+ opacity?: number | undefined;
680
+ font?: {
681
+ family?: string | undefined;
682
+ size?: number | undefined;
683
+ weight?: number | "normal" | "bold" | undefined;
684
+ style?: "normal" | "italic" | "oblique" | undefined;
685
+ } | undefined;
419
686
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
420
687
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
688
+ textColor?: string | undefined;
421
689
  }>>;
422
690
  }, "strip", z.ZodTypeAny, {
423
691
  type: "step";
@@ -433,8 +701,16 @@ export declare const BendStepSchema: z.ZodObject<{
433
701
  bendDirection: "left" | "right";
434
702
  label?: {
435
703
  text: string;
704
+ opacity?: number | undefined;
705
+ font?: {
706
+ family?: string | undefined;
707
+ size?: number | undefined;
708
+ weight?: number | "normal" | "bold" | undefined;
709
+ style?: "normal" | "italic" | "oblique" | undefined;
710
+ } | undefined;
436
711
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
437
712
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
713
+ textColor?: string | undefined;
438
714
  } | undefined;
439
715
  bendAngle?: number | undefined;
440
716
  }, {
@@ -451,8 +727,16 @@ export declare const BendStepSchema: z.ZodObject<{
451
727
  bendDirection: "left" | "right";
452
728
  label?: {
453
729
  text: string;
730
+ opacity?: number | undefined;
731
+ font?: {
732
+ family?: string | undefined;
733
+ size?: number | undefined;
734
+ weight?: number | "normal" | "bold" | undefined;
735
+ style?: "normal" | "italic" | "oblique" | undefined;
736
+ } | undefined;
454
737
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
455
738
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
739
+ textColor?: string | undefined;
456
740
  } | undefined;
457
741
  bendAngle?: number | undefined;
458
742
  }>;
@@ -466,14 +750,48 @@ export declare const ArcStepSchema: z.ZodObject<{
466
750
  text: z.ZodString;
467
751
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
468
752
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
753
+ textColor: z.ZodOptional<z.ZodString>;
754
+ opacity: z.ZodOptional<z.ZodNumber>;
755
+ font: z.ZodOptional<z.ZodObject<{
756
+ family: z.ZodOptional<z.ZodString>;
757
+ size: z.ZodOptional<z.ZodNumber>;
758
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
759
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
760
+ }, "strip", z.ZodTypeAny, {
761
+ family?: string | undefined;
762
+ size?: number | undefined;
763
+ weight?: number | "normal" | "bold" | undefined;
764
+ style?: "normal" | "italic" | "oblique" | undefined;
765
+ }, {
766
+ family?: string | undefined;
767
+ size?: number | undefined;
768
+ weight?: number | "normal" | "bold" | undefined;
769
+ style?: "normal" | "italic" | "oblique" | undefined;
770
+ }>>;
469
771
  }, "strip", z.ZodTypeAny, {
470
772
  text: string;
773
+ opacity?: number | undefined;
774
+ font?: {
775
+ family?: string | undefined;
776
+ size?: number | undefined;
777
+ weight?: number | "normal" | "bold" | undefined;
778
+ style?: "normal" | "italic" | "oblique" | undefined;
779
+ } | undefined;
471
780
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
472
781
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
782
+ textColor?: string | undefined;
473
783
  }, {
474
784
  text: string;
785
+ opacity?: number | undefined;
786
+ font?: {
787
+ family?: string | undefined;
788
+ size?: number | undefined;
789
+ weight?: number | "normal" | "bold" | undefined;
790
+ style?: "normal" | "italic" | "oblique" | undefined;
791
+ } | undefined;
475
792
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
476
793
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
794
+ textColor?: string | undefined;
477
795
  }>>;
478
796
  }, "strip", z.ZodTypeAny, {
479
797
  type: "step";
@@ -483,8 +801,16 @@ export declare const ArcStepSchema: z.ZodObject<{
483
801
  endAngle: number;
484
802
  label?: {
485
803
  text: string;
804
+ opacity?: number | undefined;
805
+ font?: {
806
+ family?: string | undefined;
807
+ size?: number | undefined;
808
+ weight?: number | "normal" | "bold" | undefined;
809
+ style?: "normal" | "italic" | "oblique" | undefined;
810
+ } | undefined;
486
811
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
487
812
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
813
+ textColor?: string | undefined;
488
814
  } | undefined;
489
815
  }, {
490
816
  type: "step";
@@ -494,8 +820,16 @@ export declare const ArcStepSchema: z.ZodObject<{
494
820
  endAngle: number;
495
821
  label?: {
496
822
  text: string;
823
+ opacity?: number | undefined;
824
+ font?: {
825
+ family?: string | undefined;
826
+ size?: number | undefined;
827
+ weight?: number | "normal" | "bold" | undefined;
828
+ style?: "normal" | "italic" | "oblique" | undefined;
829
+ } | undefined;
497
830
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
498
831
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
832
+ textColor?: string | undefined;
499
833
  } | undefined;
500
834
  }>;
501
835
  export declare const CirclePathStepSchema: z.ZodObject<{
@@ -506,14 +840,48 @@ export declare const CirclePathStepSchema: z.ZodObject<{
506
840
  text: z.ZodString;
507
841
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
508
842
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
843
+ textColor: z.ZodOptional<z.ZodString>;
844
+ opacity: z.ZodOptional<z.ZodNumber>;
845
+ font: z.ZodOptional<z.ZodObject<{
846
+ family: z.ZodOptional<z.ZodString>;
847
+ size: z.ZodOptional<z.ZodNumber>;
848
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
849
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
850
+ }, "strip", z.ZodTypeAny, {
851
+ family?: string | undefined;
852
+ size?: number | undefined;
853
+ weight?: number | "normal" | "bold" | undefined;
854
+ style?: "normal" | "italic" | "oblique" | undefined;
855
+ }, {
856
+ family?: string | undefined;
857
+ size?: number | undefined;
858
+ weight?: number | "normal" | "bold" | undefined;
859
+ style?: "normal" | "italic" | "oblique" | undefined;
860
+ }>>;
509
861
  }, "strip", z.ZodTypeAny, {
510
862
  text: string;
863
+ opacity?: number | undefined;
864
+ font?: {
865
+ family?: string | undefined;
866
+ size?: number | undefined;
867
+ weight?: number | "normal" | "bold" | undefined;
868
+ style?: "normal" | "italic" | "oblique" | undefined;
869
+ } | undefined;
511
870
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
512
871
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
872
+ textColor?: string | undefined;
513
873
  }, {
514
874
  text: string;
875
+ opacity?: number | undefined;
876
+ font?: {
877
+ family?: string | undefined;
878
+ size?: number | undefined;
879
+ weight?: number | "normal" | "bold" | undefined;
880
+ style?: "normal" | "italic" | "oblique" | undefined;
881
+ } | undefined;
515
882
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
516
883
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
884
+ textColor?: string | undefined;
517
885
  }>>;
518
886
  }, "strip", z.ZodTypeAny, {
519
887
  type: "step";
@@ -521,8 +889,16 @@ export declare const CirclePathStepSchema: z.ZodObject<{
521
889
  kind: "circlePath";
522
890
  label?: {
523
891
  text: string;
892
+ opacity?: number | undefined;
893
+ font?: {
894
+ family?: string | undefined;
895
+ size?: number | undefined;
896
+ weight?: number | "normal" | "bold" | undefined;
897
+ style?: "normal" | "italic" | "oblique" | undefined;
898
+ } | undefined;
524
899
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
525
900
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
901
+ textColor?: string | undefined;
526
902
  } | undefined;
527
903
  }, {
528
904
  type: "step";
@@ -530,8 +906,16 @@ export declare const CirclePathStepSchema: z.ZodObject<{
530
906
  kind: "circlePath";
531
907
  label?: {
532
908
  text: string;
909
+ opacity?: number | undefined;
910
+ font?: {
911
+ family?: string | undefined;
912
+ size?: number | undefined;
913
+ weight?: number | "normal" | "bold" | undefined;
914
+ style?: "normal" | "italic" | "oblique" | undefined;
915
+ } | undefined;
533
916
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
534
917
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
918
+ textColor?: string | undefined;
535
919
  } | undefined;
536
920
  }>;
537
921
  export declare const EllipsePathStepSchema: z.ZodObject<{
@@ -543,14 +927,48 @@ export declare const EllipsePathStepSchema: z.ZodObject<{
543
927
  text: z.ZodString;
544
928
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
545
929
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
930
+ textColor: z.ZodOptional<z.ZodString>;
931
+ opacity: z.ZodOptional<z.ZodNumber>;
932
+ font: z.ZodOptional<z.ZodObject<{
933
+ family: z.ZodOptional<z.ZodString>;
934
+ size: z.ZodOptional<z.ZodNumber>;
935
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
936
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
937
+ }, "strip", z.ZodTypeAny, {
938
+ family?: string | undefined;
939
+ size?: number | undefined;
940
+ weight?: number | "normal" | "bold" | undefined;
941
+ style?: "normal" | "italic" | "oblique" | undefined;
942
+ }, {
943
+ family?: string | undefined;
944
+ size?: number | undefined;
945
+ weight?: number | "normal" | "bold" | undefined;
946
+ style?: "normal" | "italic" | "oblique" | undefined;
947
+ }>>;
546
948
  }, "strip", z.ZodTypeAny, {
547
949
  text: string;
950
+ opacity?: number | undefined;
951
+ font?: {
952
+ family?: string | undefined;
953
+ size?: number | undefined;
954
+ weight?: number | "normal" | "bold" | undefined;
955
+ style?: "normal" | "italic" | "oblique" | undefined;
956
+ } | undefined;
548
957
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
549
958
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
959
+ textColor?: string | undefined;
550
960
  }, {
551
961
  text: string;
962
+ opacity?: number | undefined;
963
+ font?: {
964
+ family?: string | undefined;
965
+ size?: number | undefined;
966
+ weight?: number | "normal" | "bold" | undefined;
967
+ style?: "normal" | "italic" | "oblique" | undefined;
968
+ } | undefined;
552
969
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
553
970
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
971
+ textColor?: string | undefined;
554
972
  }>>;
555
973
  }, "strip", z.ZodTypeAny, {
556
974
  type: "step";
@@ -559,8 +977,16 @@ export declare const EllipsePathStepSchema: z.ZodObject<{
559
977
  radiusY: number;
560
978
  label?: {
561
979
  text: string;
980
+ opacity?: number | undefined;
981
+ font?: {
982
+ family?: string | undefined;
983
+ size?: number | undefined;
984
+ weight?: number | "normal" | "bold" | undefined;
985
+ style?: "normal" | "italic" | "oblique" | undefined;
986
+ } | undefined;
562
987
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
563
988
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
989
+ textColor?: string | undefined;
564
990
  } | undefined;
565
991
  }, {
566
992
  type: "step";
@@ -569,8 +995,16 @@ export declare const EllipsePathStepSchema: z.ZodObject<{
569
995
  radiusY: number;
570
996
  label?: {
571
997
  text: string;
998
+ opacity?: number | undefined;
999
+ font?: {
1000
+ family?: string | undefined;
1001
+ size?: number | undefined;
1002
+ weight?: number | "normal" | "bold" | undefined;
1003
+ style?: "normal" | "italic" | "oblique" | undefined;
1004
+ } | undefined;
572
1005
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
573
1006
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1007
+ textColor?: string | undefined;
574
1008
  } | undefined;
575
1009
  }>;
576
1010
  export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
@@ -649,14 +1083,48 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
649
1083
  text: z.ZodString;
650
1084
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
651
1085
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
1086
+ textColor: z.ZodOptional<z.ZodString>;
1087
+ opacity: z.ZodOptional<z.ZodNumber>;
1088
+ font: z.ZodOptional<z.ZodObject<{
1089
+ family: z.ZodOptional<z.ZodString>;
1090
+ size: z.ZodOptional<z.ZodNumber>;
1091
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
1092
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
1093
+ }, "strip", z.ZodTypeAny, {
1094
+ family?: string | undefined;
1095
+ size?: number | undefined;
1096
+ weight?: number | "normal" | "bold" | undefined;
1097
+ style?: "normal" | "italic" | "oblique" | undefined;
1098
+ }, {
1099
+ family?: string | undefined;
1100
+ size?: number | undefined;
1101
+ weight?: number | "normal" | "bold" | undefined;
1102
+ style?: "normal" | "italic" | "oblique" | undefined;
1103
+ }>>;
652
1104
  }, "strip", z.ZodTypeAny, {
653
1105
  text: string;
1106
+ opacity?: number | undefined;
1107
+ font?: {
1108
+ family?: string | undefined;
1109
+ size?: number | undefined;
1110
+ weight?: number | "normal" | "bold" | undefined;
1111
+ style?: "normal" | "italic" | "oblique" | undefined;
1112
+ } | undefined;
654
1113
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
655
1114
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1115
+ textColor?: string | undefined;
656
1116
  }, {
657
1117
  text: string;
1118
+ opacity?: number | undefined;
1119
+ font?: {
1120
+ family?: string | undefined;
1121
+ size?: number | undefined;
1122
+ weight?: number | "normal" | "bold" | undefined;
1123
+ style?: "normal" | "italic" | "oblique" | undefined;
1124
+ } | undefined;
658
1125
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
659
1126
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1127
+ textColor?: string | undefined;
660
1128
  }>>;
661
1129
  }, "strip", z.ZodTypeAny, {
662
1130
  type: "step";
@@ -671,8 +1139,16 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
671
1139
  };
672
1140
  label?: {
673
1141
  text: string;
1142
+ opacity?: number | undefined;
1143
+ font?: {
1144
+ family?: string | undefined;
1145
+ size?: number | undefined;
1146
+ weight?: number | "normal" | "bold" | undefined;
1147
+ style?: "normal" | "italic" | "oblique" | undefined;
1148
+ } | undefined;
674
1149
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
675
1150
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1151
+ textColor?: string | undefined;
676
1152
  } | undefined;
677
1153
  }, {
678
1154
  type: "step";
@@ -687,8 +1163,16 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
687
1163
  };
688
1164
  label?: {
689
1165
  text: string;
1166
+ opacity?: number | undefined;
1167
+ font?: {
1168
+ family?: string | undefined;
1169
+ size?: number | undefined;
1170
+ weight?: number | "normal" | "bold" | undefined;
1171
+ style?: "normal" | "italic" | "oblique" | undefined;
1172
+ } | undefined;
690
1173
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
691
1174
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1175
+ textColor?: string | undefined;
692
1176
  } | undefined;
693
1177
  }>, z.ZodObject<{
694
1178
  type: z.ZodLiteral<"step">;
@@ -720,14 +1204,48 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
720
1204
  text: z.ZodString;
721
1205
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
722
1206
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
1207
+ textColor: z.ZodOptional<z.ZodString>;
1208
+ opacity: z.ZodOptional<z.ZodNumber>;
1209
+ font: z.ZodOptional<z.ZodObject<{
1210
+ family: z.ZodOptional<z.ZodString>;
1211
+ size: z.ZodOptional<z.ZodNumber>;
1212
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
1213
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
1214
+ }, "strip", z.ZodTypeAny, {
1215
+ family?: string | undefined;
1216
+ size?: number | undefined;
1217
+ weight?: number | "normal" | "bold" | undefined;
1218
+ style?: "normal" | "italic" | "oblique" | undefined;
1219
+ }, {
1220
+ family?: string | undefined;
1221
+ size?: number | undefined;
1222
+ weight?: number | "normal" | "bold" | undefined;
1223
+ style?: "normal" | "italic" | "oblique" | undefined;
1224
+ }>>;
723
1225
  }, "strip", z.ZodTypeAny, {
724
1226
  text: string;
1227
+ opacity?: number | undefined;
1228
+ font?: {
1229
+ family?: string | undefined;
1230
+ size?: number | undefined;
1231
+ weight?: number | "normal" | "bold" | undefined;
1232
+ style?: "normal" | "italic" | "oblique" | undefined;
1233
+ } | undefined;
725
1234
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
726
1235
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1236
+ textColor?: string | undefined;
727
1237
  }, {
728
1238
  text: string;
1239
+ opacity?: number | undefined;
1240
+ font?: {
1241
+ family?: string | undefined;
1242
+ size?: number | undefined;
1243
+ weight?: number | "normal" | "bold" | undefined;
1244
+ style?: "normal" | "italic" | "oblique" | undefined;
1245
+ } | undefined;
729
1246
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
730
1247
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1248
+ textColor?: string | undefined;
731
1249
  }>>;
732
1250
  }, "strip", z.ZodTypeAny, {
733
1251
  type: "step";
@@ -743,8 +1261,16 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
743
1261
  via: "-|" | "|-";
744
1262
  label?: {
745
1263
  text: string;
1264
+ opacity?: number | undefined;
1265
+ font?: {
1266
+ family?: string | undefined;
1267
+ size?: number | undefined;
1268
+ weight?: number | "normal" | "bold" | undefined;
1269
+ style?: "normal" | "italic" | "oblique" | undefined;
1270
+ } | undefined;
746
1271
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
747
1272
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1273
+ textColor?: string | undefined;
748
1274
  } | undefined;
749
1275
  }, {
750
1276
  type: "step";
@@ -760,8 +1286,16 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
760
1286
  via: "-|" | "|-";
761
1287
  label?: {
762
1288
  text: string;
1289
+ opacity?: number | undefined;
1290
+ font?: {
1291
+ family?: string | undefined;
1292
+ size?: number | undefined;
1293
+ weight?: number | "normal" | "bold" | undefined;
1294
+ style?: "normal" | "italic" | "oblique" | undefined;
1295
+ } | undefined;
763
1296
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
764
1297
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1298
+ textColor?: string | undefined;
765
1299
  } | undefined;
766
1300
  }>, z.ZodObject<{
767
1301
  type: z.ZodLiteral<"step">;
@@ -802,14 +1336,48 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
802
1336
  text: z.ZodString;
803
1337
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
804
1338
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
1339
+ textColor: z.ZodOptional<z.ZodString>;
1340
+ opacity: z.ZodOptional<z.ZodNumber>;
1341
+ font: z.ZodOptional<z.ZodObject<{
1342
+ family: z.ZodOptional<z.ZodString>;
1343
+ size: z.ZodOptional<z.ZodNumber>;
1344
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
1345
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
1346
+ }, "strip", z.ZodTypeAny, {
1347
+ family?: string | undefined;
1348
+ size?: number | undefined;
1349
+ weight?: number | "normal" | "bold" | undefined;
1350
+ style?: "normal" | "italic" | "oblique" | undefined;
1351
+ }, {
1352
+ family?: string | undefined;
1353
+ size?: number | undefined;
1354
+ weight?: number | "normal" | "bold" | undefined;
1355
+ style?: "normal" | "italic" | "oblique" | undefined;
1356
+ }>>;
805
1357
  }, "strip", z.ZodTypeAny, {
806
1358
  text: string;
1359
+ opacity?: number | undefined;
1360
+ font?: {
1361
+ family?: string | undefined;
1362
+ size?: number | undefined;
1363
+ weight?: number | "normal" | "bold" | undefined;
1364
+ style?: "normal" | "italic" | "oblique" | undefined;
1365
+ } | undefined;
807
1366
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
808
1367
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1368
+ textColor?: string | undefined;
809
1369
  }, {
810
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;
811
1378
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
812
1379
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1380
+ textColor?: string | undefined;
813
1381
  }>>;
814
1382
  }, "strip", z.ZodTypeAny, {
815
1383
  type: "step";
@@ -825,8 +1393,16 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
825
1393
  control: [number, number];
826
1394
  label?: {
827
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;
828
1403
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
829
1404
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1405
+ textColor?: string | undefined;
830
1406
  } | undefined;
831
1407
  }, {
832
1408
  type: "step";
@@ -842,8 +1418,16 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
842
1418
  control: [number, number];
843
1419
  label?: {
844
1420
  text: string;
1421
+ opacity?: number | undefined;
1422
+ font?: {
1423
+ family?: string | undefined;
1424
+ size?: number | undefined;
1425
+ weight?: number | "normal" | "bold" | undefined;
1426
+ style?: "normal" | "italic" | "oblique" | undefined;
1427
+ } | undefined;
845
1428
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
846
1429
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1430
+ textColor?: string | undefined;
847
1431
  } | undefined;
848
1432
  }>, z.ZodObject<{
849
1433
  type: z.ZodLiteral<"step">;
@@ -876,14 +1460,48 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
876
1460
  text: z.ZodString;
877
1461
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
878
1462
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
1463
+ textColor: z.ZodOptional<z.ZodString>;
1464
+ opacity: z.ZodOptional<z.ZodNumber>;
1465
+ font: z.ZodOptional<z.ZodObject<{
1466
+ family: z.ZodOptional<z.ZodString>;
1467
+ size: z.ZodOptional<z.ZodNumber>;
1468
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
1469
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
1470
+ }, "strip", z.ZodTypeAny, {
1471
+ family?: string | undefined;
1472
+ size?: number | undefined;
1473
+ weight?: number | "normal" | "bold" | undefined;
1474
+ style?: "normal" | "italic" | "oblique" | undefined;
1475
+ }, {
1476
+ family?: string | undefined;
1477
+ size?: number | undefined;
1478
+ weight?: number | "normal" | "bold" | undefined;
1479
+ style?: "normal" | "italic" | "oblique" | undefined;
1480
+ }>>;
879
1481
  }, "strip", z.ZodTypeAny, {
880
1482
  text: string;
1483
+ opacity?: number | undefined;
1484
+ font?: {
1485
+ family?: string | undefined;
1486
+ size?: number | undefined;
1487
+ weight?: number | "normal" | "bold" | undefined;
1488
+ style?: "normal" | "italic" | "oblique" | undefined;
1489
+ } | undefined;
881
1490
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
882
1491
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1492
+ textColor?: string | undefined;
883
1493
  }, {
884
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;
885
1502
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
886
1503
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1504
+ textColor?: string | undefined;
887
1505
  }>>;
888
1506
  }, "strip", z.ZodTypeAny, {
889
1507
  type: "step";
@@ -900,8 +1518,16 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
900
1518
  control2: [number, number];
901
1519
  label?: {
902
1520
  text: string;
1521
+ opacity?: number | undefined;
1522
+ font?: {
1523
+ family?: string | undefined;
1524
+ size?: number | undefined;
1525
+ weight?: number | "normal" | "bold" | undefined;
1526
+ style?: "normal" | "italic" | "oblique" | undefined;
1527
+ } | undefined;
903
1528
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
904
1529
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1530
+ textColor?: string | undefined;
905
1531
  } | undefined;
906
1532
  }, {
907
1533
  type: "step";
@@ -918,8 +1544,16 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
918
1544
  control2: [number, number];
919
1545
  label?: {
920
1546
  text: string;
1547
+ opacity?: number | undefined;
1548
+ font?: {
1549
+ family?: string | undefined;
1550
+ size?: number | undefined;
1551
+ weight?: number | "normal" | "bold" | undefined;
1552
+ style?: "normal" | "italic" | "oblique" | undefined;
1553
+ } | undefined;
921
1554
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
922
1555
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1556
+ textColor?: string | undefined;
923
1557
  } | undefined;
924
1558
  }>, z.ZodObject<{
925
1559
  type: z.ZodLiteral<"step">;
@@ -952,14 +1586,48 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
952
1586
  text: z.ZodString;
953
1587
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
954
1588
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
1589
+ textColor: z.ZodOptional<z.ZodString>;
1590
+ opacity: z.ZodOptional<z.ZodNumber>;
1591
+ font: z.ZodOptional<z.ZodObject<{
1592
+ family: z.ZodOptional<z.ZodString>;
1593
+ size: z.ZodOptional<z.ZodNumber>;
1594
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
1595
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
1596
+ }, "strip", z.ZodTypeAny, {
1597
+ family?: string | undefined;
1598
+ size?: number | undefined;
1599
+ weight?: number | "normal" | "bold" | undefined;
1600
+ style?: "normal" | "italic" | "oblique" | undefined;
1601
+ }, {
1602
+ family?: string | undefined;
1603
+ size?: number | undefined;
1604
+ weight?: number | "normal" | "bold" | undefined;
1605
+ style?: "normal" | "italic" | "oblique" | undefined;
1606
+ }>>;
955
1607
  }, "strip", z.ZodTypeAny, {
956
1608
  text: string;
1609
+ opacity?: number | undefined;
1610
+ font?: {
1611
+ family?: string | undefined;
1612
+ size?: number | undefined;
1613
+ weight?: number | "normal" | "bold" | undefined;
1614
+ style?: "normal" | "italic" | "oblique" | undefined;
1615
+ } | undefined;
957
1616
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
958
1617
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1618
+ textColor?: string | undefined;
959
1619
  }, {
960
1620
  text: string;
1621
+ opacity?: number | undefined;
1622
+ font?: {
1623
+ family?: string | undefined;
1624
+ size?: number | undefined;
1625
+ weight?: number | "normal" | "bold" | undefined;
1626
+ style?: "normal" | "italic" | "oblique" | undefined;
1627
+ } | undefined;
961
1628
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
962
1629
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1630
+ textColor?: string | undefined;
963
1631
  }>>;
964
1632
  }, "strip", z.ZodTypeAny, {
965
1633
  type: "step";
@@ -975,8 +1643,16 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
975
1643
  bendDirection: "left" | "right";
976
1644
  label?: {
977
1645
  text: string;
1646
+ opacity?: number | undefined;
1647
+ font?: {
1648
+ family?: string | undefined;
1649
+ size?: number | undefined;
1650
+ weight?: number | "normal" | "bold" | undefined;
1651
+ style?: "normal" | "italic" | "oblique" | undefined;
1652
+ } | undefined;
978
1653
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
979
1654
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1655
+ textColor?: string | undefined;
980
1656
  } | undefined;
981
1657
  bendAngle?: number | undefined;
982
1658
  }, {
@@ -993,8 +1669,16 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
993
1669
  bendDirection: "left" | "right";
994
1670
  label?: {
995
1671
  text: string;
1672
+ opacity?: number | undefined;
1673
+ font?: {
1674
+ family?: string | undefined;
1675
+ size?: number | undefined;
1676
+ weight?: number | "normal" | "bold" | undefined;
1677
+ style?: "normal" | "italic" | "oblique" | undefined;
1678
+ } | undefined;
996
1679
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
997
1680
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1681
+ textColor?: string | undefined;
998
1682
  } | undefined;
999
1683
  bendAngle?: number | undefined;
1000
1684
  }>, z.ZodObject<{
@@ -1007,14 +1691,48 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
1007
1691
  text: z.ZodString;
1008
1692
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
1009
1693
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
1694
+ textColor: z.ZodOptional<z.ZodString>;
1695
+ opacity: z.ZodOptional<z.ZodNumber>;
1696
+ font: z.ZodOptional<z.ZodObject<{
1697
+ family: z.ZodOptional<z.ZodString>;
1698
+ size: z.ZodOptional<z.ZodNumber>;
1699
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
1700
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
1701
+ }, "strip", z.ZodTypeAny, {
1702
+ family?: string | undefined;
1703
+ size?: number | undefined;
1704
+ weight?: number | "normal" | "bold" | undefined;
1705
+ style?: "normal" | "italic" | "oblique" | undefined;
1706
+ }, {
1707
+ family?: string | undefined;
1708
+ size?: number | undefined;
1709
+ weight?: number | "normal" | "bold" | undefined;
1710
+ style?: "normal" | "italic" | "oblique" | undefined;
1711
+ }>>;
1010
1712
  }, "strip", z.ZodTypeAny, {
1011
1713
  text: string;
1714
+ opacity?: number | undefined;
1715
+ font?: {
1716
+ family?: string | undefined;
1717
+ size?: number | undefined;
1718
+ weight?: number | "normal" | "bold" | undefined;
1719
+ style?: "normal" | "italic" | "oblique" | undefined;
1720
+ } | undefined;
1012
1721
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
1013
1722
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1723
+ textColor?: string | undefined;
1014
1724
  }, {
1015
1725
  text: string;
1726
+ opacity?: number | undefined;
1727
+ font?: {
1728
+ family?: string | undefined;
1729
+ size?: number | undefined;
1730
+ weight?: number | "normal" | "bold" | undefined;
1731
+ style?: "normal" | "italic" | "oblique" | undefined;
1732
+ } | undefined;
1016
1733
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
1017
1734
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1735
+ textColor?: string | undefined;
1018
1736
  }>>;
1019
1737
  }, "strip", z.ZodTypeAny, {
1020
1738
  type: "step";
@@ -1024,8 +1742,16 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
1024
1742
  endAngle: number;
1025
1743
  label?: {
1026
1744
  text: string;
1745
+ opacity?: number | undefined;
1746
+ font?: {
1747
+ family?: string | undefined;
1748
+ size?: number | undefined;
1749
+ weight?: number | "normal" | "bold" | undefined;
1750
+ style?: "normal" | "italic" | "oblique" | undefined;
1751
+ } | undefined;
1027
1752
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
1028
1753
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1754
+ textColor?: string | undefined;
1029
1755
  } | undefined;
1030
1756
  }, {
1031
1757
  type: "step";
@@ -1035,8 +1761,16 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
1035
1761
  endAngle: number;
1036
1762
  label?: {
1037
1763
  text: string;
1764
+ opacity?: number | undefined;
1765
+ font?: {
1766
+ family?: string | undefined;
1767
+ size?: number | undefined;
1768
+ weight?: number | "normal" | "bold" | undefined;
1769
+ style?: "normal" | "italic" | "oblique" | undefined;
1770
+ } | undefined;
1038
1771
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
1039
1772
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1773
+ textColor?: string | undefined;
1040
1774
  } | undefined;
1041
1775
  }>, z.ZodObject<{
1042
1776
  type: z.ZodLiteral<"step">;
@@ -1046,14 +1780,48 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
1046
1780
  text: z.ZodString;
1047
1781
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
1048
1782
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
1783
+ textColor: z.ZodOptional<z.ZodString>;
1784
+ opacity: z.ZodOptional<z.ZodNumber>;
1785
+ font: z.ZodOptional<z.ZodObject<{
1786
+ family: z.ZodOptional<z.ZodString>;
1787
+ size: z.ZodOptional<z.ZodNumber>;
1788
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
1789
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
1790
+ }, "strip", z.ZodTypeAny, {
1791
+ family?: string | undefined;
1792
+ size?: number | undefined;
1793
+ weight?: number | "normal" | "bold" | undefined;
1794
+ style?: "normal" | "italic" | "oblique" | undefined;
1795
+ }, {
1796
+ family?: string | undefined;
1797
+ size?: number | undefined;
1798
+ weight?: number | "normal" | "bold" | undefined;
1799
+ style?: "normal" | "italic" | "oblique" | undefined;
1800
+ }>>;
1049
1801
  }, "strip", z.ZodTypeAny, {
1050
1802
  text: string;
1803
+ opacity?: number | undefined;
1804
+ font?: {
1805
+ family?: string | undefined;
1806
+ size?: number | undefined;
1807
+ weight?: number | "normal" | "bold" | undefined;
1808
+ style?: "normal" | "italic" | "oblique" | undefined;
1809
+ } | undefined;
1051
1810
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
1052
1811
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1812
+ textColor?: string | undefined;
1053
1813
  }, {
1054
1814
  text: string;
1815
+ opacity?: number | undefined;
1816
+ font?: {
1817
+ family?: string | undefined;
1818
+ size?: number | undefined;
1819
+ weight?: number | "normal" | "bold" | undefined;
1820
+ style?: "normal" | "italic" | "oblique" | undefined;
1821
+ } | undefined;
1055
1822
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
1056
1823
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1824
+ textColor?: string | undefined;
1057
1825
  }>>;
1058
1826
  }, "strip", z.ZodTypeAny, {
1059
1827
  type: "step";
@@ -1061,8 +1829,16 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
1061
1829
  kind: "circlePath";
1062
1830
  label?: {
1063
1831
  text: string;
1832
+ opacity?: number | undefined;
1833
+ font?: {
1834
+ family?: string | undefined;
1835
+ size?: number | undefined;
1836
+ weight?: number | "normal" | "bold" | undefined;
1837
+ style?: "normal" | "italic" | "oblique" | undefined;
1838
+ } | undefined;
1064
1839
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
1065
1840
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1841
+ textColor?: string | undefined;
1066
1842
  } | undefined;
1067
1843
  }, {
1068
1844
  type: "step";
@@ -1070,8 +1846,16 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
1070
1846
  kind: "circlePath";
1071
1847
  label?: {
1072
1848
  text: string;
1849
+ opacity?: number | undefined;
1850
+ font?: {
1851
+ family?: string | undefined;
1852
+ size?: number | undefined;
1853
+ weight?: number | "normal" | "bold" | undefined;
1854
+ style?: "normal" | "italic" | "oblique" | undefined;
1855
+ } | undefined;
1073
1856
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
1074
1857
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1858
+ textColor?: string | undefined;
1075
1859
  } | undefined;
1076
1860
  }>, z.ZodObject<{
1077
1861
  type: z.ZodLiteral<"step">;
@@ -1082,14 +1866,48 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
1082
1866
  text: z.ZodString;
1083
1867
  position: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["at-start", "very-near-start", "near-start", "midway", "near-end", "very-near-end", "at-end"]>, z.ZodNumber]>>;
1084
1868
  side: z.ZodOptional<z.ZodEnum<["above", "below", "left", "right", "sloped"]>>;
1869
+ textColor: z.ZodOptional<z.ZodString>;
1870
+ opacity: z.ZodOptional<z.ZodNumber>;
1871
+ font: z.ZodOptional<z.ZodObject<{
1872
+ family: z.ZodOptional<z.ZodString>;
1873
+ size: z.ZodOptional<z.ZodNumber>;
1874
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["normal", "bold"]>, z.ZodNumber]>>;
1875
+ style: z.ZodOptional<z.ZodEnum<["normal", "italic", "oblique"]>>;
1876
+ }, "strip", z.ZodTypeAny, {
1877
+ family?: string | undefined;
1878
+ size?: number | undefined;
1879
+ weight?: number | "normal" | "bold" | undefined;
1880
+ style?: "normal" | "italic" | "oblique" | undefined;
1881
+ }, {
1882
+ family?: string | undefined;
1883
+ size?: number | undefined;
1884
+ weight?: number | "normal" | "bold" | undefined;
1885
+ style?: "normal" | "italic" | "oblique" | undefined;
1886
+ }>>;
1085
1887
  }, "strip", z.ZodTypeAny, {
1086
1888
  text: string;
1889
+ opacity?: number | undefined;
1890
+ font?: {
1891
+ family?: string | undefined;
1892
+ size?: number | undefined;
1893
+ weight?: number | "normal" | "bold" | undefined;
1894
+ style?: "normal" | "italic" | "oblique" | undefined;
1895
+ } | undefined;
1087
1896
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
1088
1897
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1898
+ textColor?: string | undefined;
1089
1899
  }, {
1090
1900
  text: string;
1901
+ opacity?: number | undefined;
1902
+ font?: {
1903
+ family?: string | undefined;
1904
+ size?: number | undefined;
1905
+ weight?: number | "normal" | "bold" | undefined;
1906
+ style?: "normal" | "italic" | "oblique" | undefined;
1907
+ } | undefined;
1091
1908
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
1092
1909
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1910
+ textColor?: string | undefined;
1093
1911
  }>>;
1094
1912
  }, "strip", z.ZodTypeAny, {
1095
1913
  type: "step";
@@ -1098,8 +1916,16 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
1098
1916
  radiusY: number;
1099
1917
  label?: {
1100
1918
  text: string;
1919
+ opacity?: number | undefined;
1920
+ font?: {
1921
+ family?: string | undefined;
1922
+ size?: number | undefined;
1923
+ weight?: number | "normal" | "bold" | undefined;
1924
+ style?: "normal" | "italic" | "oblique" | undefined;
1925
+ } | undefined;
1101
1926
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
1102
1927
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1928
+ textColor?: string | undefined;
1103
1929
  } | undefined;
1104
1930
  }, {
1105
1931
  type: "step";
@@ -1108,8 +1934,16 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
1108
1934
  radiusY: number;
1109
1935
  label?: {
1110
1936
  text: string;
1937
+ opacity?: number | undefined;
1938
+ font?: {
1939
+ family?: string | undefined;
1940
+ size?: number | undefined;
1941
+ weight?: number | "normal" | "bold" | undefined;
1942
+ style?: "normal" | "italic" | "oblique" | undefined;
1943
+ } | undefined;
1111
1944
  position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
1112
1945
  side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
1946
+ textColor?: string | undefined;
1113
1947
  } | undefined;
1114
1948
  }>]>;
1115
1949
  /** Move step:移动游标但不绘制 */