@hirokisakabe/pom 8.3.0 → 8.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +35 -23
- package/dist/autoFit/autoFit.js +1 -1
- package/dist/autoFit/autoFit.js.map +1 -1
- package/dist/autoFit/strategies/reduceFontSize.js +16 -14
- package/dist/autoFit/strategies/reduceFontSize.js.map +1 -1
- package/dist/autoFit/strategies/reduceGapAndPadding.js +13 -20
- package/dist/autoFit/strategies/reduceGapAndPadding.js.map +1 -1
- package/dist/autoFit/strategies/reduceTableRowHeight.js +8 -2
- package/dist/autoFit/strategies/reduceTableRowHeight.js.map +1 -1
- package/dist/autoFit/strategies/uniformScale.js +19 -20
- package/dist/autoFit/strategies/uniformScale.js.map +1 -1
- package/dist/autoFit/strategyResult.js +15 -0
- package/dist/autoFit/strategyResult.js.map +1 -0
- package/dist/buildPptx.js +1 -1
- package/dist/calcYogaLayout/calcYogaLayout.js +16 -27
- package/dist/calcYogaLayout/calcYogaLayout.js.map +1 -1
- package/dist/diagnostics.d.ts +1 -1
- package/dist/diagnostics.d.ts.map +1 -1
- package/dist/diagnostics.js.map +1 -1
- package/dist/parseXml/coercionRules.js +43 -8
- package/dist/parseXml/coercionRules.js.map +1 -1
- package/dist/parseXml/parseXml.d.ts +8 -3
- package/dist/parseXml/parseXml.d.ts.map +1 -1
- package/dist/parseXml/parseXml.js +192 -212
- package/dist/parseXml/parseXml.js.map +1 -1
- package/dist/parseXml/serializeXml.d.ts.map +1 -1
- package/dist/parseXml/serializeXml.js +12 -17
- package/dist/parseXml/serializeXml.js.map +1 -1
- package/dist/registry/definitions/arrow.js +2 -2
- package/dist/registry/definitions/arrow.js.map +1 -1
- package/dist/registry/definitions/chart.js +2 -2
- package/dist/registry/definitions/chart.js.map +1 -1
- package/dist/registry/definitions/compositeNodes.js +7 -12
- package/dist/registry/definitions/compositeNodes.js.map +1 -1
- package/dist/registry/definitions/icon.js +2 -2
- package/dist/registry/definitions/icon.js.map +1 -1
- package/dist/registry/definitions/image.js +2 -2
- package/dist/registry/definitions/image.js.map +1 -1
- package/dist/registry/definitions/layer.js +4 -5
- package/dist/registry/definitions/layer.js.map +1 -1
- package/dist/registry/definitions/line.js +2 -2
- package/dist/registry/definitions/line.js.map +1 -1
- package/dist/registry/definitions/list.js +3 -4
- package/dist/registry/definitions/list.js.map +1 -1
- package/dist/registry/definitions/shape.js +2 -2
- package/dist/registry/definitions/shape.js.map +1 -1
- package/dist/registry/definitions/stack.js +3 -4
- package/dist/registry/definitions/stack.js.map +1 -1
- package/dist/registry/definitions/svg.js +2 -2
- package/dist/registry/definitions/svg.js.map +1 -1
- package/dist/registry/definitions/table.js +2 -2
- package/dist/registry/definitions/table.js.map +1 -1
- package/dist/registry/definitions/text.js +2 -2
- package/dist/registry/definitions/text.js.map +1 -1
- package/dist/registry/index.js.map +1 -1
- package/dist/registry/nodeMetadata.js +208 -0
- package/dist/registry/nodeMetadata.js.map +1 -0
- package/dist/registry/nodeRegistry.js +3 -0
- package/dist/registry/nodeRegistry.js.map +1 -1
- package/dist/registry/xmlChildRules.js +55 -0
- package/dist/registry/xmlChildRules.js.map +1 -0
- package/dist/renderPptx/nodes/arrow.js +7 -28
- package/dist/renderPptx/nodes/arrow.js.map +1 -1
- package/dist/renderPptx/nodes/chart.js +2 -7
- package/dist/renderPptx/nodes/chart.js.map +1 -1
- package/dist/renderPptx/nodes/flow.js +6 -13
- package/dist/renderPptx/nodes/flow.js.map +1 -1
- package/dist/renderPptx/nodes/icon.js +4 -2
- package/dist/renderPptx/nodes/icon.js.map +1 -1
- package/dist/renderPptx/nodes/image.js +5 -13
- package/dist/renderPptx/nodes/image.js.map +1 -1
- package/dist/renderPptx/nodes/line.js +9 -33
- package/dist/renderPptx/nodes/line.js.map +1 -1
- package/dist/renderPptx/nodes/list.js +8 -20
- package/dist/renderPptx/nodes/list.js.map +1 -1
- package/dist/renderPptx/nodes/matrix.js +10 -11
- package/dist/renderPptx/nodes/matrix.js.map +1 -1
- package/dist/renderPptx/nodes/processArrow.js +9 -16
- package/dist/renderPptx/nodes/processArrow.js.map +1 -1
- package/dist/renderPptx/nodes/pyramid.js +5 -7
- package/dist/renderPptx/nodes/pyramid.js.map +1 -1
- package/dist/renderPptx/nodes/shape.js +7 -20
- package/dist/renderPptx/nodes/shape.js.map +1 -1
- package/dist/renderPptx/nodes/svg.js +2 -5
- package/dist/renderPptx/nodes/svg.js.map +1 -1
- package/dist/renderPptx/nodes/table.js +2 -5
- package/dist/renderPptx/nodes/table.js.map +1 -1
- package/dist/renderPptx/nodes/text.js +4 -1
- package/dist/renderPptx/nodes/text.js.map +1 -1
- package/dist/renderPptx/nodes/timeline.js +20 -22
- package/dist/renderPptx/nodes/timeline.js.map +1 -1
- package/dist/renderPptx/nodes/tree.js +5 -5
- package/dist/renderPptx/nodes/tree.js.map +1 -1
- package/dist/renderPptx/renderPptx.js +13 -29
- package/dist/renderPptx/renderPptx.js.map +1 -1
- package/dist/renderPptx/textOptions.js +32 -8
- package/dist/renderPptx/textOptions.js.map +1 -1
- package/dist/renderPptx/units.js +11 -1
- package/dist/renderPptx/units.js.map +1 -1
- package/dist/renderPptx/utils/backgroundBorder.js +103 -57
- package/dist/renderPptx/utils/backgroundBorder.js.map +1 -1
- package/dist/renderPptx/utils/contentArea.js +26 -9
- package/dist/renderPptx/utils/contentArea.js.map +1 -1
- package/dist/renderPptx/utils/scaleToFit.js +17 -1
- package/dist/renderPptx/utils/scaleToFit.js.map +1 -1
- package/dist/renderPptx/utils/straightLine.js +41 -0
- package/dist/renderPptx/utils/straightLine.js.map +1 -0
- package/dist/renderPptx/utils/visualStyle.js +113 -0
- package/dist/renderPptx/utils/visualStyle.js.map +1 -0
- package/dist/shared/boxSpacing.js +63 -0
- package/dist/shared/boxSpacing.js.map +1 -0
- package/dist/shared/walkTree.js +1 -7
- package/dist/shared/walkTree.js.map +1 -1
- package/dist/toPositioned/toPositioned.js +1 -1
- package/dist/toPositioned/toPositioned.js.map +1 -1
- package/dist/types.d.ts +1127 -95
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +47 -17
- package/dist/types.js.map +1 -1
- package/package.json +4 -3
package/dist/types.d.ts
CHANGED
|
@@ -67,6 +67,62 @@ declare const basePOMNodeSchema: z.ZodObject<{
|
|
|
67
67
|
sysDot: "sysDot";
|
|
68
68
|
}>>;
|
|
69
69
|
}, z.core.$strip>>;
|
|
70
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
71
|
+
color: z.ZodOptional<z.ZodString>;
|
|
72
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
73
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
74
|
+
dash: "dash";
|
|
75
|
+
solid: "solid";
|
|
76
|
+
dashDot: "dashDot";
|
|
77
|
+
lgDash: "lgDash";
|
|
78
|
+
lgDashDot: "lgDashDot";
|
|
79
|
+
lgDashDotDot: "lgDashDotDot";
|
|
80
|
+
sysDash: "sysDash";
|
|
81
|
+
sysDot: "sysDot";
|
|
82
|
+
}>>;
|
|
83
|
+
}, z.core.$strip>>;
|
|
84
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
85
|
+
color: z.ZodOptional<z.ZodString>;
|
|
86
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
87
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
88
|
+
dash: "dash";
|
|
89
|
+
solid: "solid";
|
|
90
|
+
dashDot: "dashDot";
|
|
91
|
+
lgDash: "lgDash";
|
|
92
|
+
lgDashDot: "lgDashDot";
|
|
93
|
+
lgDashDotDot: "lgDashDotDot";
|
|
94
|
+
sysDash: "sysDash";
|
|
95
|
+
sysDot: "sysDot";
|
|
96
|
+
}>>;
|
|
97
|
+
}, z.core.$strip>>;
|
|
98
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
99
|
+
color: z.ZodOptional<z.ZodString>;
|
|
100
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
101
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
102
|
+
dash: "dash";
|
|
103
|
+
solid: "solid";
|
|
104
|
+
dashDot: "dashDot";
|
|
105
|
+
lgDash: "lgDash";
|
|
106
|
+
lgDashDot: "lgDashDot";
|
|
107
|
+
lgDashDotDot: "lgDashDotDot";
|
|
108
|
+
sysDash: "sysDash";
|
|
109
|
+
sysDot: "sysDot";
|
|
110
|
+
}>>;
|
|
111
|
+
}, z.core.$strip>>;
|
|
112
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
113
|
+
color: z.ZodOptional<z.ZodString>;
|
|
114
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
115
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
116
|
+
dash: "dash";
|
|
117
|
+
solid: "solid";
|
|
118
|
+
dashDot: "dashDot";
|
|
119
|
+
lgDash: "lgDash";
|
|
120
|
+
lgDashDot: "lgDashDot";
|
|
121
|
+
lgDashDotDot: "lgDashDotDot";
|
|
122
|
+
sysDash: "sysDash";
|
|
123
|
+
sysDot: "sysDot";
|
|
124
|
+
}>>;
|
|
125
|
+
}, z.core.$strip>>;
|
|
70
126
|
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
71
127
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
72
128
|
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
@@ -142,6 +198,62 @@ declare const textNodeSchema: z.ZodObject<{
|
|
|
142
198
|
sysDot: "sysDot";
|
|
143
199
|
}>>;
|
|
144
200
|
}, z.core.$strip>>;
|
|
201
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
202
|
+
color: z.ZodOptional<z.ZodString>;
|
|
203
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
204
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
205
|
+
dash: "dash";
|
|
206
|
+
solid: "solid";
|
|
207
|
+
dashDot: "dashDot";
|
|
208
|
+
lgDash: "lgDash";
|
|
209
|
+
lgDashDot: "lgDashDot";
|
|
210
|
+
lgDashDotDot: "lgDashDotDot";
|
|
211
|
+
sysDash: "sysDash";
|
|
212
|
+
sysDot: "sysDot";
|
|
213
|
+
}>>;
|
|
214
|
+
}, z.core.$strip>>;
|
|
215
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
216
|
+
color: z.ZodOptional<z.ZodString>;
|
|
217
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
218
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
219
|
+
dash: "dash";
|
|
220
|
+
solid: "solid";
|
|
221
|
+
dashDot: "dashDot";
|
|
222
|
+
lgDash: "lgDash";
|
|
223
|
+
lgDashDot: "lgDashDot";
|
|
224
|
+
lgDashDotDot: "lgDashDotDot";
|
|
225
|
+
sysDash: "sysDash";
|
|
226
|
+
sysDot: "sysDot";
|
|
227
|
+
}>>;
|
|
228
|
+
}, z.core.$strip>>;
|
|
229
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
230
|
+
color: z.ZodOptional<z.ZodString>;
|
|
231
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
232
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
233
|
+
dash: "dash";
|
|
234
|
+
solid: "solid";
|
|
235
|
+
dashDot: "dashDot";
|
|
236
|
+
lgDash: "lgDash";
|
|
237
|
+
lgDashDot: "lgDashDot";
|
|
238
|
+
lgDashDotDot: "lgDashDotDot";
|
|
239
|
+
sysDash: "sysDash";
|
|
240
|
+
sysDot: "sysDot";
|
|
241
|
+
}>>;
|
|
242
|
+
}, z.core.$strip>>;
|
|
243
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
244
|
+
color: z.ZodOptional<z.ZodString>;
|
|
245
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
246
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
247
|
+
dash: "dash";
|
|
248
|
+
solid: "solid";
|
|
249
|
+
dashDot: "dashDot";
|
|
250
|
+
lgDash: "lgDash";
|
|
251
|
+
lgDashDot: "lgDashDot";
|
|
252
|
+
lgDashDotDot: "lgDashDotDot";
|
|
253
|
+
sysDash: "sysDash";
|
|
254
|
+
sysDot: "sysDot";
|
|
255
|
+
}>>;
|
|
256
|
+
}, z.core.$strip>>;
|
|
145
257
|
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
146
258
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
147
259
|
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
@@ -185,6 +297,7 @@ declare const textNodeSchema: z.ZodObject<{
|
|
|
185
297
|
fontFamily: z.ZodOptional<z.ZodString>;
|
|
186
298
|
letterSpacing: z.ZodOptional<z.ZodNumber>;
|
|
187
299
|
}, z.core.$strip>>>;
|
|
300
|
+
rotate: z.ZodOptional<z.ZodNumber>;
|
|
188
301
|
fontSize: z.ZodOptional<z.ZodNumber>;
|
|
189
302
|
color: z.ZodOptional<z.ZodString>;
|
|
190
303
|
textAlign: z.ZodOptional<z.ZodEnum<{
|
|
@@ -219,6 +332,15 @@ declare const textNodeSchema: z.ZodObject<{
|
|
|
219
332
|
fontFamily: z.ZodOptional<z.ZodString>;
|
|
220
333
|
lineHeight: z.ZodOptional<z.ZodNumber>;
|
|
221
334
|
letterSpacing: z.ZodOptional<z.ZodNumber>;
|
|
335
|
+
glow: z.ZodOptional<z.ZodObject<{
|
|
336
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
337
|
+
opacity: z.ZodOptional<z.ZodNumber>;
|
|
338
|
+
color: z.ZodOptional<z.ZodString>;
|
|
339
|
+
}, z.core.$strip>>;
|
|
340
|
+
outline: z.ZodOptional<z.ZodObject<{
|
|
341
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
342
|
+
color: z.ZodOptional<z.ZodString>;
|
|
343
|
+
}, z.core.$strip>>;
|
|
222
344
|
}, z.core.$strip>;
|
|
223
345
|
declare const ulNodeSchema: z.ZodObject<{
|
|
224
346
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -264,6 +386,62 @@ declare const ulNodeSchema: z.ZodObject<{
|
|
|
264
386
|
sysDot: "sysDot";
|
|
265
387
|
}>>;
|
|
266
388
|
}, z.core.$strip>>;
|
|
389
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
390
|
+
color: z.ZodOptional<z.ZodString>;
|
|
391
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
392
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
393
|
+
dash: "dash";
|
|
394
|
+
solid: "solid";
|
|
395
|
+
dashDot: "dashDot";
|
|
396
|
+
lgDash: "lgDash";
|
|
397
|
+
lgDashDot: "lgDashDot";
|
|
398
|
+
lgDashDotDot: "lgDashDotDot";
|
|
399
|
+
sysDash: "sysDash";
|
|
400
|
+
sysDot: "sysDot";
|
|
401
|
+
}>>;
|
|
402
|
+
}, z.core.$strip>>;
|
|
403
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
404
|
+
color: z.ZodOptional<z.ZodString>;
|
|
405
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
406
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
407
|
+
dash: "dash";
|
|
408
|
+
solid: "solid";
|
|
409
|
+
dashDot: "dashDot";
|
|
410
|
+
lgDash: "lgDash";
|
|
411
|
+
lgDashDot: "lgDashDot";
|
|
412
|
+
lgDashDotDot: "lgDashDotDot";
|
|
413
|
+
sysDash: "sysDash";
|
|
414
|
+
sysDot: "sysDot";
|
|
415
|
+
}>>;
|
|
416
|
+
}, z.core.$strip>>;
|
|
417
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
418
|
+
color: z.ZodOptional<z.ZodString>;
|
|
419
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
420
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
421
|
+
dash: "dash";
|
|
422
|
+
solid: "solid";
|
|
423
|
+
dashDot: "dashDot";
|
|
424
|
+
lgDash: "lgDash";
|
|
425
|
+
lgDashDot: "lgDashDot";
|
|
426
|
+
lgDashDotDot: "lgDashDotDot";
|
|
427
|
+
sysDash: "sysDash";
|
|
428
|
+
sysDot: "sysDot";
|
|
429
|
+
}>>;
|
|
430
|
+
}, z.core.$strip>>;
|
|
431
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
432
|
+
color: z.ZodOptional<z.ZodString>;
|
|
433
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
434
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
435
|
+
dash: "dash";
|
|
436
|
+
solid: "solid";
|
|
437
|
+
dashDot: "dashDot";
|
|
438
|
+
lgDash: "lgDash";
|
|
439
|
+
lgDashDot: "lgDashDot";
|
|
440
|
+
lgDashDotDot: "lgDashDotDot";
|
|
441
|
+
sysDash: "sysDash";
|
|
442
|
+
sysDot: "sysDot";
|
|
443
|
+
}>>;
|
|
444
|
+
}, z.core.$strip>>;
|
|
267
445
|
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
268
446
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
269
447
|
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
@@ -414,6 +592,62 @@ declare const olNodeSchema: z.ZodObject<{
|
|
|
414
592
|
sysDot: "sysDot";
|
|
415
593
|
}>>;
|
|
416
594
|
}, z.core.$strip>>;
|
|
595
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
596
|
+
color: z.ZodOptional<z.ZodString>;
|
|
597
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
598
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
599
|
+
dash: "dash";
|
|
600
|
+
solid: "solid";
|
|
601
|
+
dashDot: "dashDot";
|
|
602
|
+
lgDash: "lgDash";
|
|
603
|
+
lgDashDot: "lgDashDot";
|
|
604
|
+
lgDashDotDot: "lgDashDotDot";
|
|
605
|
+
sysDash: "sysDash";
|
|
606
|
+
sysDot: "sysDot";
|
|
607
|
+
}>>;
|
|
608
|
+
}, z.core.$strip>>;
|
|
609
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
610
|
+
color: z.ZodOptional<z.ZodString>;
|
|
611
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
612
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
613
|
+
dash: "dash";
|
|
614
|
+
solid: "solid";
|
|
615
|
+
dashDot: "dashDot";
|
|
616
|
+
lgDash: "lgDash";
|
|
617
|
+
lgDashDot: "lgDashDot";
|
|
618
|
+
lgDashDotDot: "lgDashDotDot";
|
|
619
|
+
sysDash: "sysDash";
|
|
620
|
+
sysDot: "sysDot";
|
|
621
|
+
}>>;
|
|
622
|
+
}, z.core.$strip>>;
|
|
623
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
624
|
+
color: z.ZodOptional<z.ZodString>;
|
|
625
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
626
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
627
|
+
dash: "dash";
|
|
628
|
+
solid: "solid";
|
|
629
|
+
dashDot: "dashDot";
|
|
630
|
+
lgDash: "lgDash";
|
|
631
|
+
lgDashDot: "lgDashDot";
|
|
632
|
+
lgDashDotDot: "lgDashDotDot";
|
|
633
|
+
sysDash: "sysDash";
|
|
634
|
+
sysDot: "sysDot";
|
|
635
|
+
}>>;
|
|
636
|
+
}, z.core.$strip>>;
|
|
637
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
638
|
+
color: z.ZodOptional<z.ZodString>;
|
|
639
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
640
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
641
|
+
dash: "dash";
|
|
642
|
+
solid: "solid";
|
|
643
|
+
dashDot: "dashDot";
|
|
644
|
+
lgDash: "lgDash";
|
|
645
|
+
lgDashDot: "lgDashDot";
|
|
646
|
+
lgDashDotDot: "lgDashDotDot";
|
|
647
|
+
sysDash: "sysDash";
|
|
648
|
+
sysDot: "sysDot";
|
|
649
|
+
}>>;
|
|
650
|
+
}, z.core.$strip>>;
|
|
417
651
|
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
418
652
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
419
653
|
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
@@ -583,40 +817,96 @@ declare const imageNodeSchema: z.ZodObject<{
|
|
|
583
817
|
sysDot: "sysDot";
|
|
584
818
|
}>>;
|
|
585
819
|
}, z.core.$strip>>;
|
|
586
|
-
|
|
587
|
-
opacity: z.ZodOptional<z.ZodNumber>;
|
|
588
|
-
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
589
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
590
|
-
relative: "relative";
|
|
591
|
-
absolute: "absolute";
|
|
592
|
-
}>>;
|
|
593
|
-
top: z.ZodOptional<z.ZodNumber>;
|
|
594
|
-
right: z.ZodOptional<z.ZodNumber>;
|
|
595
|
-
bottom: z.ZodOptional<z.ZodNumber>;
|
|
596
|
-
left: z.ZodOptional<z.ZodNumber>;
|
|
597
|
-
alignSelf: z.ZodOptional<z.ZodEnum<{
|
|
598
|
-
auto: "auto";
|
|
599
|
-
start: "start";
|
|
600
|
-
center: "center";
|
|
601
|
-
end: "end";
|
|
602
|
-
stretch: "stretch";
|
|
603
|
-
}>>;
|
|
604
|
-
shadow: z.ZodOptional<z.ZodObject<{
|
|
605
|
-
type: z.ZodOptional<z.ZodEnum<{
|
|
606
|
-
outer: "outer";
|
|
607
|
-
inner: "inner";
|
|
608
|
-
}>>;
|
|
609
|
-
opacity: z.ZodOptional<z.ZodNumber>;
|
|
610
|
-
blur: z.ZodOptional<z.ZodNumber>;
|
|
611
|
-
angle: z.ZodOptional<z.ZodNumber>;
|
|
612
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
820
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
613
821
|
color: z.ZodOptional<z.ZodString>;
|
|
822
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
823
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
824
|
+
dash: "dash";
|
|
825
|
+
solid: "solid";
|
|
826
|
+
dashDot: "dashDot";
|
|
827
|
+
lgDash: "lgDash";
|
|
828
|
+
lgDashDot: "lgDashDot";
|
|
829
|
+
lgDashDotDot: "lgDashDotDot";
|
|
830
|
+
sysDash: "sysDash";
|
|
831
|
+
sysDot: "sysDot";
|
|
832
|
+
}>>;
|
|
614
833
|
}, z.core.$strip>>;
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
834
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
835
|
+
color: z.ZodOptional<z.ZodString>;
|
|
836
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
837
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
838
|
+
dash: "dash";
|
|
839
|
+
solid: "solid";
|
|
840
|
+
dashDot: "dashDot";
|
|
841
|
+
lgDash: "lgDash";
|
|
842
|
+
lgDashDot: "lgDashDot";
|
|
843
|
+
lgDashDotDot: "lgDashDotDot";
|
|
844
|
+
sysDash: "sysDash";
|
|
845
|
+
sysDot: "sysDot";
|
|
846
|
+
}>>;
|
|
847
|
+
}, z.core.$strip>>;
|
|
848
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
849
|
+
color: z.ZodOptional<z.ZodString>;
|
|
850
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
851
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
852
|
+
dash: "dash";
|
|
853
|
+
solid: "solid";
|
|
854
|
+
dashDot: "dashDot";
|
|
855
|
+
lgDash: "lgDash";
|
|
856
|
+
lgDashDot: "lgDashDot";
|
|
857
|
+
lgDashDotDot: "lgDashDotDot";
|
|
858
|
+
sysDash: "sysDash";
|
|
859
|
+
sysDot: "sysDot";
|
|
860
|
+
}>>;
|
|
861
|
+
}, z.core.$strip>>;
|
|
862
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
863
|
+
color: z.ZodOptional<z.ZodString>;
|
|
864
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
865
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
866
|
+
dash: "dash";
|
|
867
|
+
solid: "solid";
|
|
868
|
+
dashDot: "dashDot";
|
|
869
|
+
lgDash: "lgDash";
|
|
870
|
+
lgDashDot: "lgDashDot";
|
|
871
|
+
lgDashDotDot: "lgDashDotDot";
|
|
872
|
+
sysDash: "sysDash";
|
|
873
|
+
sysDot: "sysDot";
|
|
874
|
+
}>>;
|
|
875
|
+
}, z.core.$strip>>;
|
|
876
|
+
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
877
|
+
opacity: z.ZodOptional<z.ZodNumber>;
|
|
878
|
+
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
879
|
+
position: z.ZodOptional<z.ZodEnum<{
|
|
880
|
+
relative: "relative";
|
|
881
|
+
absolute: "absolute";
|
|
882
|
+
}>>;
|
|
883
|
+
top: z.ZodOptional<z.ZodNumber>;
|
|
884
|
+
right: z.ZodOptional<z.ZodNumber>;
|
|
885
|
+
bottom: z.ZodOptional<z.ZodNumber>;
|
|
886
|
+
left: z.ZodOptional<z.ZodNumber>;
|
|
887
|
+
alignSelf: z.ZodOptional<z.ZodEnum<{
|
|
888
|
+
auto: "auto";
|
|
889
|
+
start: "start";
|
|
890
|
+
center: "center";
|
|
891
|
+
end: "end";
|
|
892
|
+
stretch: "stretch";
|
|
893
|
+
}>>;
|
|
894
|
+
shadow: z.ZodOptional<z.ZodObject<{
|
|
895
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
896
|
+
outer: "outer";
|
|
897
|
+
inner: "inner";
|
|
898
|
+
}>>;
|
|
899
|
+
opacity: z.ZodOptional<z.ZodNumber>;
|
|
900
|
+
blur: z.ZodOptional<z.ZodNumber>;
|
|
901
|
+
angle: z.ZodOptional<z.ZodNumber>;
|
|
902
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
903
|
+
color: z.ZodOptional<z.ZodString>;
|
|
904
|
+
}, z.core.$strip>>;
|
|
905
|
+
type: z.ZodLiteral<"image">;
|
|
906
|
+
src: z.ZodString;
|
|
907
|
+
sizing: z.ZodOptional<z.ZodObject<{
|
|
908
|
+
type: z.ZodEnum<{
|
|
909
|
+
cover: "cover";
|
|
620
910
|
contain: "contain";
|
|
621
911
|
crop: "crop";
|
|
622
912
|
}>;
|
|
@@ -625,6 +915,7 @@ declare const imageNodeSchema: z.ZodObject<{
|
|
|
625
915
|
x: z.ZodOptional<z.ZodNumber>;
|
|
626
916
|
y: z.ZodOptional<z.ZodNumber>;
|
|
627
917
|
}, z.core.$strip>>;
|
|
918
|
+
rotate: z.ZodOptional<z.ZodNumber>;
|
|
628
919
|
}, z.core.$strip>;
|
|
629
920
|
declare const iconNodeSchema: z.ZodObject<{
|
|
630
921
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -670,6 +961,62 @@ declare const iconNodeSchema: z.ZodObject<{
|
|
|
670
961
|
sysDot: "sysDot";
|
|
671
962
|
}>>;
|
|
672
963
|
}, z.core.$strip>>;
|
|
964
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
965
|
+
color: z.ZodOptional<z.ZodString>;
|
|
966
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
967
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
968
|
+
dash: "dash";
|
|
969
|
+
solid: "solid";
|
|
970
|
+
dashDot: "dashDot";
|
|
971
|
+
lgDash: "lgDash";
|
|
972
|
+
lgDashDot: "lgDashDot";
|
|
973
|
+
lgDashDotDot: "lgDashDotDot";
|
|
974
|
+
sysDash: "sysDash";
|
|
975
|
+
sysDot: "sysDot";
|
|
976
|
+
}>>;
|
|
977
|
+
}, z.core.$strip>>;
|
|
978
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
979
|
+
color: z.ZodOptional<z.ZodString>;
|
|
980
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
981
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
982
|
+
dash: "dash";
|
|
983
|
+
solid: "solid";
|
|
984
|
+
dashDot: "dashDot";
|
|
985
|
+
lgDash: "lgDash";
|
|
986
|
+
lgDashDot: "lgDashDot";
|
|
987
|
+
lgDashDotDot: "lgDashDotDot";
|
|
988
|
+
sysDash: "sysDash";
|
|
989
|
+
sysDot: "sysDot";
|
|
990
|
+
}>>;
|
|
991
|
+
}, z.core.$strip>>;
|
|
992
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
993
|
+
color: z.ZodOptional<z.ZodString>;
|
|
994
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
995
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
996
|
+
dash: "dash";
|
|
997
|
+
solid: "solid";
|
|
998
|
+
dashDot: "dashDot";
|
|
999
|
+
lgDash: "lgDash";
|
|
1000
|
+
lgDashDot: "lgDashDot";
|
|
1001
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1002
|
+
sysDash: "sysDash";
|
|
1003
|
+
sysDot: "sysDot";
|
|
1004
|
+
}>>;
|
|
1005
|
+
}, z.core.$strip>>;
|
|
1006
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
1007
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1008
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1009
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1010
|
+
dash: "dash";
|
|
1011
|
+
solid: "solid";
|
|
1012
|
+
dashDot: "dashDot";
|
|
1013
|
+
lgDash: "lgDash";
|
|
1014
|
+
lgDashDot: "lgDashDot";
|
|
1015
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1016
|
+
sysDash: "sysDash";
|
|
1017
|
+
sysDot: "sysDot";
|
|
1018
|
+
}>>;
|
|
1019
|
+
}, z.core.$strip>>;
|
|
673
1020
|
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
674
1021
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
675
1022
|
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
@@ -712,6 +1059,7 @@ declare const iconNodeSchema: z.ZodObject<{
|
|
|
712
1059
|
"square-outlined": "square-outlined";
|
|
713
1060
|
}>>;
|
|
714
1061
|
bgColor: z.ZodOptional<z.ZodString>;
|
|
1062
|
+
rotate: z.ZodOptional<z.ZodNumber>;
|
|
715
1063
|
}, z.core.$strip>;
|
|
716
1064
|
type IconNode = z.infer<typeof iconNodeSchema>;
|
|
717
1065
|
declare const svgNodeSchema: z.ZodObject<{
|
|
@@ -756,6 +1104,62 @@ declare const svgNodeSchema: z.ZodObject<{
|
|
|
756
1104
|
sysDot: "sysDot";
|
|
757
1105
|
}>>;
|
|
758
1106
|
}, z.core.$strip>>;
|
|
1107
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
1108
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1109
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1110
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1111
|
+
dash: "dash";
|
|
1112
|
+
solid: "solid";
|
|
1113
|
+
dashDot: "dashDot";
|
|
1114
|
+
lgDash: "lgDash";
|
|
1115
|
+
lgDashDot: "lgDashDot";
|
|
1116
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1117
|
+
sysDash: "sysDash";
|
|
1118
|
+
sysDot: "sysDot";
|
|
1119
|
+
}>>;
|
|
1120
|
+
}, z.core.$strip>>;
|
|
1121
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
1122
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1123
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1124
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1125
|
+
dash: "dash";
|
|
1126
|
+
solid: "solid";
|
|
1127
|
+
dashDot: "dashDot";
|
|
1128
|
+
lgDash: "lgDash";
|
|
1129
|
+
lgDashDot: "lgDashDot";
|
|
1130
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1131
|
+
sysDash: "sysDash";
|
|
1132
|
+
sysDot: "sysDot";
|
|
1133
|
+
}>>;
|
|
1134
|
+
}, z.core.$strip>>;
|
|
1135
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
1136
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1137
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1138
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1139
|
+
dash: "dash";
|
|
1140
|
+
solid: "solid";
|
|
1141
|
+
dashDot: "dashDot";
|
|
1142
|
+
lgDash: "lgDash";
|
|
1143
|
+
lgDashDot: "lgDashDot";
|
|
1144
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1145
|
+
sysDash: "sysDash";
|
|
1146
|
+
sysDot: "sysDot";
|
|
1147
|
+
}>>;
|
|
1148
|
+
}, z.core.$strip>>;
|
|
1149
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
1150
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1151
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1152
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1153
|
+
dash: "dash";
|
|
1154
|
+
solid: "solid";
|
|
1155
|
+
dashDot: "dashDot";
|
|
1156
|
+
lgDash: "lgDash";
|
|
1157
|
+
lgDashDot: "lgDashDot";
|
|
1158
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1159
|
+
sysDash: "sysDash";
|
|
1160
|
+
sysDot: "sysDot";
|
|
1161
|
+
}>>;
|
|
1162
|
+
}, z.core.$strip>>;
|
|
759
1163
|
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
760
1164
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
761
1165
|
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
@@ -836,6 +1240,62 @@ declare const tableNodeSchema: z.ZodObject<{
|
|
|
836
1240
|
sysDot: "sysDot";
|
|
837
1241
|
}>>;
|
|
838
1242
|
}, z.core.$strip>>;
|
|
1243
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
1244
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1245
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1246
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1247
|
+
dash: "dash";
|
|
1248
|
+
solid: "solid";
|
|
1249
|
+
dashDot: "dashDot";
|
|
1250
|
+
lgDash: "lgDash";
|
|
1251
|
+
lgDashDot: "lgDashDot";
|
|
1252
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1253
|
+
sysDash: "sysDash";
|
|
1254
|
+
sysDot: "sysDot";
|
|
1255
|
+
}>>;
|
|
1256
|
+
}, z.core.$strip>>;
|
|
1257
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
1258
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1259
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1260
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1261
|
+
dash: "dash";
|
|
1262
|
+
solid: "solid";
|
|
1263
|
+
dashDot: "dashDot";
|
|
1264
|
+
lgDash: "lgDash";
|
|
1265
|
+
lgDashDot: "lgDashDot";
|
|
1266
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1267
|
+
sysDash: "sysDash";
|
|
1268
|
+
sysDot: "sysDot";
|
|
1269
|
+
}>>;
|
|
1270
|
+
}, z.core.$strip>>;
|
|
1271
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
1272
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1273
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1274
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1275
|
+
dash: "dash";
|
|
1276
|
+
solid: "solid";
|
|
1277
|
+
dashDot: "dashDot";
|
|
1278
|
+
lgDash: "lgDash";
|
|
1279
|
+
lgDashDot: "lgDashDot";
|
|
1280
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1281
|
+
sysDash: "sysDash";
|
|
1282
|
+
sysDot: "sysDot";
|
|
1283
|
+
}>>;
|
|
1284
|
+
}, z.core.$strip>>;
|
|
1285
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
1286
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1287
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1288
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1289
|
+
dash: "dash";
|
|
1290
|
+
solid: "solid";
|
|
1291
|
+
dashDot: "dashDot";
|
|
1292
|
+
lgDash: "lgDash";
|
|
1293
|
+
lgDashDot: "lgDashDot";
|
|
1294
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1295
|
+
sysDash: "sysDash";
|
|
1296
|
+
sysDot: "sysDot";
|
|
1297
|
+
}>>;
|
|
1298
|
+
}, z.core.$strip>>;
|
|
839
1299
|
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
840
1300
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
841
1301
|
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
@@ -982,33 +1442,89 @@ declare const shapeNodeSchema: z.ZodObject<{
|
|
|
982
1442
|
sysDot: "sysDot";
|
|
983
1443
|
}>>;
|
|
984
1444
|
}, z.core.$strip>>;
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1445
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
1446
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1447
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1448
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1449
|
+
dash: "dash";
|
|
1450
|
+
solid: "solid";
|
|
1451
|
+
dashDot: "dashDot";
|
|
1452
|
+
lgDash: "lgDash";
|
|
1453
|
+
lgDashDot: "lgDashDot";
|
|
1454
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1455
|
+
sysDash: "sysDash";
|
|
1456
|
+
sysDot: "sysDot";
|
|
1457
|
+
}>>;
|
|
1458
|
+
}, z.core.$strip>>;
|
|
1459
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
1460
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1461
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1462
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1463
|
+
dash: "dash";
|
|
1464
|
+
solid: "solid";
|
|
1465
|
+
dashDot: "dashDot";
|
|
1466
|
+
lgDash: "lgDash";
|
|
1467
|
+
lgDashDot: "lgDashDot";
|
|
1468
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1469
|
+
sysDash: "sysDash";
|
|
1470
|
+
sysDot: "sysDot";
|
|
1471
|
+
}>>;
|
|
1472
|
+
}, z.core.$strip>>;
|
|
1473
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
1474
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1475
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1476
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1477
|
+
dash: "dash";
|
|
1478
|
+
solid: "solid";
|
|
1479
|
+
dashDot: "dashDot";
|
|
1480
|
+
lgDash: "lgDash";
|
|
1481
|
+
lgDashDot: "lgDashDot";
|
|
1482
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1483
|
+
sysDash: "sysDash";
|
|
1484
|
+
sysDot: "sysDot";
|
|
1485
|
+
}>>;
|
|
1486
|
+
}, z.core.$strip>>;
|
|
1487
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
1488
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1489
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1490
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1491
|
+
dash: "dash";
|
|
1492
|
+
solid: "solid";
|
|
1493
|
+
dashDot: "dashDot";
|
|
1494
|
+
lgDash: "lgDash";
|
|
1495
|
+
lgDashDot: "lgDashDot";
|
|
1496
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1497
|
+
sysDash: "sysDash";
|
|
1498
|
+
sysDot: "sysDot";
|
|
1499
|
+
}>>;
|
|
1500
|
+
}, z.core.$strip>>;
|
|
1501
|
+
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
1502
|
+
opacity: z.ZodOptional<z.ZodNumber>;
|
|
1503
|
+
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
1504
|
+
position: z.ZodOptional<z.ZodEnum<{
|
|
1505
|
+
relative: "relative";
|
|
1506
|
+
absolute: "absolute";
|
|
1507
|
+
}>>;
|
|
1508
|
+
top: z.ZodOptional<z.ZodNumber>;
|
|
1509
|
+
right: z.ZodOptional<z.ZodNumber>;
|
|
1510
|
+
bottom: z.ZodOptional<z.ZodNumber>;
|
|
1511
|
+
left: z.ZodOptional<z.ZodNumber>;
|
|
1512
|
+
alignSelf: z.ZodOptional<z.ZodEnum<{
|
|
1513
|
+
auto: "auto";
|
|
1514
|
+
start: "start";
|
|
1515
|
+
center: "center";
|
|
1516
|
+
end: "end";
|
|
1517
|
+
stretch: "stretch";
|
|
1518
|
+
}>>;
|
|
1519
|
+
shadow: z.ZodOptional<z.ZodObject<{
|
|
1520
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
1521
|
+
outer: "outer";
|
|
1522
|
+
inner: "inner";
|
|
1523
|
+
}>>;
|
|
1524
|
+
opacity: z.ZodOptional<z.ZodNumber>;
|
|
1525
|
+
blur: z.ZodOptional<z.ZodNumber>;
|
|
1526
|
+
angle: z.ZodOptional<z.ZodNumber>;
|
|
1527
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
1012
1528
|
color: z.ZodOptional<z.ZodString>;
|
|
1013
1529
|
}, z.core.$strip>>;
|
|
1014
1530
|
type: z.ZodLiteral<"shape">;
|
|
@@ -1193,6 +1709,7 @@ declare const shapeNodeSchema: z.ZodObject<{
|
|
|
1193
1709
|
wedgeRoundRectCallout: "wedgeRoundRectCallout";
|
|
1194
1710
|
}>;
|
|
1195
1711
|
text: z.ZodOptional<z.ZodString>;
|
|
1712
|
+
rotate: z.ZodOptional<z.ZodNumber>;
|
|
1196
1713
|
fill: z.ZodOptional<z.ZodObject<{
|
|
1197
1714
|
color: z.ZodOptional<z.ZodString>;
|
|
1198
1715
|
transparency: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1289,6 +1806,62 @@ declare const chartNodeSchema: z.ZodObject<{
|
|
|
1289
1806
|
sysDot: "sysDot";
|
|
1290
1807
|
}>>;
|
|
1291
1808
|
}, z.core.$strip>>;
|
|
1809
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
1810
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1811
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1812
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1813
|
+
dash: "dash";
|
|
1814
|
+
solid: "solid";
|
|
1815
|
+
dashDot: "dashDot";
|
|
1816
|
+
lgDash: "lgDash";
|
|
1817
|
+
lgDashDot: "lgDashDot";
|
|
1818
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1819
|
+
sysDash: "sysDash";
|
|
1820
|
+
sysDot: "sysDot";
|
|
1821
|
+
}>>;
|
|
1822
|
+
}, z.core.$strip>>;
|
|
1823
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
1824
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1825
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1826
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1827
|
+
dash: "dash";
|
|
1828
|
+
solid: "solid";
|
|
1829
|
+
dashDot: "dashDot";
|
|
1830
|
+
lgDash: "lgDash";
|
|
1831
|
+
lgDashDot: "lgDashDot";
|
|
1832
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1833
|
+
sysDash: "sysDash";
|
|
1834
|
+
sysDot: "sysDot";
|
|
1835
|
+
}>>;
|
|
1836
|
+
}, z.core.$strip>>;
|
|
1837
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
1838
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1839
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1840
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1841
|
+
dash: "dash";
|
|
1842
|
+
solid: "solid";
|
|
1843
|
+
dashDot: "dashDot";
|
|
1844
|
+
lgDash: "lgDash";
|
|
1845
|
+
lgDashDot: "lgDashDot";
|
|
1846
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1847
|
+
sysDash: "sysDash";
|
|
1848
|
+
sysDot: "sysDot";
|
|
1849
|
+
}>>;
|
|
1850
|
+
}, z.core.$strip>>;
|
|
1851
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
1852
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1853
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1854
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1855
|
+
dash: "dash";
|
|
1856
|
+
solid: "solid";
|
|
1857
|
+
dashDot: "dashDot";
|
|
1858
|
+
lgDash: "lgDash";
|
|
1859
|
+
lgDashDot: "lgDashDot";
|
|
1860
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1861
|
+
sysDash: "sysDash";
|
|
1862
|
+
sysDot: "sysDot";
|
|
1863
|
+
}>>;
|
|
1864
|
+
}, z.core.$strip>>;
|
|
1292
1865
|
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
1293
1866
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
1294
1867
|
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1393,6 +1966,62 @@ declare const timelineNodeSchema: z.ZodObject<{
|
|
|
1393
1966
|
sysDot: "sysDot";
|
|
1394
1967
|
}>>;
|
|
1395
1968
|
}, z.core.$strip>>;
|
|
1969
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
1970
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1971
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1972
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1973
|
+
dash: "dash";
|
|
1974
|
+
solid: "solid";
|
|
1975
|
+
dashDot: "dashDot";
|
|
1976
|
+
lgDash: "lgDash";
|
|
1977
|
+
lgDashDot: "lgDashDot";
|
|
1978
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1979
|
+
sysDash: "sysDash";
|
|
1980
|
+
sysDot: "sysDot";
|
|
1981
|
+
}>>;
|
|
1982
|
+
}, z.core.$strip>>;
|
|
1983
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
1984
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1985
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1986
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
1987
|
+
dash: "dash";
|
|
1988
|
+
solid: "solid";
|
|
1989
|
+
dashDot: "dashDot";
|
|
1990
|
+
lgDash: "lgDash";
|
|
1991
|
+
lgDashDot: "lgDashDot";
|
|
1992
|
+
lgDashDotDot: "lgDashDotDot";
|
|
1993
|
+
sysDash: "sysDash";
|
|
1994
|
+
sysDot: "sysDot";
|
|
1995
|
+
}>>;
|
|
1996
|
+
}, z.core.$strip>>;
|
|
1997
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
1998
|
+
color: z.ZodOptional<z.ZodString>;
|
|
1999
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2000
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2001
|
+
dash: "dash";
|
|
2002
|
+
solid: "solid";
|
|
2003
|
+
dashDot: "dashDot";
|
|
2004
|
+
lgDash: "lgDash";
|
|
2005
|
+
lgDashDot: "lgDashDot";
|
|
2006
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2007
|
+
sysDash: "sysDash";
|
|
2008
|
+
sysDot: "sysDot";
|
|
2009
|
+
}>>;
|
|
2010
|
+
}, z.core.$strip>>;
|
|
2011
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
2012
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2013
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2014
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2015
|
+
dash: "dash";
|
|
2016
|
+
solid: "solid";
|
|
2017
|
+
dashDot: "dashDot";
|
|
2018
|
+
lgDash: "lgDash";
|
|
2019
|
+
lgDashDot: "lgDashDot";
|
|
2020
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2021
|
+
sysDash: "sysDash";
|
|
2022
|
+
sysDot: "sysDot";
|
|
2023
|
+
}>>;
|
|
2024
|
+
}, z.core.$strip>>;
|
|
1396
2025
|
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
1397
2026
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
1398
2027
|
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1433,6 +2062,9 @@ declare const timelineNodeSchema: z.ZodObject<{
|
|
|
1433
2062
|
description: z.ZodOptional<z.ZodString>;
|
|
1434
2063
|
color: z.ZodOptional<z.ZodString>;
|
|
1435
2064
|
}, z.core.$strip>>;
|
|
2065
|
+
dateColor: z.ZodOptional<z.ZodString>;
|
|
2066
|
+
titleColor: z.ZodOptional<z.ZodString>;
|
|
2067
|
+
descriptionColor: z.ZodOptional<z.ZodString>;
|
|
1436
2068
|
}, z.core.$strip>;
|
|
1437
2069
|
type TimelineNode = z.infer<typeof timelineNodeSchema>;
|
|
1438
2070
|
declare const matrixNodeSchema: z.ZodObject<{
|
|
@@ -1479,6 +2111,62 @@ declare const matrixNodeSchema: z.ZodObject<{
|
|
|
1479
2111
|
sysDot: "sysDot";
|
|
1480
2112
|
}>>;
|
|
1481
2113
|
}, z.core.$strip>>;
|
|
2114
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
2115
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2116
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2117
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2118
|
+
dash: "dash";
|
|
2119
|
+
solid: "solid";
|
|
2120
|
+
dashDot: "dashDot";
|
|
2121
|
+
lgDash: "lgDash";
|
|
2122
|
+
lgDashDot: "lgDashDot";
|
|
2123
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2124
|
+
sysDash: "sysDash";
|
|
2125
|
+
sysDot: "sysDot";
|
|
2126
|
+
}>>;
|
|
2127
|
+
}, z.core.$strip>>;
|
|
2128
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
2129
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2130
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2131
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2132
|
+
dash: "dash";
|
|
2133
|
+
solid: "solid";
|
|
2134
|
+
dashDot: "dashDot";
|
|
2135
|
+
lgDash: "lgDash";
|
|
2136
|
+
lgDashDot: "lgDashDot";
|
|
2137
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2138
|
+
sysDash: "sysDash";
|
|
2139
|
+
sysDot: "sysDot";
|
|
2140
|
+
}>>;
|
|
2141
|
+
}, z.core.$strip>>;
|
|
2142
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
2143
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2144
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2145
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2146
|
+
dash: "dash";
|
|
2147
|
+
solid: "solid";
|
|
2148
|
+
dashDot: "dashDot";
|
|
2149
|
+
lgDash: "lgDash";
|
|
2150
|
+
lgDashDot: "lgDashDot";
|
|
2151
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2152
|
+
sysDash: "sysDash";
|
|
2153
|
+
sysDot: "sysDot";
|
|
2154
|
+
}>>;
|
|
2155
|
+
}, z.core.$strip>>;
|
|
2156
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
2157
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2158
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2159
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2160
|
+
dash: "dash";
|
|
2161
|
+
solid: "solid";
|
|
2162
|
+
dashDot: "dashDot";
|
|
2163
|
+
lgDash: "lgDash";
|
|
2164
|
+
lgDashDot: "lgDashDot";
|
|
2165
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2166
|
+
sysDash: "sysDash";
|
|
2167
|
+
sysDot: "sysDot";
|
|
2168
|
+
}>>;
|
|
2169
|
+
}, z.core.$strip>>;
|
|
1482
2170
|
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
1483
2171
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
1484
2172
|
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1524,12 +2212,17 @@ declare const matrixNodeSchema: z.ZodObject<{
|
|
|
1524
2212
|
x: z.ZodNumber;
|
|
1525
2213
|
y: z.ZodNumber;
|
|
1526
2214
|
color: z.ZodOptional<z.ZodString>;
|
|
2215
|
+
textColor: z.ZodOptional<z.ZodString>;
|
|
1527
2216
|
}, z.core.$strip>>;
|
|
2217
|
+
axisLabelColor: z.ZodOptional<z.ZodString>;
|
|
2218
|
+
quadrantLabelColor: z.ZodOptional<z.ZodString>;
|
|
2219
|
+
itemLabelColor: z.ZodOptional<z.ZodString>;
|
|
1528
2220
|
}, z.core.$strip>;
|
|
1529
2221
|
type MatrixNode = z.infer<typeof matrixNodeSchema>;
|
|
1530
2222
|
type TreeDataItem = {
|
|
1531
2223
|
label: string;
|
|
1532
2224
|
color?: string;
|
|
2225
|
+
textColor?: string;
|
|
1533
2226
|
children?: TreeDataItem[];
|
|
1534
2227
|
};
|
|
1535
2228
|
declare const treeNodeSchema: z.ZodObject<{
|
|
@@ -1576,6 +2269,62 @@ declare const treeNodeSchema: z.ZodObject<{
|
|
|
1576
2269
|
sysDot: "sysDot";
|
|
1577
2270
|
}>>;
|
|
1578
2271
|
}, z.core.$strip>>;
|
|
2272
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
2273
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2274
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2275
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2276
|
+
dash: "dash";
|
|
2277
|
+
solid: "solid";
|
|
2278
|
+
dashDot: "dashDot";
|
|
2279
|
+
lgDash: "lgDash";
|
|
2280
|
+
lgDashDot: "lgDashDot";
|
|
2281
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2282
|
+
sysDash: "sysDash";
|
|
2283
|
+
sysDot: "sysDot";
|
|
2284
|
+
}>>;
|
|
2285
|
+
}, z.core.$strip>>;
|
|
2286
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
2287
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2288
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2289
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2290
|
+
dash: "dash";
|
|
2291
|
+
solid: "solid";
|
|
2292
|
+
dashDot: "dashDot";
|
|
2293
|
+
lgDash: "lgDash";
|
|
2294
|
+
lgDashDot: "lgDashDot";
|
|
2295
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2296
|
+
sysDash: "sysDash";
|
|
2297
|
+
sysDot: "sysDot";
|
|
2298
|
+
}>>;
|
|
2299
|
+
}, z.core.$strip>>;
|
|
2300
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
2301
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2302
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2303
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2304
|
+
dash: "dash";
|
|
2305
|
+
solid: "solid";
|
|
2306
|
+
dashDot: "dashDot";
|
|
2307
|
+
lgDash: "lgDash";
|
|
2308
|
+
lgDashDot: "lgDashDot";
|
|
2309
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2310
|
+
sysDash: "sysDash";
|
|
2311
|
+
sysDot: "sysDot";
|
|
2312
|
+
}>>;
|
|
2313
|
+
}, z.core.$strip>>;
|
|
2314
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
2315
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2316
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2317
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2318
|
+
dash: "dash";
|
|
2319
|
+
solid: "solid";
|
|
2320
|
+
dashDot: "dashDot";
|
|
2321
|
+
lgDash: "lgDash";
|
|
2322
|
+
lgDashDot: "lgDashDot";
|
|
2323
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2324
|
+
sysDash: "sysDash";
|
|
2325
|
+
sysDot: "sysDot";
|
|
2326
|
+
}>>;
|
|
2327
|
+
}, z.core.$strip>>;
|
|
1579
2328
|
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
1580
2329
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
1581
2330
|
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1616,47 +2365,104 @@ declare const treeNodeSchema: z.ZodObject<{
|
|
|
1616
2365
|
roundRect: "roundRect";
|
|
1617
2366
|
}>>;
|
|
1618
2367
|
data: z.ZodType<TreeDataItem, unknown, z.core.$ZodTypeInternals<TreeDataItem, unknown>>;
|
|
2368
|
+
textColor: z.ZodOptional<z.ZodString>;
|
|
1619
2369
|
connectorStyle: z.ZodOptional<z.ZodObject<{
|
|
1620
2370
|
color: z.ZodOptional<z.ZodString>;
|
|
1621
2371
|
width: z.ZodOptional<z.ZodNumber>;
|
|
1622
|
-
}, z.core.$strip>>;
|
|
1623
|
-
nodeWidth: z.ZodOptional<z.ZodNumber>;
|
|
1624
|
-
nodeHeight: z.ZodOptional<z.ZodNumber>;
|
|
1625
|
-
levelGap: z.ZodOptional<z.ZodNumber>;
|
|
1626
|
-
siblingGap: z.ZodOptional<z.ZodNumber>;
|
|
1627
|
-
}, z.core.$strip>;
|
|
1628
|
-
type TreeNode = z.infer<typeof treeNodeSchema>;
|
|
1629
|
-
declare const processArrowNodeSchema: z.ZodObject<{
|
|
1630
|
-
id: z.ZodOptional<z.ZodString>;
|
|
1631
|
-
w: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodLiteral<"max">, z.ZodString]>>;
|
|
1632
|
-
h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodLiteral<"max">, z.ZodString]>>;
|
|
1633
|
-
grow: z.ZodOptional<z.ZodNumber>;
|
|
1634
|
-
minW: z.ZodOptional<z.ZodNumber>;
|
|
1635
|
-
maxW: z.ZodOptional<z.ZodNumber>;
|
|
1636
|
-
minH: z.ZodOptional<z.ZodNumber>;
|
|
1637
|
-
maxH: z.ZodOptional<z.ZodNumber>;
|
|
1638
|
-
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
1639
|
-
top: z.ZodOptional<z.ZodNumber>;
|
|
1640
|
-
right: z.ZodOptional<z.ZodNumber>;
|
|
1641
|
-
bottom: z.ZodOptional<z.ZodNumber>;
|
|
1642
|
-
left: z.ZodOptional<z.ZodNumber>;
|
|
1643
|
-
}, z.core.$strip>]>>;
|
|
1644
|
-
margin: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
1645
|
-
top: z.ZodOptional<z.ZodNumber>;
|
|
1646
|
-
right: z.ZodOptional<z.ZodNumber>;
|
|
1647
|
-
bottom: z.ZodOptional<z.ZodNumber>;
|
|
1648
|
-
left: z.ZodOptional<z.ZodNumber>;
|
|
1649
|
-
}, z.core.$strip>]>>;
|
|
1650
|
-
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
1651
|
-
backgroundGradient: z.ZodOptional<z.ZodString>;
|
|
1652
|
-
backgroundImage: z.ZodOptional<z.ZodObject<{
|
|
1653
|
-
src: z.ZodString;
|
|
1654
|
-
sizing: z.ZodOptional<z.ZodEnum<{
|
|
1655
|
-
cover: "cover";
|
|
1656
|
-
contain: "contain";
|
|
2372
|
+
}, z.core.$strip>>;
|
|
2373
|
+
nodeWidth: z.ZodOptional<z.ZodNumber>;
|
|
2374
|
+
nodeHeight: z.ZodOptional<z.ZodNumber>;
|
|
2375
|
+
levelGap: z.ZodOptional<z.ZodNumber>;
|
|
2376
|
+
siblingGap: z.ZodOptional<z.ZodNumber>;
|
|
2377
|
+
}, z.core.$strip>;
|
|
2378
|
+
type TreeNode = z.infer<typeof treeNodeSchema>;
|
|
2379
|
+
declare const processArrowNodeSchema: z.ZodObject<{
|
|
2380
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2381
|
+
w: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodLiteral<"max">, z.ZodString]>>;
|
|
2382
|
+
h: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodLiteral<"max">, z.ZodString]>>;
|
|
2383
|
+
grow: z.ZodOptional<z.ZodNumber>;
|
|
2384
|
+
minW: z.ZodOptional<z.ZodNumber>;
|
|
2385
|
+
maxW: z.ZodOptional<z.ZodNumber>;
|
|
2386
|
+
minH: z.ZodOptional<z.ZodNumber>;
|
|
2387
|
+
maxH: z.ZodOptional<z.ZodNumber>;
|
|
2388
|
+
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
2389
|
+
top: z.ZodOptional<z.ZodNumber>;
|
|
2390
|
+
right: z.ZodOptional<z.ZodNumber>;
|
|
2391
|
+
bottom: z.ZodOptional<z.ZodNumber>;
|
|
2392
|
+
left: z.ZodOptional<z.ZodNumber>;
|
|
2393
|
+
}, z.core.$strip>]>>;
|
|
2394
|
+
margin: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
2395
|
+
top: z.ZodOptional<z.ZodNumber>;
|
|
2396
|
+
right: z.ZodOptional<z.ZodNumber>;
|
|
2397
|
+
bottom: z.ZodOptional<z.ZodNumber>;
|
|
2398
|
+
left: z.ZodOptional<z.ZodNumber>;
|
|
2399
|
+
}, z.core.$strip>]>>;
|
|
2400
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
2401
|
+
backgroundGradient: z.ZodOptional<z.ZodString>;
|
|
2402
|
+
backgroundImage: z.ZodOptional<z.ZodObject<{
|
|
2403
|
+
src: z.ZodString;
|
|
2404
|
+
sizing: z.ZodOptional<z.ZodEnum<{
|
|
2405
|
+
cover: "cover";
|
|
2406
|
+
contain: "contain";
|
|
2407
|
+
}>>;
|
|
2408
|
+
}, z.core.$strip>>;
|
|
2409
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
2410
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2411
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2412
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2413
|
+
dash: "dash";
|
|
2414
|
+
solid: "solid";
|
|
2415
|
+
dashDot: "dashDot";
|
|
2416
|
+
lgDash: "lgDash";
|
|
2417
|
+
lgDashDot: "lgDashDot";
|
|
2418
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2419
|
+
sysDash: "sysDash";
|
|
2420
|
+
sysDot: "sysDot";
|
|
2421
|
+
}>>;
|
|
2422
|
+
}, z.core.$strip>>;
|
|
2423
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
2424
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2425
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2426
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2427
|
+
dash: "dash";
|
|
2428
|
+
solid: "solid";
|
|
2429
|
+
dashDot: "dashDot";
|
|
2430
|
+
lgDash: "lgDash";
|
|
2431
|
+
lgDashDot: "lgDashDot";
|
|
2432
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2433
|
+
sysDash: "sysDash";
|
|
2434
|
+
sysDot: "sysDot";
|
|
2435
|
+
}>>;
|
|
2436
|
+
}, z.core.$strip>>;
|
|
2437
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
2438
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2439
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2440
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2441
|
+
dash: "dash";
|
|
2442
|
+
solid: "solid";
|
|
2443
|
+
dashDot: "dashDot";
|
|
2444
|
+
lgDash: "lgDash";
|
|
2445
|
+
lgDashDot: "lgDashDot";
|
|
2446
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2447
|
+
sysDash: "sysDash";
|
|
2448
|
+
sysDot: "sysDot";
|
|
2449
|
+
}>>;
|
|
2450
|
+
}, z.core.$strip>>;
|
|
2451
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
2452
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2453
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2454
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2455
|
+
dash: "dash";
|
|
2456
|
+
solid: "solid";
|
|
2457
|
+
dashDot: "dashDot";
|
|
2458
|
+
lgDash: "lgDash";
|
|
2459
|
+
lgDashDot: "lgDashDot";
|
|
2460
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2461
|
+
sysDash: "sysDash";
|
|
2462
|
+
sysDot: "sysDot";
|
|
1657
2463
|
}>>;
|
|
1658
2464
|
}, z.core.$strip>>;
|
|
1659
|
-
|
|
2465
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
1660
2466
|
color: z.ZodOptional<z.ZodString>;
|
|
1661
2467
|
width: z.ZodOptional<z.ZodNumber>;
|
|
1662
2468
|
dashType: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1784,6 +2590,62 @@ declare const pyramidNodeSchema: z.ZodObject<{
|
|
|
1784
2590
|
sysDot: "sysDot";
|
|
1785
2591
|
}>>;
|
|
1786
2592
|
}, z.core.$strip>>;
|
|
2593
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
2594
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2595
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2596
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2597
|
+
dash: "dash";
|
|
2598
|
+
solid: "solid";
|
|
2599
|
+
dashDot: "dashDot";
|
|
2600
|
+
lgDash: "lgDash";
|
|
2601
|
+
lgDashDot: "lgDashDot";
|
|
2602
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2603
|
+
sysDash: "sysDash";
|
|
2604
|
+
sysDot: "sysDot";
|
|
2605
|
+
}>>;
|
|
2606
|
+
}, z.core.$strip>>;
|
|
2607
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
2608
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2609
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2610
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2611
|
+
dash: "dash";
|
|
2612
|
+
solid: "solid";
|
|
2613
|
+
dashDot: "dashDot";
|
|
2614
|
+
lgDash: "lgDash";
|
|
2615
|
+
lgDashDot: "lgDashDot";
|
|
2616
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2617
|
+
sysDash: "sysDash";
|
|
2618
|
+
sysDot: "sysDot";
|
|
2619
|
+
}>>;
|
|
2620
|
+
}, z.core.$strip>>;
|
|
2621
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
2622
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2623
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2624
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2625
|
+
dash: "dash";
|
|
2626
|
+
solid: "solid";
|
|
2627
|
+
dashDot: "dashDot";
|
|
2628
|
+
lgDash: "lgDash";
|
|
2629
|
+
lgDashDot: "lgDashDot";
|
|
2630
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2631
|
+
sysDash: "sysDash";
|
|
2632
|
+
sysDot: "sysDot";
|
|
2633
|
+
}>>;
|
|
2634
|
+
}, z.core.$strip>>;
|
|
2635
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
2636
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2637
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2638
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2639
|
+
dash: "dash";
|
|
2640
|
+
solid: "solid";
|
|
2641
|
+
dashDot: "dashDot";
|
|
2642
|
+
lgDash: "lgDash";
|
|
2643
|
+
lgDashDot: "lgDashDot";
|
|
2644
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2645
|
+
sysDash: "sysDash";
|
|
2646
|
+
sysDot: "sysDot";
|
|
2647
|
+
}>>;
|
|
2648
|
+
}, z.core.$strip>>;
|
|
1787
2649
|
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
1788
2650
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
1789
2651
|
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1872,6 +2734,62 @@ declare const flowNodeSchema: z.ZodObject<{
|
|
|
1872
2734
|
sysDot: "sysDot";
|
|
1873
2735
|
}>>;
|
|
1874
2736
|
}, z.core.$strip>>;
|
|
2737
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
2738
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2739
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2740
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2741
|
+
dash: "dash";
|
|
2742
|
+
solid: "solid";
|
|
2743
|
+
dashDot: "dashDot";
|
|
2744
|
+
lgDash: "lgDash";
|
|
2745
|
+
lgDashDot: "lgDashDot";
|
|
2746
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2747
|
+
sysDash: "sysDash";
|
|
2748
|
+
sysDot: "sysDot";
|
|
2749
|
+
}>>;
|
|
2750
|
+
}, z.core.$strip>>;
|
|
2751
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
2752
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2753
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2754
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2755
|
+
dash: "dash";
|
|
2756
|
+
solid: "solid";
|
|
2757
|
+
dashDot: "dashDot";
|
|
2758
|
+
lgDash: "lgDash";
|
|
2759
|
+
lgDashDot: "lgDashDot";
|
|
2760
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2761
|
+
sysDash: "sysDash";
|
|
2762
|
+
sysDot: "sysDot";
|
|
2763
|
+
}>>;
|
|
2764
|
+
}, z.core.$strip>>;
|
|
2765
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
2766
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2767
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2768
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2769
|
+
dash: "dash";
|
|
2770
|
+
solid: "solid";
|
|
2771
|
+
dashDot: "dashDot";
|
|
2772
|
+
lgDash: "lgDash";
|
|
2773
|
+
lgDashDot: "lgDashDot";
|
|
2774
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2775
|
+
sysDash: "sysDash";
|
|
2776
|
+
sysDot: "sysDot";
|
|
2777
|
+
}>>;
|
|
2778
|
+
}, z.core.$strip>>;
|
|
2779
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
2780
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2781
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2782
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2783
|
+
dash: "dash";
|
|
2784
|
+
solid: "solid";
|
|
2785
|
+
dashDot: "dashDot";
|
|
2786
|
+
lgDash: "lgDash";
|
|
2787
|
+
lgDashDot: "lgDashDot";
|
|
2788
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2789
|
+
sysDash: "sysDash";
|
|
2790
|
+
sysDot: "sysDot";
|
|
2791
|
+
}>>;
|
|
2792
|
+
}, z.core.$strip>>;
|
|
1875
2793
|
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
1876
2794
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
1877
2795
|
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1933,10 +2851,12 @@ declare const flowNodeSchema: z.ZodObject<{
|
|
|
1933
2851
|
to: z.ZodString;
|
|
1934
2852
|
label: z.ZodOptional<z.ZodString>;
|
|
1935
2853
|
color: z.ZodOptional<z.ZodString>;
|
|
2854
|
+
labelColor: z.ZodOptional<z.ZodString>;
|
|
1936
2855
|
}, z.core.$strip>>;
|
|
1937
2856
|
connectorStyle: z.ZodOptional<z.ZodObject<{
|
|
1938
2857
|
color: z.ZodOptional<z.ZodString>;
|
|
1939
2858
|
width: z.ZodOptional<z.ZodNumber>;
|
|
2859
|
+
labelColor: z.ZodOptional<z.ZodString>;
|
|
1940
2860
|
arrowType: z.ZodOptional<z.ZodEnum<{
|
|
1941
2861
|
none: "none";
|
|
1942
2862
|
diamond: "diamond";
|
|
@@ -1995,6 +2915,62 @@ declare const lineNodeSchema: z.ZodObject<{
|
|
|
1995
2915
|
sysDot: "sysDot";
|
|
1996
2916
|
}>>;
|
|
1997
2917
|
}, z.core.$strip>>;
|
|
2918
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
2919
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2920
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2921
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2922
|
+
dash: "dash";
|
|
2923
|
+
solid: "solid";
|
|
2924
|
+
dashDot: "dashDot";
|
|
2925
|
+
lgDash: "lgDash";
|
|
2926
|
+
lgDashDot: "lgDashDot";
|
|
2927
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2928
|
+
sysDash: "sysDash";
|
|
2929
|
+
sysDot: "sysDot";
|
|
2930
|
+
}>>;
|
|
2931
|
+
}, z.core.$strip>>;
|
|
2932
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
2933
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2934
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2935
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2936
|
+
dash: "dash";
|
|
2937
|
+
solid: "solid";
|
|
2938
|
+
dashDot: "dashDot";
|
|
2939
|
+
lgDash: "lgDash";
|
|
2940
|
+
lgDashDot: "lgDashDot";
|
|
2941
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2942
|
+
sysDash: "sysDash";
|
|
2943
|
+
sysDot: "sysDot";
|
|
2944
|
+
}>>;
|
|
2945
|
+
}, z.core.$strip>>;
|
|
2946
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
2947
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2948
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2949
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2950
|
+
dash: "dash";
|
|
2951
|
+
solid: "solid";
|
|
2952
|
+
dashDot: "dashDot";
|
|
2953
|
+
lgDash: "lgDash";
|
|
2954
|
+
lgDashDot: "lgDashDot";
|
|
2955
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2956
|
+
sysDash: "sysDash";
|
|
2957
|
+
sysDot: "sysDot";
|
|
2958
|
+
}>>;
|
|
2959
|
+
}, z.core.$strip>>;
|
|
2960
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
2961
|
+
color: z.ZodOptional<z.ZodString>;
|
|
2962
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
2963
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
2964
|
+
dash: "dash";
|
|
2965
|
+
solid: "solid";
|
|
2966
|
+
dashDot: "dashDot";
|
|
2967
|
+
lgDash: "lgDash";
|
|
2968
|
+
lgDashDot: "lgDashDot";
|
|
2969
|
+
lgDashDotDot: "lgDashDotDot";
|
|
2970
|
+
sysDash: "sysDash";
|
|
2971
|
+
sysDot: "sysDot";
|
|
2972
|
+
}>>;
|
|
2973
|
+
}, z.core.$strip>>;
|
|
1998
2974
|
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
1999
2975
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
2000
2976
|
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2107,6 +3083,62 @@ declare const arrowNodeSchema: z.ZodObject<{
|
|
|
2107
3083
|
sysDot: "sysDot";
|
|
2108
3084
|
}>>;
|
|
2109
3085
|
}, z.core.$strip>>;
|
|
3086
|
+
borderTop: z.ZodOptional<z.ZodObject<{
|
|
3087
|
+
color: z.ZodOptional<z.ZodString>;
|
|
3088
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
3089
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
3090
|
+
dash: "dash";
|
|
3091
|
+
solid: "solid";
|
|
3092
|
+
dashDot: "dashDot";
|
|
3093
|
+
lgDash: "lgDash";
|
|
3094
|
+
lgDashDot: "lgDashDot";
|
|
3095
|
+
lgDashDotDot: "lgDashDotDot";
|
|
3096
|
+
sysDash: "sysDash";
|
|
3097
|
+
sysDot: "sysDot";
|
|
3098
|
+
}>>;
|
|
3099
|
+
}, z.core.$strip>>;
|
|
3100
|
+
borderRight: z.ZodOptional<z.ZodObject<{
|
|
3101
|
+
color: z.ZodOptional<z.ZodString>;
|
|
3102
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
3103
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
3104
|
+
dash: "dash";
|
|
3105
|
+
solid: "solid";
|
|
3106
|
+
dashDot: "dashDot";
|
|
3107
|
+
lgDash: "lgDash";
|
|
3108
|
+
lgDashDot: "lgDashDot";
|
|
3109
|
+
lgDashDotDot: "lgDashDotDot";
|
|
3110
|
+
sysDash: "sysDash";
|
|
3111
|
+
sysDot: "sysDot";
|
|
3112
|
+
}>>;
|
|
3113
|
+
}, z.core.$strip>>;
|
|
3114
|
+
borderBottom: z.ZodOptional<z.ZodObject<{
|
|
3115
|
+
color: z.ZodOptional<z.ZodString>;
|
|
3116
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
3117
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
3118
|
+
dash: "dash";
|
|
3119
|
+
solid: "solid";
|
|
3120
|
+
dashDot: "dashDot";
|
|
3121
|
+
lgDash: "lgDash";
|
|
3122
|
+
lgDashDot: "lgDashDot";
|
|
3123
|
+
lgDashDotDot: "lgDashDotDot";
|
|
3124
|
+
sysDash: "sysDash";
|
|
3125
|
+
sysDot: "sysDot";
|
|
3126
|
+
}>>;
|
|
3127
|
+
}, z.core.$strip>>;
|
|
3128
|
+
borderLeft: z.ZodOptional<z.ZodObject<{
|
|
3129
|
+
color: z.ZodOptional<z.ZodString>;
|
|
3130
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
3131
|
+
dashType: z.ZodOptional<z.ZodEnum<{
|
|
3132
|
+
dash: "dash";
|
|
3133
|
+
solid: "solid";
|
|
3134
|
+
dashDot: "dashDot";
|
|
3135
|
+
lgDash: "lgDash";
|
|
3136
|
+
lgDashDot: "lgDashDot";
|
|
3137
|
+
lgDashDotDot: "lgDashDotDot";
|
|
3138
|
+
sysDash: "sysDash";
|
|
3139
|
+
sysDot: "sysDot";
|
|
3140
|
+
}>>;
|
|
3141
|
+
}, z.core.$strip>>;
|
|
2110
3142
|
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
2111
3143
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
2112
3144
|
zIndex: z.ZodOptional<z.ZodNumber>;
|