@retikz/core 0.3.0-alpha.3 → 0.3.0-alpha.4
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 +41 -41
- package/dist/es/compile/anchor-cache.d.ts +5 -3
- package/dist/es/compile/anchor-cache.d.ts.map +1 -1
- package/dist/es/compile/anchor-cache.js +14 -10
- package/dist/es/compile/boundary.d.ts +19 -0
- package/dist/es/compile/boundary.d.ts.map +1 -0
- package/dist/es/compile/boundary.js +64 -0
- package/dist/es/compile/compile.d.ts.map +1 -1
- package/dist/es/compile/compile.js +14 -2
- package/dist/es/compile/node.d.ts +24 -8
- package/dist/es/compile/node.d.ts.map +1 -1
- package/dist/es/compile/node.js +100 -16
- package/dist/es/compile/path/anchor.d.ts.map +1 -1
- package/dist/es/compile/path/anchor.js +7 -6
- package/dist/es/compile/path/index.d.ts.map +1 -1
- package/dist/es/compile/path/index.js +5 -3
- package/dist/es/compile/path/relative.js +1 -1
- package/dist/es/compile/scope.d.ts.map +1 -1
- package/dist/es/compile/scope.js +2 -1
- package/dist/es/geometry/arc.d.ts +14 -0
- package/dist/es/geometry/arc.d.ts.map +1 -1
- package/dist/es/geometry/arc.js +65 -9
- package/dist/es/geometry/index.d.ts +1 -0
- package/dist/es/geometry/index.d.ts.map +1 -1
- package/dist/es/geometry/rect.d.ts +2 -2
- package/dist/es/geometry/rect.d.ts.map +1 -1
- package/dist/es/geometry/rect.js +3 -3
- package/dist/es/geometry/roundedContour.d.ts +88 -0
- package/dist/es/geometry/roundedContour.d.ts.map +1 -0
- package/dist/es/geometry/roundedContour.js +417 -0
- package/dist/es/index.d.ts +6 -5
- package/dist/es/index.d.ts.map +1 -1
- package/dist/es/index.js +9 -6
- package/dist/es/ir/boundary.d.ts +25 -0
- package/dist/es/ir/boundary.d.ts.map +1 -0
- package/dist/es/ir/boundary.js +14 -0
- package/dist/es/ir/index.d.ts +2 -0
- package/dist/es/ir/index.d.ts.map +1 -1
- package/dist/es/ir/node.d.ts +43 -7
- package/dist/es/ir/node.d.ts.map +1 -1
- package/dist/es/ir/node.js +8 -3
- package/dist/es/ir/path/arrow.d.ts +12 -12
- package/dist/es/ir/path/path.d.ts +490 -147
- package/dist/es/ir/path/path.d.ts.map +1 -1
- package/dist/es/ir/path/path.js +2 -0
- package/dist/es/ir/path/step.d.ts +674 -154
- package/dist/es/ir/path/step.d.ts.map +1 -1
- package/dist/es/ir/path/step.js +2 -2
- package/dist/es/ir/path/target.d.ts +43 -8
- package/dist/es/ir/path/target.d.ts.map +1 -1
- package/dist/es/ir/path/target.js +4 -5
- package/dist/es/ir/scope.d.ts +843 -234
- package/dist/es/ir/scope.d.ts.map +1 -1
- package/dist/es/ir/scope.js +6 -2
- package/dist/es/ir/shape.d.ts +14 -0
- package/dist/es/ir/shape.d.ts.map +1 -0
- package/dist/es/ir/shape.js +9 -0
- package/dist/es/parsers/parseNodeTarget.d.ts.map +1 -1
- package/dist/es/parsers/parseNodeTarget.js +4 -2
- package/dist/es/primitive/ellipse.d.ts +3 -0
- package/dist/es/primitive/ellipse.d.ts.map +1 -1
- package/dist/es/primitive/group.d.ts +3 -0
- package/dist/es/primitive/group.d.ts.map +1 -1
- package/dist/es/primitive/path.d.ts +3 -0
- package/dist/es/primitive/path.d.ts.map +1 -1
- package/dist/es/primitive/rect.d.ts +3 -0
- package/dist/es/primitive/rect.d.ts.map +1 -1
- package/dist/es/primitive/text.d.ts +3 -0
- package/dist/es/primitive/text.d.ts.map +1 -1
- package/dist/es/shapes/_contour.d.ts +19 -0
- package/dist/es/shapes/_contour.d.ts.map +1 -0
- package/dist/es/shapes/_contour.js +60 -0
- package/dist/es/shapes/_shared.d.ts +54 -0
- package/dist/es/shapes/_shared.d.ts.map +1 -1
- package/dist/es/shapes/_shared.js +68 -1
- package/dist/es/shapes/arc.d.ts +8 -0
- package/dist/es/shapes/arc.d.ts.map +1 -0
- package/dist/es/shapes/arc.js +104 -0
- package/dist/es/shapes/define.d.ts +13 -0
- package/dist/es/shapes/define.d.ts.map +1 -0
- package/dist/es/shapes/define.js +13 -0
- package/dist/es/shapes/ellipse.d.ts +5 -4
- package/dist/es/shapes/ellipse.d.ts.map +1 -1
- package/dist/es/shapes/ellipse.js +15 -7
- package/dist/es/shapes/index.d.ts +9 -6
- package/dist/es/shapes/index.d.ts.map +1 -1
- package/dist/es/shapes/index.js +10 -5
- package/dist/es/shapes/polygon.d.ts +13 -0
- package/dist/es/shapes/polygon.d.ts.map +1 -0
- package/dist/es/shapes/polygon.js +104 -0
- package/dist/es/shapes/rectangle.d.ts +7 -5
- package/dist/es/shapes/rectangle.d.ts.map +1 -1
- package/dist/es/shapes/rectangle.js +37 -8
- package/dist/es/shapes/sector.d.ts +9 -0
- package/dist/es/shapes/sector.d.ts.map +1 -0
- package/dist/es/shapes/sector.js +143 -0
- package/dist/es/shapes/star.d.ts +15 -0
- package/dist/es/shapes/star.d.ts.map +1 -0
- package/dist/es/shapes/star.js +113 -0
- package/dist/es/shapes/types.d.ts +47 -14
- package/dist/es/shapes/types.d.ts.map +1 -1
- package/dist/lib/compile/anchor-cache.cjs +14 -10
- package/dist/lib/compile/anchor-cache.d.ts +5 -3
- package/dist/lib/compile/anchor-cache.d.ts.map +1 -1
- package/dist/lib/compile/boundary.cjs +65 -0
- package/dist/lib/compile/boundary.d.ts +19 -0
- package/dist/lib/compile/boundary.d.ts.map +1 -0
- package/dist/lib/compile/compile.cjs +14 -2
- package/dist/lib/compile/compile.d.ts.map +1 -1
- package/dist/lib/compile/node.cjs +100 -16
- package/dist/lib/compile/node.d.ts +24 -8
- package/dist/lib/compile/node.d.ts.map +1 -1
- package/dist/lib/compile/path/anchor.cjs +7 -6
- package/dist/lib/compile/path/anchor.d.ts.map +1 -1
- package/dist/lib/compile/path/index.cjs +5 -3
- package/dist/lib/compile/path/index.d.ts.map +1 -1
- package/dist/lib/compile/path/relative.cjs +1 -1
- package/dist/lib/compile/scope.cjs +2 -1
- package/dist/lib/compile/scope.d.ts.map +1 -1
- package/dist/lib/geometry/arc.cjs +66 -8
- package/dist/lib/geometry/arc.d.ts +14 -0
- package/dist/lib/geometry/arc.d.ts.map +1 -1
- package/dist/lib/geometry/index.d.ts +1 -0
- package/dist/lib/geometry/index.d.ts.map +1 -1
- package/dist/lib/geometry/rect.cjs +3 -3
- package/dist/lib/geometry/rect.d.ts +2 -2
- package/dist/lib/geometry/rect.d.ts.map +1 -1
- package/dist/lib/geometry/roundedContour.cjs +418 -0
- package/dist/lib/geometry/roundedContour.d.ts +88 -0
- package/dist/lib/geometry/roundedContour.d.ts.map +1 -0
- package/dist/lib/index.cjs +14 -7
- package/dist/lib/index.d.ts +6 -5
- package/dist/lib/index.d.ts.map +1 -1
- package/dist/lib/ir/boundary.cjs +15 -0
- package/dist/lib/ir/boundary.d.ts +25 -0
- package/dist/lib/ir/boundary.d.ts.map +1 -0
- package/dist/lib/ir/index.d.ts +2 -0
- package/dist/lib/ir/index.d.ts.map +1 -1
- package/dist/lib/ir/node.cjs +8 -3
- package/dist/lib/ir/node.d.ts +43 -7
- package/dist/lib/ir/node.d.ts.map +1 -1
- package/dist/lib/ir/path/arrow.d.ts +12 -12
- package/dist/lib/ir/path/path.cjs +2 -0
- package/dist/lib/ir/path/path.d.ts +490 -147
- package/dist/lib/ir/path/path.d.ts.map +1 -1
- package/dist/lib/ir/path/step.cjs +2 -2
- package/dist/lib/ir/path/step.d.ts +674 -154
- package/dist/lib/ir/path/step.d.ts.map +1 -1
- package/dist/lib/ir/path/target.cjs +4 -5
- package/dist/lib/ir/path/target.d.ts +43 -8
- package/dist/lib/ir/path/target.d.ts.map +1 -1
- package/dist/lib/ir/scope.cjs +6 -2
- package/dist/lib/ir/scope.d.ts +843 -234
- package/dist/lib/ir/scope.d.ts.map +1 -1
- package/dist/lib/ir/shape.cjs +9 -0
- package/dist/lib/ir/shape.d.ts +14 -0
- package/dist/lib/ir/shape.d.ts.map +1 -0
- package/dist/lib/parsers/parseNodeTarget.cjs +4 -2
- package/dist/lib/parsers/parseNodeTarget.d.ts.map +1 -1
- package/dist/lib/primitive/ellipse.d.ts +3 -0
- package/dist/lib/primitive/ellipse.d.ts.map +1 -1
- package/dist/lib/primitive/group.d.ts +3 -0
- package/dist/lib/primitive/group.d.ts.map +1 -1
- package/dist/lib/primitive/path.d.ts +3 -0
- package/dist/lib/primitive/path.d.ts.map +1 -1
- package/dist/lib/primitive/rect.d.ts +3 -0
- package/dist/lib/primitive/rect.d.ts.map +1 -1
- package/dist/lib/primitive/text.d.ts +3 -0
- package/dist/lib/primitive/text.d.ts.map +1 -1
- package/dist/lib/shapes/_contour.cjs +61 -0
- package/dist/lib/shapes/_contour.d.ts +19 -0
- package/dist/lib/shapes/_contour.d.ts.map +1 -0
- package/dist/lib/shapes/_shared.cjs +70 -0
- package/dist/lib/shapes/_shared.d.ts +54 -0
- package/dist/lib/shapes/_shared.d.ts.map +1 -1
- package/dist/lib/shapes/arc.cjs +104 -0
- package/dist/lib/shapes/arc.d.ts +8 -0
- package/dist/lib/shapes/arc.d.ts.map +1 -0
- package/dist/lib/shapes/define.cjs +13 -0
- package/dist/lib/shapes/define.d.ts +13 -0
- package/dist/lib/shapes/define.d.ts.map +1 -0
- package/dist/lib/shapes/ellipse.cjs +15 -7
- package/dist/lib/shapes/ellipse.d.ts +5 -4
- package/dist/lib/shapes/ellipse.d.ts.map +1 -1
- package/dist/lib/shapes/index.cjs +12 -6
- package/dist/lib/shapes/index.d.ts +9 -6
- package/dist/lib/shapes/index.d.ts.map +1 -1
- package/dist/lib/shapes/polygon.cjs +104 -0
- package/dist/lib/shapes/polygon.d.ts +13 -0
- package/dist/lib/shapes/polygon.d.ts.map +1 -0
- package/dist/lib/shapes/rectangle.cjs +37 -8
- package/dist/lib/shapes/rectangle.d.ts +7 -5
- package/dist/lib/shapes/rectangle.d.ts.map +1 -1
- package/dist/lib/shapes/sector.cjs +143 -0
- package/dist/lib/shapes/sector.d.ts +9 -0
- package/dist/lib/shapes/sector.d.ts.map +1 -0
- package/dist/lib/shapes/star.cjs +113 -0
- package/dist/lib/shapes/star.d.ts +15 -0
- package/dist/lib/shapes/star.d.ts.map +1 -0
- package/dist/lib/shapes/types.d.ts +47 -14
- package/dist/lib/shapes/types.d.ts.map +1 -1
- package/package.json +2 -2
- package/dist/es/shapes/circle.d.ts +0 -8
- package/dist/es/shapes/circle.d.ts.map +0 -1
- package/dist/es/shapes/circle.js +0 -34
- package/dist/es/shapes/diamond.d.ts +0 -8
- package/dist/es/shapes/diamond.d.ts.map +0 -1
- package/dist/es/shapes/diamond.js +0 -66
- package/dist/lib/shapes/circle.cjs +0 -34
- package/dist/lib/shapes/circle.d.ts +0 -8
- package/dist/lib/shapes/circle.d.ts.map +0 -1
- package/dist/lib/shapes/diamond.cjs +0 -66
- package/dist/lib/shapes/diamond.d.ts +0 -8
- package/dist/lib/shapes/diamond.d.ts.map +0 -1
|
@@ -57,7 +57,7 @@ export declare const MoveStepSchema: z.ZodObject<{
|
|
|
57
57
|
kind: z.ZodLiteral<"move">;
|
|
58
58
|
to: z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
59
59
|
id: z.ZodString;
|
|
60
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
60
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
61
61
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
62
62
|
t: z.ZodNumber;
|
|
63
63
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -68,20 +68,38 @@ export declare const MoveStepSchema: z.ZodObject<{
|
|
|
68
68
|
t: number;
|
|
69
69
|
}>]>>;
|
|
70
70
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
71
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
72
|
+
type: z.ZodString;
|
|
73
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
74
|
+
}, "strip", z.ZodTypeAny, {
|
|
75
|
+
type: string;
|
|
76
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
77
|
+
}, {
|
|
78
|
+
type: string;
|
|
79
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
80
|
+
}>]>>;
|
|
71
81
|
}, "strip", z.ZodTypeAny, {
|
|
72
82
|
id: string;
|
|
73
83
|
offset?: [number, number] | undefined;
|
|
74
|
-
anchor?:
|
|
84
|
+
anchor?: string | number | {
|
|
75
85
|
side: "north" | "south" | "east" | "west";
|
|
76
86
|
t: number;
|
|
77
87
|
} | undefined;
|
|
88
|
+
boundary?: string | {
|
|
89
|
+
type: string;
|
|
90
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
91
|
+
} | undefined;
|
|
78
92
|
}, {
|
|
79
93
|
id: string;
|
|
80
94
|
offset?: [number, number] | undefined;
|
|
81
|
-
anchor?:
|
|
95
|
+
anchor?: string | number | {
|
|
82
96
|
side: "north" | "south" | "east" | "west";
|
|
83
97
|
t: number;
|
|
84
98
|
} | undefined;
|
|
99
|
+
boundary?: string | {
|
|
100
|
+
type: string;
|
|
101
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
102
|
+
} | undefined;
|
|
85
103
|
}>, z.ZodObject<{
|
|
86
104
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
87
105
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -106,47 +124,55 @@ export declare const MoveStepSchema: z.ZodObject<{
|
|
|
106
124
|
}>, z.ZodLazy<z.ZodType<import('..').IRBetweenPosition, z.ZodTypeDef, import('..').IRBetweenPosition>>]>;
|
|
107
125
|
}, "strip", z.ZodTypeAny, {
|
|
108
126
|
type: "step";
|
|
127
|
+
kind: "move";
|
|
109
128
|
to: [number, number] | import('..').PolarPosition | {
|
|
110
129
|
of: string | [number, number] | import('..').PolarPosition;
|
|
111
130
|
offset: [number, number];
|
|
112
131
|
} | {
|
|
113
132
|
id: string;
|
|
114
133
|
offset?: [number, number] | undefined;
|
|
115
|
-
anchor?:
|
|
134
|
+
anchor?: string | number | {
|
|
116
135
|
side: "north" | "south" | "east" | "west";
|
|
117
136
|
t: number;
|
|
118
137
|
} | undefined;
|
|
138
|
+
boundary?: string | {
|
|
139
|
+
type: string;
|
|
140
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
141
|
+
} | undefined;
|
|
119
142
|
} | {
|
|
120
143
|
relative: [number, number];
|
|
121
144
|
} | {
|
|
122
145
|
relativeAccumulate: [number, number];
|
|
123
146
|
} | import('..').IRBetweenPosition;
|
|
124
|
-
kind: "move";
|
|
125
147
|
}, {
|
|
126
148
|
type: "step";
|
|
149
|
+
kind: "move";
|
|
127
150
|
to: [number, number] | import('..').PolarPosition | {
|
|
128
151
|
of: string | [number, number] | import('..').PolarPosition;
|
|
129
152
|
offset: [number, number];
|
|
130
153
|
} | {
|
|
131
154
|
id: string;
|
|
132
155
|
offset?: [number, number] | undefined;
|
|
133
|
-
anchor?:
|
|
156
|
+
anchor?: string | number | {
|
|
134
157
|
side: "north" | "south" | "east" | "west";
|
|
135
158
|
t: number;
|
|
136
159
|
} | undefined;
|
|
160
|
+
boundary?: string | {
|
|
161
|
+
type: string;
|
|
162
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
163
|
+
} | undefined;
|
|
137
164
|
} | {
|
|
138
165
|
relative: [number, number];
|
|
139
166
|
} | {
|
|
140
167
|
relativeAccumulate: [number, number];
|
|
141
168
|
} | import('..').IRBetweenPosition;
|
|
142
|
-
kind: "move";
|
|
143
169
|
}>;
|
|
144
170
|
export declare const LineStepSchema: z.ZodObject<{
|
|
145
171
|
type: z.ZodLiteral<"step">;
|
|
146
172
|
kind: z.ZodLiteral<"line">;
|
|
147
173
|
to: z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
148
174
|
id: z.ZodString;
|
|
149
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
175
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
150
176
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
151
177
|
t: z.ZodNumber;
|
|
152
178
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -157,20 +183,38 @@ export declare const LineStepSchema: z.ZodObject<{
|
|
|
157
183
|
t: number;
|
|
158
184
|
}>]>>;
|
|
159
185
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
186
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
187
|
+
type: z.ZodString;
|
|
188
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
189
|
+
}, "strip", z.ZodTypeAny, {
|
|
190
|
+
type: string;
|
|
191
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
192
|
+
}, {
|
|
193
|
+
type: string;
|
|
194
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
195
|
+
}>]>>;
|
|
160
196
|
}, "strip", z.ZodTypeAny, {
|
|
161
197
|
id: string;
|
|
162
198
|
offset?: [number, number] | undefined;
|
|
163
|
-
anchor?:
|
|
199
|
+
anchor?: string | number | {
|
|
164
200
|
side: "north" | "south" | "east" | "west";
|
|
165
201
|
t: number;
|
|
166
202
|
} | undefined;
|
|
203
|
+
boundary?: string | {
|
|
204
|
+
type: string;
|
|
205
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
206
|
+
} | undefined;
|
|
167
207
|
}, {
|
|
168
208
|
id: string;
|
|
169
209
|
offset?: [number, number] | undefined;
|
|
170
|
-
anchor?:
|
|
210
|
+
anchor?: string | number | {
|
|
171
211
|
side: "north" | "south" | "east" | "west";
|
|
172
212
|
t: number;
|
|
173
213
|
} | undefined;
|
|
214
|
+
boundary?: string | {
|
|
215
|
+
type: string;
|
|
216
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
217
|
+
} | undefined;
|
|
174
218
|
}>, z.ZodObject<{
|
|
175
219
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
176
220
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -242,22 +286,26 @@ export declare const LineStepSchema: z.ZodObject<{
|
|
|
242
286
|
}>>;
|
|
243
287
|
}, "strip", z.ZodTypeAny, {
|
|
244
288
|
type: "step";
|
|
289
|
+
kind: "line";
|
|
245
290
|
to: [number, number] | import('..').PolarPosition | {
|
|
246
291
|
of: string | [number, number] | import('..').PolarPosition;
|
|
247
292
|
offset: [number, number];
|
|
248
293
|
} | {
|
|
249
294
|
id: string;
|
|
250
295
|
offset?: [number, number] | undefined;
|
|
251
|
-
anchor?:
|
|
296
|
+
anchor?: string | number | {
|
|
252
297
|
side: "north" | "south" | "east" | "west";
|
|
253
298
|
t: number;
|
|
254
299
|
} | undefined;
|
|
300
|
+
boundary?: string | {
|
|
301
|
+
type: string;
|
|
302
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
303
|
+
} | undefined;
|
|
255
304
|
} | {
|
|
256
305
|
relative: [number, number];
|
|
257
306
|
} | {
|
|
258
307
|
relativeAccumulate: [number, number];
|
|
259
308
|
} | import('..').IRBetweenPosition;
|
|
260
|
-
kind: "line";
|
|
261
309
|
label?: {
|
|
262
310
|
text: string;
|
|
263
311
|
side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
|
|
@@ -273,22 +321,26 @@ export declare const LineStepSchema: z.ZodObject<{
|
|
|
273
321
|
} | undefined;
|
|
274
322
|
}, {
|
|
275
323
|
type: "step";
|
|
324
|
+
kind: "line";
|
|
276
325
|
to: [number, number] | import('..').PolarPosition | {
|
|
277
326
|
of: string | [number, number] | import('..').PolarPosition;
|
|
278
327
|
offset: [number, number];
|
|
279
328
|
} | {
|
|
280
329
|
id: string;
|
|
281
330
|
offset?: [number, number] | undefined;
|
|
282
|
-
anchor?:
|
|
331
|
+
anchor?: string | number | {
|
|
283
332
|
side: "north" | "south" | "east" | "west";
|
|
284
333
|
t: number;
|
|
285
334
|
} | undefined;
|
|
335
|
+
boundary?: string | {
|
|
336
|
+
type: string;
|
|
337
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
338
|
+
} | undefined;
|
|
286
339
|
} | {
|
|
287
340
|
relative: [number, number];
|
|
288
341
|
} | {
|
|
289
342
|
relativeAccumulate: [number, number];
|
|
290
343
|
} | import('..').IRBetweenPosition;
|
|
291
|
-
kind: "line";
|
|
292
344
|
label?: {
|
|
293
345
|
text: string;
|
|
294
346
|
side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
|
|
@@ -309,7 +361,7 @@ export declare const FoldStepSchema: z.ZodObject<{
|
|
|
309
361
|
via: z.ZodEnum<["-|", "|-"]>;
|
|
310
362
|
to: z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
311
363
|
id: z.ZodString;
|
|
312
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
364
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
313
365
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
314
366
|
t: z.ZodNumber;
|
|
315
367
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -320,20 +372,38 @@ export declare const FoldStepSchema: z.ZodObject<{
|
|
|
320
372
|
t: number;
|
|
321
373
|
}>]>>;
|
|
322
374
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
375
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
376
|
+
type: z.ZodString;
|
|
377
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
378
|
+
}, "strip", z.ZodTypeAny, {
|
|
379
|
+
type: string;
|
|
380
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
381
|
+
}, {
|
|
382
|
+
type: string;
|
|
383
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
384
|
+
}>]>>;
|
|
323
385
|
}, "strip", z.ZodTypeAny, {
|
|
324
386
|
id: string;
|
|
325
387
|
offset?: [number, number] | undefined;
|
|
326
|
-
anchor?:
|
|
388
|
+
anchor?: string | number | {
|
|
327
389
|
side: "north" | "south" | "east" | "west";
|
|
328
390
|
t: number;
|
|
329
391
|
} | undefined;
|
|
392
|
+
boundary?: string | {
|
|
393
|
+
type: string;
|
|
394
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
395
|
+
} | undefined;
|
|
330
396
|
}, {
|
|
331
397
|
id: string;
|
|
332
398
|
offset?: [number, number] | undefined;
|
|
333
|
-
anchor?:
|
|
399
|
+
anchor?: string | number | {
|
|
334
400
|
side: "north" | "south" | "east" | "west";
|
|
335
401
|
t: number;
|
|
336
402
|
} | undefined;
|
|
403
|
+
boundary?: string | {
|
|
404
|
+
type: string;
|
|
405
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
406
|
+
} | undefined;
|
|
337
407
|
}>, z.ZodObject<{
|
|
338
408
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
339
409
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -405,22 +475,26 @@ export declare const FoldStepSchema: z.ZodObject<{
|
|
|
405
475
|
}>>;
|
|
406
476
|
}, "strip", z.ZodTypeAny, {
|
|
407
477
|
type: "step";
|
|
478
|
+
kind: "step";
|
|
408
479
|
to: [number, number] | import('..').PolarPosition | {
|
|
409
480
|
of: string | [number, number] | import('..').PolarPosition;
|
|
410
481
|
offset: [number, number];
|
|
411
482
|
} | {
|
|
412
483
|
id: string;
|
|
413
484
|
offset?: [number, number] | undefined;
|
|
414
|
-
anchor?:
|
|
485
|
+
anchor?: string | number | {
|
|
415
486
|
side: "north" | "south" | "east" | "west";
|
|
416
487
|
t: number;
|
|
417
488
|
} | undefined;
|
|
489
|
+
boundary?: string | {
|
|
490
|
+
type: string;
|
|
491
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
492
|
+
} | undefined;
|
|
418
493
|
} | {
|
|
419
494
|
relative: [number, number];
|
|
420
495
|
} | {
|
|
421
496
|
relativeAccumulate: [number, number];
|
|
422
497
|
} | import('..').IRBetweenPosition;
|
|
423
|
-
kind: "step";
|
|
424
498
|
via: "-|" | "|-";
|
|
425
499
|
label?: {
|
|
426
500
|
text: string;
|
|
@@ -437,22 +511,26 @@ export declare const FoldStepSchema: z.ZodObject<{
|
|
|
437
511
|
} | undefined;
|
|
438
512
|
}, {
|
|
439
513
|
type: "step";
|
|
514
|
+
kind: "step";
|
|
440
515
|
to: [number, number] | import('..').PolarPosition | {
|
|
441
516
|
of: string | [number, number] | import('..').PolarPosition;
|
|
442
517
|
offset: [number, number];
|
|
443
518
|
} | {
|
|
444
519
|
id: string;
|
|
445
520
|
offset?: [number, number] | undefined;
|
|
446
|
-
anchor?:
|
|
521
|
+
anchor?: string | number | {
|
|
447
522
|
side: "north" | "south" | "east" | "west";
|
|
448
523
|
t: number;
|
|
449
524
|
} | undefined;
|
|
525
|
+
boundary?: string | {
|
|
526
|
+
type: string;
|
|
527
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
528
|
+
} | undefined;
|
|
450
529
|
} | {
|
|
451
530
|
relative: [number, number];
|
|
452
531
|
} | {
|
|
453
532
|
relativeAccumulate: [number, number];
|
|
454
533
|
} | import('..').IRBetweenPosition;
|
|
455
|
-
kind: "step";
|
|
456
534
|
via: "-|" | "|-";
|
|
457
535
|
label?: {
|
|
458
536
|
text: string;
|
|
@@ -490,7 +568,7 @@ export declare const CurveStepSchema: z.ZodObject<{
|
|
|
490
568
|
kind: z.ZodLiteral<"curve">;
|
|
491
569
|
to: z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
492
570
|
id: z.ZodString;
|
|
493
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
571
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
494
572
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
495
573
|
t: z.ZodNumber;
|
|
496
574
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -501,20 +579,38 @@ export declare const CurveStepSchema: z.ZodObject<{
|
|
|
501
579
|
t: number;
|
|
502
580
|
}>]>>;
|
|
503
581
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
582
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
583
|
+
type: z.ZodString;
|
|
584
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
585
|
+
}, "strip", z.ZodTypeAny, {
|
|
586
|
+
type: string;
|
|
587
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
588
|
+
}, {
|
|
589
|
+
type: string;
|
|
590
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
591
|
+
}>]>>;
|
|
504
592
|
}, "strip", z.ZodTypeAny, {
|
|
505
593
|
id: string;
|
|
506
594
|
offset?: [number, number] | undefined;
|
|
507
|
-
anchor?:
|
|
595
|
+
anchor?: string | number | {
|
|
508
596
|
side: "north" | "south" | "east" | "west";
|
|
509
597
|
t: number;
|
|
510
598
|
} | undefined;
|
|
599
|
+
boundary?: string | {
|
|
600
|
+
type: string;
|
|
601
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
602
|
+
} | undefined;
|
|
511
603
|
}, {
|
|
512
604
|
id: string;
|
|
513
605
|
offset?: [number, number] | undefined;
|
|
514
|
-
anchor?:
|
|
606
|
+
anchor?: string | number | {
|
|
515
607
|
side: "north" | "south" | "east" | "west";
|
|
516
608
|
t: number;
|
|
517
609
|
} | undefined;
|
|
610
|
+
boundary?: string | {
|
|
611
|
+
type: string;
|
|
612
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
613
|
+
} | undefined;
|
|
518
614
|
}>, z.ZodObject<{
|
|
519
615
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
520
616
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -587,22 +683,26 @@ export declare const CurveStepSchema: z.ZodObject<{
|
|
|
587
683
|
}>>;
|
|
588
684
|
}, "strip", z.ZodTypeAny, {
|
|
589
685
|
type: "step";
|
|
686
|
+
kind: "curve";
|
|
590
687
|
to: [number, number] | import('..').PolarPosition | {
|
|
591
688
|
of: string | [number, number] | import('..').PolarPosition;
|
|
592
689
|
offset: [number, number];
|
|
593
690
|
} | {
|
|
594
691
|
id: string;
|
|
595
692
|
offset?: [number, number] | undefined;
|
|
596
|
-
anchor?:
|
|
693
|
+
anchor?: string | number | {
|
|
597
694
|
side: "north" | "south" | "east" | "west";
|
|
598
695
|
t: number;
|
|
599
696
|
} | undefined;
|
|
697
|
+
boundary?: string | {
|
|
698
|
+
type: string;
|
|
699
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
700
|
+
} | undefined;
|
|
600
701
|
} | {
|
|
601
702
|
relative: [number, number];
|
|
602
703
|
} | {
|
|
603
704
|
relativeAccumulate: [number, number];
|
|
604
705
|
} | import('..').IRBetweenPosition;
|
|
605
|
-
kind: "curve";
|
|
606
706
|
control: [number, number];
|
|
607
707
|
label?: {
|
|
608
708
|
text: string;
|
|
@@ -619,22 +719,26 @@ export declare const CurveStepSchema: z.ZodObject<{
|
|
|
619
719
|
} | undefined;
|
|
620
720
|
}, {
|
|
621
721
|
type: "step";
|
|
722
|
+
kind: "curve";
|
|
622
723
|
to: [number, number] | import('..').PolarPosition | {
|
|
623
724
|
of: string | [number, number] | import('..').PolarPosition;
|
|
624
725
|
offset: [number, number];
|
|
625
726
|
} | {
|
|
626
727
|
id: string;
|
|
627
728
|
offset?: [number, number] | undefined;
|
|
628
|
-
anchor?:
|
|
729
|
+
anchor?: string | number | {
|
|
629
730
|
side: "north" | "south" | "east" | "west";
|
|
630
731
|
t: number;
|
|
631
732
|
} | undefined;
|
|
733
|
+
boundary?: string | {
|
|
734
|
+
type: string;
|
|
735
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
736
|
+
} | undefined;
|
|
632
737
|
} | {
|
|
633
738
|
relative: [number, number];
|
|
634
739
|
} | {
|
|
635
740
|
relativeAccumulate: [number, number];
|
|
636
741
|
} | import('..').IRBetweenPosition;
|
|
637
|
-
kind: "curve";
|
|
638
742
|
control: [number, number];
|
|
639
743
|
label?: {
|
|
640
744
|
text: string;
|
|
@@ -655,7 +759,7 @@ export declare const CubicStepSchema: z.ZodObject<{
|
|
|
655
759
|
kind: z.ZodLiteral<"cubic">;
|
|
656
760
|
to: z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
657
761
|
id: z.ZodString;
|
|
658
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
762
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
659
763
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
660
764
|
t: z.ZodNumber;
|
|
661
765
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -666,20 +770,38 @@ export declare const CubicStepSchema: z.ZodObject<{
|
|
|
666
770
|
t: number;
|
|
667
771
|
}>]>>;
|
|
668
772
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
773
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
774
|
+
type: z.ZodString;
|
|
775
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
776
|
+
}, "strip", z.ZodTypeAny, {
|
|
777
|
+
type: string;
|
|
778
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
779
|
+
}, {
|
|
780
|
+
type: string;
|
|
781
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
782
|
+
}>]>>;
|
|
669
783
|
}, "strip", z.ZodTypeAny, {
|
|
670
784
|
id: string;
|
|
671
785
|
offset?: [number, number] | undefined;
|
|
672
|
-
anchor?:
|
|
786
|
+
anchor?: string | number | {
|
|
673
787
|
side: "north" | "south" | "east" | "west";
|
|
674
788
|
t: number;
|
|
675
789
|
} | undefined;
|
|
790
|
+
boundary?: string | {
|
|
791
|
+
type: string;
|
|
792
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
793
|
+
} | undefined;
|
|
676
794
|
}, {
|
|
677
795
|
id: string;
|
|
678
796
|
offset?: [number, number] | undefined;
|
|
679
|
-
anchor?:
|
|
797
|
+
anchor?: string | number | {
|
|
680
798
|
side: "north" | "south" | "east" | "west";
|
|
681
799
|
t: number;
|
|
682
800
|
} | undefined;
|
|
801
|
+
boundary?: string | {
|
|
802
|
+
type: string;
|
|
803
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
804
|
+
} | undefined;
|
|
683
805
|
}>, z.ZodObject<{
|
|
684
806
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
685
807
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -753,22 +875,26 @@ export declare const CubicStepSchema: z.ZodObject<{
|
|
|
753
875
|
}>>;
|
|
754
876
|
}, "strip", z.ZodTypeAny, {
|
|
755
877
|
type: "step";
|
|
878
|
+
kind: "cubic";
|
|
756
879
|
to: [number, number] | import('..').PolarPosition | {
|
|
757
880
|
of: string | [number, number] | import('..').PolarPosition;
|
|
758
881
|
offset: [number, number];
|
|
759
882
|
} | {
|
|
760
883
|
id: string;
|
|
761
884
|
offset?: [number, number] | undefined;
|
|
762
|
-
anchor?:
|
|
885
|
+
anchor?: string | number | {
|
|
763
886
|
side: "north" | "south" | "east" | "west";
|
|
764
887
|
t: number;
|
|
765
888
|
} | undefined;
|
|
889
|
+
boundary?: string | {
|
|
890
|
+
type: string;
|
|
891
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
892
|
+
} | undefined;
|
|
766
893
|
} | {
|
|
767
894
|
relative: [number, number];
|
|
768
895
|
} | {
|
|
769
896
|
relativeAccumulate: [number, number];
|
|
770
897
|
} | import('..').IRBetweenPosition;
|
|
771
|
-
kind: "cubic";
|
|
772
898
|
control1: [number, number];
|
|
773
899
|
control2: [number, number];
|
|
774
900
|
label?: {
|
|
@@ -786,22 +912,26 @@ export declare const CubicStepSchema: z.ZodObject<{
|
|
|
786
912
|
} | undefined;
|
|
787
913
|
}, {
|
|
788
914
|
type: "step";
|
|
915
|
+
kind: "cubic";
|
|
789
916
|
to: [number, number] | import('..').PolarPosition | {
|
|
790
917
|
of: string | [number, number] | import('..').PolarPosition;
|
|
791
918
|
offset: [number, number];
|
|
792
919
|
} | {
|
|
793
920
|
id: string;
|
|
794
921
|
offset?: [number, number] | undefined;
|
|
795
|
-
anchor?:
|
|
922
|
+
anchor?: string | number | {
|
|
796
923
|
side: "north" | "south" | "east" | "west";
|
|
797
924
|
t: number;
|
|
798
925
|
} | undefined;
|
|
926
|
+
boundary?: string | {
|
|
927
|
+
type: string;
|
|
928
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
929
|
+
} | undefined;
|
|
799
930
|
} | {
|
|
800
931
|
relative: [number, number];
|
|
801
932
|
} | {
|
|
802
933
|
relativeAccumulate: [number, number];
|
|
803
934
|
} | import('..').IRBetweenPosition;
|
|
804
|
-
kind: "cubic";
|
|
805
935
|
control1: [number, number];
|
|
806
936
|
control2: [number, number];
|
|
807
937
|
label?: {
|
|
@@ -823,7 +953,7 @@ export declare const BendStepSchema: z.ZodObject<{
|
|
|
823
953
|
kind: z.ZodLiteral<"bend">;
|
|
824
954
|
to: z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
825
955
|
id: z.ZodString;
|
|
826
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
956
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
827
957
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
828
958
|
t: z.ZodNumber;
|
|
829
959
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -834,20 +964,38 @@ export declare const BendStepSchema: z.ZodObject<{
|
|
|
834
964
|
t: number;
|
|
835
965
|
}>]>>;
|
|
836
966
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
967
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
968
|
+
type: z.ZodString;
|
|
969
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
970
|
+
}, "strip", z.ZodTypeAny, {
|
|
971
|
+
type: string;
|
|
972
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
973
|
+
}, {
|
|
974
|
+
type: string;
|
|
975
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
976
|
+
}>]>>;
|
|
837
977
|
}, "strip", z.ZodTypeAny, {
|
|
838
978
|
id: string;
|
|
839
979
|
offset?: [number, number] | undefined;
|
|
840
|
-
anchor?:
|
|
980
|
+
anchor?: string | number | {
|
|
841
981
|
side: "north" | "south" | "east" | "west";
|
|
842
982
|
t: number;
|
|
843
983
|
} | undefined;
|
|
984
|
+
boundary?: string | {
|
|
985
|
+
type: string;
|
|
986
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
987
|
+
} | undefined;
|
|
844
988
|
}, {
|
|
845
989
|
id: string;
|
|
846
990
|
offset?: [number, number] | undefined;
|
|
847
|
-
anchor?:
|
|
991
|
+
anchor?: string | number | {
|
|
848
992
|
side: "north" | "south" | "east" | "west";
|
|
849
993
|
t: number;
|
|
850
994
|
} | undefined;
|
|
995
|
+
boundary?: string | {
|
|
996
|
+
type: string;
|
|
997
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
998
|
+
} | undefined;
|
|
851
999
|
}>, z.ZodObject<{
|
|
852
1000
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
853
1001
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -924,22 +1072,26 @@ export declare const BendStepSchema: z.ZodObject<{
|
|
|
924
1072
|
}>>;
|
|
925
1073
|
}, "strip", z.ZodTypeAny, {
|
|
926
1074
|
type: "step";
|
|
1075
|
+
kind: "bend";
|
|
927
1076
|
to: [number, number] | import('..').PolarPosition | {
|
|
928
1077
|
of: string | [number, number] | import('..').PolarPosition;
|
|
929
1078
|
offset: [number, number];
|
|
930
1079
|
} | {
|
|
931
1080
|
id: string;
|
|
932
1081
|
offset?: [number, number] | undefined;
|
|
933
|
-
anchor?:
|
|
1082
|
+
anchor?: string | number | {
|
|
934
1083
|
side: "north" | "south" | "east" | "west";
|
|
935
1084
|
t: number;
|
|
936
1085
|
} | undefined;
|
|
1086
|
+
boundary?: string | {
|
|
1087
|
+
type: string;
|
|
1088
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1089
|
+
} | undefined;
|
|
937
1090
|
} | {
|
|
938
1091
|
relative: [number, number];
|
|
939
1092
|
} | {
|
|
940
1093
|
relativeAccumulate: [number, number];
|
|
941
1094
|
} | import('..').IRBetweenPosition;
|
|
942
|
-
kind: "bend";
|
|
943
1095
|
label?: {
|
|
944
1096
|
text: string;
|
|
945
1097
|
side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
|
|
@@ -960,22 +1112,26 @@ export declare const BendStepSchema: z.ZodObject<{
|
|
|
960
1112
|
looseness?: number | undefined;
|
|
961
1113
|
}, {
|
|
962
1114
|
type: "step";
|
|
1115
|
+
kind: "bend";
|
|
963
1116
|
to: [number, number] | import('..').PolarPosition | {
|
|
964
1117
|
of: string | [number, number] | import('..').PolarPosition;
|
|
965
1118
|
offset: [number, number];
|
|
966
1119
|
} | {
|
|
967
1120
|
id: string;
|
|
968
1121
|
offset?: [number, number] | undefined;
|
|
969
|
-
anchor?:
|
|
1122
|
+
anchor?: string | number | {
|
|
970
1123
|
side: "north" | "south" | "east" | "west";
|
|
971
1124
|
t: number;
|
|
972
1125
|
} | undefined;
|
|
1126
|
+
boundary?: string | {
|
|
1127
|
+
type: string;
|
|
1128
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1129
|
+
} | undefined;
|
|
973
1130
|
} | {
|
|
974
1131
|
relative: [number, number];
|
|
975
1132
|
} | {
|
|
976
1133
|
relativeAccumulate: [number, number];
|
|
977
1134
|
} | import('..').IRBetweenPosition;
|
|
978
|
-
kind: "bend";
|
|
979
1135
|
label?: {
|
|
980
1136
|
text: string;
|
|
981
1137
|
side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
|
|
@@ -1005,7 +1161,7 @@ export declare const ArcStepSchema: z.ZodObject<{
|
|
|
1005
1161
|
radiusY: z.ZodOptional<z.ZodNumber>;
|
|
1006
1162
|
center: z.ZodOptional<z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
1007
1163
|
id: z.ZodString;
|
|
1008
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
1164
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
1009
1165
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
1010
1166
|
t: z.ZodNumber;
|
|
1011
1167
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1016,20 +1172,38 @@ export declare const ArcStepSchema: z.ZodObject<{
|
|
|
1016
1172
|
t: number;
|
|
1017
1173
|
}>]>>;
|
|
1018
1174
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
1175
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1176
|
+
type: z.ZodString;
|
|
1177
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
1178
|
+
}, "strip", z.ZodTypeAny, {
|
|
1179
|
+
type: string;
|
|
1180
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1181
|
+
}, {
|
|
1182
|
+
type: string;
|
|
1183
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1184
|
+
}>]>>;
|
|
1019
1185
|
}, "strip", z.ZodTypeAny, {
|
|
1020
1186
|
id: string;
|
|
1021
1187
|
offset?: [number, number] | undefined;
|
|
1022
|
-
anchor?:
|
|
1188
|
+
anchor?: string | number | {
|
|
1023
1189
|
side: "north" | "south" | "east" | "west";
|
|
1024
1190
|
t: number;
|
|
1025
1191
|
} | undefined;
|
|
1192
|
+
boundary?: string | {
|
|
1193
|
+
type: string;
|
|
1194
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1195
|
+
} | undefined;
|
|
1026
1196
|
}, {
|
|
1027
1197
|
id: string;
|
|
1028
1198
|
offset?: [number, number] | undefined;
|
|
1029
|
-
anchor?:
|
|
1199
|
+
anchor?: string | number | {
|
|
1030
1200
|
side: "north" | "south" | "east" | "west";
|
|
1031
1201
|
t: number;
|
|
1032
1202
|
} | undefined;
|
|
1203
|
+
boundary?: string | {
|
|
1204
|
+
type: string;
|
|
1205
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1206
|
+
} | undefined;
|
|
1033
1207
|
}>, z.ZodObject<{
|
|
1034
1208
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
1035
1209
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1101,9 +1275,9 @@ export declare const ArcStepSchema: z.ZodObject<{
|
|
|
1101
1275
|
}>>;
|
|
1102
1276
|
}, "strip", z.ZodTypeAny, {
|
|
1103
1277
|
type: "step";
|
|
1278
|
+
kind: "arc";
|
|
1104
1279
|
startAngle: number;
|
|
1105
1280
|
endAngle: number;
|
|
1106
|
-
kind: "arc";
|
|
1107
1281
|
radius?: number | undefined;
|
|
1108
1282
|
center?: [number, number] | import('..').PolarPosition | {
|
|
1109
1283
|
of: string | [number, number] | import('..').PolarPosition;
|
|
@@ -1111,10 +1285,14 @@ export declare const ArcStepSchema: z.ZodObject<{
|
|
|
1111
1285
|
} | {
|
|
1112
1286
|
id: string;
|
|
1113
1287
|
offset?: [number, number] | undefined;
|
|
1114
|
-
anchor?:
|
|
1288
|
+
anchor?: string | number | {
|
|
1115
1289
|
side: "north" | "south" | "east" | "west";
|
|
1116
1290
|
t: number;
|
|
1117
1291
|
} | undefined;
|
|
1292
|
+
boundary?: string | {
|
|
1293
|
+
type: string;
|
|
1294
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1295
|
+
} | undefined;
|
|
1118
1296
|
} | {
|
|
1119
1297
|
relative: [number, number];
|
|
1120
1298
|
} | {
|
|
@@ -1137,9 +1315,9 @@ export declare const ArcStepSchema: z.ZodObject<{
|
|
|
1137
1315
|
radiusY?: number | undefined;
|
|
1138
1316
|
}, {
|
|
1139
1317
|
type: "step";
|
|
1318
|
+
kind: "arc";
|
|
1140
1319
|
startAngle: number;
|
|
1141
1320
|
endAngle: number;
|
|
1142
|
-
kind: "arc";
|
|
1143
1321
|
radius?: number | undefined;
|
|
1144
1322
|
center?: [number, number] | import('..').PolarPosition | {
|
|
1145
1323
|
of: string | [number, number] | import('..').PolarPosition;
|
|
@@ -1147,10 +1325,14 @@ export declare const ArcStepSchema: z.ZodObject<{
|
|
|
1147
1325
|
} | {
|
|
1148
1326
|
id: string;
|
|
1149
1327
|
offset?: [number, number] | undefined;
|
|
1150
|
-
anchor?:
|
|
1328
|
+
anchor?: string | number | {
|
|
1151
1329
|
side: "north" | "south" | "east" | "west";
|
|
1152
1330
|
t: number;
|
|
1153
1331
|
} | undefined;
|
|
1332
|
+
boundary?: string | {
|
|
1333
|
+
type: string;
|
|
1334
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1335
|
+
} | undefined;
|
|
1154
1336
|
} | {
|
|
1155
1337
|
relative: [number, number];
|
|
1156
1338
|
} | {
|
|
@@ -1230,8 +1412,6 @@ export declare const CirclePathStepSchema: z.ZodObject<{
|
|
|
1230
1412
|
type: "step";
|
|
1231
1413
|
radius: number;
|
|
1232
1414
|
kind: "circlePath";
|
|
1233
|
-
startAngle?: number | undefined;
|
|
1234
|
-
endAngle?: number | undefined;
|
|
1235
1415
|
label?: {
|
|
1236
1416
|
text: string;
|
|
1237
1417
|
side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
|
|
@@ -1245,13 +1425,13 @@ export declare const CirclePathStepSchema: z.ZodObject<{
|
|
|
1245
1425
|
position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
|
|
1246
1426
|
textColor?: string | undefined;
|
|
1247
1427
|
} | undefined;
|
|
1428
|
+
startAngle?: number | undefined;
|
|
1429
|
+
endAngle?: number | undefined;
|
|
1248
1430
|
closed?: "open" | "closed" | "chord" | "sector" | undefined;
|
|
1249
1431
|
}, {
|
|
1250
1432
|
type: "step";
|
|
1251
1433
|
radius: number;
|
|
1252
1434
|
kind: "circlePath";
|
|
1253
|
-
startAngle?: number | undefined;
|
|
1254
|
-
endAngle?: number | undefined;
|
|
1255
1435
|
label?: {
|
|
1256
1436
|
text: string;
|
|
1257
1437
|
side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
|
|
@@ -1265,6 +1445,8 @@ export declare const CirclePathStepSchema: z.ZodObject<{
|
|
|
1265
1445
|
position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
|
|
1266
1446
|
textColor?: string | undefined;
|
|
1267
1447
|
} | undefined;
|
|
1448
|
+
startAngle?: number | undefined;
|
|
1449
|
+
endAngle?: number | undefined;
|
|
1268
1450
|
closed?: "open" | "closed" | "chord" | "sector" | undefined;
|
|
1269
1451
|
}>;
|
|
1270
1452
|
export declare const EllipsePathStepSchema: z.ZodObject<{
|
|
@@ -1327,8 +1509,6 @@ export declare const EllipsePathStepSchema: z.ZodObject<{
|
|
|
1327
1509
|
kind: "ellipsePath";
|
|
1328
1510
|
radiusX: number;
|
|
1329
1511
|
radiusY: number;
|
|
1330
|
-
startAngle?: number | undefined;
|
|
1331
|
-
endAngle?: number | undefined;
|
|
1332
1512
|
label?: {
|
|
1333
1513
|
text: string;
|
|
1334
1514
|
side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
|
|
@@ -1342,14 +1522,14 @@ export declare const EllipsePathStepSchema: z.ZodObject<{
|
|
|
1342
1522
|
position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
|
|
1343
1523
|
textColor?: string | undefined;
|
|
1344
1524
|
} | undefined;
|
|
1525
|
+
startAngle?: number | undefined;
|
|
1526
|
+
endAngle?: number | undefined;
|
|
1345
1527
|
closed?: "open" | "closed" | "chord" | "sector" | undefined;
|
|
1346
1528
|
}, {
|
|
1347
1529
|
type: "step";
|
|
1348
1530
|
kind: "ellipsePath";
|
|
1349
1531
|
radiusX: number;
|
|
1350
1532
|
radiusY: number;
|
|
1351
|
-
startAngle?: number | undefined;
|
|
1352
|
-
endAngle?: number | undefined;
|
|
1353
1533
|
label?: {
|
|
1354
1534
|
text: string;
|
|
1355
1535
|
side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
|
|
@@ -1363,6 +1543,8 @@ export declare const EllipsePathStepSchema: z.ZodObject<{
|
|
|
1363
1543
|
position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
|
|
1364
1544
|
textColor?: string | undefined;
|
|
1365
1545
|
} | undefined;
|
|
1546
|
+
startAngle?: number | undefined;
|
|
1547
|
+
endAngle?: number | undefined;
|
|
1366
1548
|
closed?: "open" | "closed" | "chord" | "sector" | undefined;
|
|
1367
1549
|
}>;
|
|
1368
1550
|
export declare const RectangleStepSchema: z.ZodObject<{
|
|
@@ -1370,7 +1552,7 @@ export declare const RectangleStepSchema: z.ZodObject<{
|
|
|
1370
1552
|
kind: z.ZodLiteral<"rectangle">;
|
|
1371
1553
|
from: z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
1372
1554
|
id: z.ZodString;
|
|
1373
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
1555
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
1374
1556
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
1375
1557
|
t: z.ZodNumber;
|
|
1376
1558
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1381,20 +1563,38 @@ export declare const RectangleStepSchema: z.ZodObject<{
|
|
|
1381
1563
|
t: number;
|
|
1382
1564
|
}>]>>;
|
|
1383
1565
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
1566
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1567
|
+
type: z.ZodString;
|
|
1568
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
1569
|
+
}, "strip", z.ZodTypeAny, {
|
|
1570
|
+
type: string;
|
|
1571
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1572
|
+
}, {
|
|
1573
|
+
type: string;
|
|
1574
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1575
|
+
}>]>>;
|
|
1384
1576
|
}, "strip", z.ZodTypeAny, {
|
|
1385
1577
|
id: string;
|
|
1386
1578
|
offset?: [number, number] | undefined;
|
|
1387
|
-
anchor?:
|
|
1579
|
+
anchor?: string | number | {
|
|
1388
1580
|
side: "north" | "south" | "east" | "west";
|
|
1389
1581
|
t: number;
|
|
1390
1582
|
} | undefined;
|
|
1583
|
+
boundary?: string | {
|
|
1584
|
+
type: string;
|
|
1585
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1586
|
+
} | undefined;
|
|
1391
1587
|
}, {
|
|
1392
1588
|
id: string;
|
|
1393
1589
|
offset?: [number, number] | undefined;
|
|
1394
|
-
anchor?:
|
|
1590
|
+
anchor?: string | number | {
|
|
1395
1591
|
side: "north" | "south" | "east" | "west";
|
|
1396
1592
|
t: number;
|
|
1397
1593
|
} | undefined;
|
|
1594
|
+
boundary?: string | {
|
|
1595
|
+
type: string;
|
|
1596
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1597
|
+
} | undefined;
|
|
1398
1598
|
}>, z.ZodObject<{
|
|
1399
1599
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
1400
1600
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1419,7 +1619,7 @@ export declare const RectangleStepSchema: z.ZodObject<{
|
|
|
1419
1619
|
}>, z.ZodLazy<z.ZodType<import('..').IRBetweenPosition, z.ZodTypeDef, import('..').IRBetweenPosition>>]>;
|
|
1420
1620
|
to: z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
1421
1621
|
id: z.ZodString;
|
|
1422
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
1622
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
1423
1623
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
1424
1624
|
t: z.ZodNumber;
|
|
1425
1625
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1430,20 +1630,38 @@ export declare const RectangleStepSchema: z.ZodObject<{
|
|
|
1430
1630
|
t: number;
|
|
1431
1631
|
}>]>>;
|
|
1432
1632
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
1633
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1634
|
+
type: z.ZodString;
|
|
1635
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
1636
|
+
}, "strip", z.ZodTypeAny, {
|
|
1637
|
+
type: string;
|
|
1638
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1639
|
+
}, {
|
|
1640
|
+
type: string;
|
|
1641
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1642
|
+
}>]>>;
|
|
1433
1643
|
}, "strip", z.ZodTypeAny, {
|
|
1434
1644
|
id: string;
|
|
1435
1645
|
offset?: [number, number] | undefined;
|
|
1436
|
-
anchor?:
|
|
1646
|
+
anchor?: string | number | {
|
|
1437
1647
|
side: "north" | "south" | "east" | "west";
|
|
1438
1648
|
t: number;
|
|
1439
1649
|
} | undefined;
|
|
1650
|
+
boundary?: string | {
|
|
1651
|
+
type: string;
|
|
1652
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1653
|
+
} | undefined;
|
|
1440
1654
|
}, {
|
|
1441
1655
|
id: string;
|
|
1442
1656
|
offset?: [number, number] | undefined;
|
|
1443
|
-
anchor?:
|
|
1657
|
+
anchor?: string | number | {
|
|
1444
1658
|
side: "north" | "south" | "east" | "west";
|
|
1445
1659
|
t: number;
|
|
1446
1660
|
} | undefined;
|
|
1661
|
+
boundary?: string | {
|
|
1662
|
+
type: string;
|
|
1663
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1664
|
+
} | undefined;
|
|
1447
1665
|
}>, z.ZodObject<{
|
|
1448
1666
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
1449
1667
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1466,75 +1684,91 @@ export declare const RectangleStepSchema: z.ZodObject<{
|
|
|
1466
1684
|
of: string | [number, number] | import('..').PolarPosition;
|
|
1467
1685
|
offset: [number, number];
|
|
1468
1686
|
}>, z.ZodLazy<z.ZodType<import('..').IRBetweenPosition, z.ZodTypeDef, import('..').IRBetweenPosition>>]>;
|
|
1469
|
-
|
|
1687
|
+
cornerRadius: z.ZodOptional<z.ZodNumber>;
|
|
1470
1688
|
}, "strip", z.ZodTypeAny, {
|
|
1471
1689
|
type: "step";
|
|
1690
|
+
kind: "rectangle";
|
|
1472
1691
|
to: [number, number] | import('..').PolarPosition | {
|
|
1473
1692
|
of: string | [number, number] | import('..').PolarPosition;
|
|
1474
1693
|
offset: [number, number];
|
|
1475
1694
|
} | {
|
|
1476
1695
|
id: string;
|
|
1477
1696
|
offset?: [number, number] | undefined;
|
|
1478
|
-
anchor?:
|
|
1697
|
+
anchor?: string | number | {
|
|
1479
1698
|
side: "north" | "south" | "east" | "west";
|
|
1480
1699
|
t: number;
|
|
1481
1700
|
} | undefined;
|
|
1701
|
+
boundary?: string | {
|
|
1702
|
+
type: string;
|
|
1703
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1704
|
+
} | undefined;
|
|
1482
1705
|
} | {
|
|
1483
1706
|
relative: [number, number];
|
|
1484
1707
|
} | {
|
|
1485
1708
|
relativeAccumulate: [number, number];
|
|
1486
1709
|
} | import('..').IRBetweenPosition;
|
|
1487
|
-
kind: "rectangle";
|
|
1488
1710
|
from: [number, number] | import('..').PolarPosition | {
|
|
1489
1711
|
of: string | [number, number] | import('..').PolarPosition;
|
|
1490
1712
|
offset: [number, number];
|
|
1491
1713
|
} | {
|
|
1492
1714
|
id: string;
|
|
1493
1715
|
offset?: [number, number] | undefined;
|
|
1494
|
-
anchor?:
|
|
1716
|
+
anchor?: string | number | {
|
|
1495
1717
|
side: "north" | "south" | "east" | "west";
|
|
1496
1718
|
t: number;
|
|
1497
1719
|
} | undefined;
|
|
1720
|
+
boundary?: string | {
|
|
1721
|
+
type: string;
|
|
1722
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1723
|
+
} | undefined;
|
|
1498
1724
|
} | {
|
|
1499
1725
|
relative: [number, number];
|
|
1500
1726
|
} | {
|
|
1501
1727
|
relativeAccumulate: [number, number];
|
|
1502
1728
|
} | import('..').IRBetweenPosition;
|
|
1503
|
-
|
|
1729
|
+
cornerRadius?: number | undefined;
|
|
1504
1730
|
}, {
|
|
1505
1731
|
type: "step";
|
|
1732
|
+
kind: "rectangle";
|
|
1506
1733
|
to: [number, number] | import('..').PolarPosition | {
|
|
1507
1734
|
of: string | [number, number] | import('..').PolarPosition;
|
|
1508
1735
|
offset: [number, number];
|
|
1509
1736
|
} | {
|
|
1510
1737
|
id: string;
|
|
1511
1738
|
offset?: [number, number] | undefined;
|
|
1512
|
-
anchor?:
|
|
1739
|
+
anchor?: string | number | {
|
|
1513
1740
|
side: "north" | "south" | "east" | "west";
|
|
1514
1741
|
t: number;
|
|
1515
1742
|
} | undefined;
|
|
1743
|
+
boundary?: string | {
|
|
1744
|
+
type: string;
|
|
1745
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1746
|
+
} | undefined;
|
|
1516
1747
|
} | {
|
|
1517
1748
|
relative: [number, number];
|
|
1518
1749
|
} | {
|
|
1519
1750
|
relativeAccumulate: [number, number];
|
|
1520
1751
|
} | import('..').IRBetweenPosition;
|
|
1521
|
-
kind: "rectangle";
|
|
1522
1752
|
from: [number, number] | import('..').PolarPosition | {
|
|
1523
1753
|
of: string | [number, number] | import('..').PolarPosition;
|
|
1524
1754
|
offset: [number, number];
|
|
1525
1755
|
} | {
|
|
1526
1756
|
id: string;
|
|
1527
1757
|
offset?: [number, number] | undefined;
|
|
1528
|
-
anchor?:
|
|
1758
|
+
anchor?: string | number | {
|
|
1529
1759
|
side: "north" | "south" | "east" | "west";
|
|
1530
1760
|
t: number;
|
|
1531
1761
|
} | undefined;
|
|
1762
|
+
boundary?: string | {
|
|
1763
|
+
type: string;
|
|
1764
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1765
|
+
} | undefined;
|
|
1532
1766
|
} | {
|
|
1533
1767
|
relative: [number, number];
|
|
1534
1768
|
} | {
|
|
1535
1769
|
relativeAccumulate: [number, number];
|
|
1536
1770
|
} | import('..').IRBetweenPosition;
|
|
1537
|
-
|
|
1771
|
+
cornerRadius?: number | undefined;
|
|
1538
1772
|
}>;
|
|
1539
1773
|
export declare const GeneratorStepSchema: z.ZodObject<{
|
|
1540
1774
|
type: z.ZodLiteral<"step">;
|
|
@@ -1542,7 +1776,7 @@ export declare const GeneratorStepSchema: z.ZodObject<{
|
|
|
1542
1776
|
name: z.ZodString;
|
|
1543
1777
|
to: z.ZodOptional<z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
1544
1778
|
id: z.ZodString;
|
|
1545
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
1779
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
1546
1780
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
1547
1781
|
t: z.ZodNumber;
|
|
1548
1782
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1553,20 +1787,38 @@ export declare const GeneratorStepSchema: z.ZodObject<{
|
|
|
1553
1787
|
t: number;
|
|
1554
1788
|
}>]>>;
|
|
1555
1789
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
1790
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1791
|
+
type: z.ZodString;
|
|
1792
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
1793
|
+
}, "strip", z.ZodTypeAny, {
|
|
1794
|
+
type: string;
|
|
1795
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1796
|
+
}, {
|
|
1797
|
+
type: string;
|
|
1798
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1799
|
+
}>]>>;
|
|
1556
1800
|
}, "strip", z.ZodTypeAny, {
|
|
1557
1801
|
id: string;
|
|
1558
1802
|
offset?: [number, number] | undefined;
|
|
1559
|
-
anchor?:
|
|
1803
|
+
anchor?: string | number | {
|
|
1560
1804
|
side: "north" | "south" | "east" | "west";
|
|
1561
1805
|
t: number;
|
|
1562
1806
|
} | undefined;
|
|
1807
|
+
boundary?: string | {
|
|
1808
|
+
type: string;
|
|
1809
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1810
|
+
} | undefined;
|
|
1563
1811
|
}, {
|
|
1564
1812
|
id: string;
|
|
1565
1813
|
offset?: [number, number] | undefined;
|
|
1566
|
-
anchor?:
|
|
1814
|
+
anchor?: string | number | {
|
|
1567
1815
|
side: "north" | "south" | "east" | "west";
|
|
1568
1816
|
t: number;
|
|
1569
1817
|
} | undefined;
|
|
1818
|
+
boundary?: string | {
|
|
1819
|
+
type: string;
|
|
1820
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1821
|
+
} | undefined;
|
|
1570
1822
|
}>, z.ZodObject<{
|
|
1571
1823
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
1572
1824
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1648,10 +1900,14 @@ export declare const GeneratorStepSchema: z.ZodObject<{
|
|
|
1648
1900
|
} | {
|
|
1649
1901
|
id: string;
|
|
1650
1902
|
offset?: [number, number] | undefined;
|
|
1651
|
-
anchor?:
|
|
1903
|
+
anchor?: string | number | {
|
|
1652
1904
|
side: "north" | "south" | "east" | "west";
|
|
1653
1905
|
t: number;
|
|
1654
1906
|
} | undefined;
|
|
1907
|
+
boundary?: string | {
|
|
1908
|
+
type: string;
|
|
1909
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1910
|
+
} | undefined;
|
|
1655
1911
|
} | {
|
|
1656
1912
|
relative: [number, number];
|
|
1657
1913
|
} | {
|
|
@@ -1681,10 +1937,14 @@ export declare const GeneratorStepSchema: z.ZodObject<{
|
|
|
1681
1937
|
} | {
|
|
1682
1938
|
id: string;
|
|
1683
1939
|
offset?: [number, number] | undefined;
|
|
1684
|
-
anchor?:
|
|
1940
|
+
anchor?: string | number | {
|
|
1685
1941
|
side: "north" | "south" | "east" | "west";
|
|
1686
1942
|
t: number;
|
|
1687
1943
|
} | undefined;
|
|
1944
|
+
boundary?: string | {
|
|
1945
|
+
type: string;
|
|
1946
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1947
|
+
} | undefined;
|
|
1688
1948
|
} | {
|
|
1689
1949
|
relative: [number, number];
|
|
1690
1950
|
} | {
|
|
@@ -1709,7 +1969,7 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
1709
1969
|
kind: z.ZodLiteral<"move">;
|
|
1710
1970
|
to: z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
1711
1971
|
id: z.ZodString;
|
|
1712
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
1972
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
1713
1973
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
1714
1974
|
t: z.ZodNumber;
|
|
1715
1975
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1720,20 +1980,38 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
1720
1980
|
t: number;
|
|
1721
1981
|
}>]>>;
|
|
1722
1982
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
1983
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1984
|
+
type: z.ZodString;
|
|
1985
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
1986
|
+
}, "strip", z.ZodTypeAny, {
|
|
1987
|
+
type: string;
|
|
1988
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1989
|
+
}, {
|
|
1990
|
+
type: string;
|
|
1991
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
1992
|
+
}>]>>;
|
|
1723
1993
|
}, "strip", z.ZodTypeAny, {
|
|
1724
1994
|
id: string;
|
|
1725
1995
|
offset?: [number, number] | undefined;
|
|
1726
|
-
anchor?:
|
|
1996
|
+
anchor?: string | number | {
|
|
1727
1997
|
side: "north" | "south" | "east" | "west";
|
|
1728
1998
|
t: number;
|
|
1729
1999
|
} | undefined;
|
|
2000
|
+
boundary?: string | {
|
|
2001
|
+
type: string;
|
|
2002
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2003
|
+
} | undefined;
|
|
1730
2004
|
}, {
|
|
1731
2005
|
id: string;
|
|
1732
2006
|
offset?: [number, number] | undefined;
|
|
1733
|
-
anchor?:
|
|
2007
|
+
anchor?: string | number | {
|
|
1734
2008
|
side: "north" | "south" | "east" | "west";
|
|
1735
2009
|
t: number;
|
|
1736
2010
|
} | undefined;
|
|
2011
|
+
boundary?: string | {
|
|
2012
|
+
type: string;
|
|
2013
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2014
|
+
} | undefined;
|
|
1737
2015
|
}>, z.ZodObject<{
|
|
1738
2016
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
1739
2017
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1758,46 +2036,54 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
1758
2036
|
}>, z.ZodLazy<z.ZodType<import('..').IRBetweenPosition, z.ZodTypeDef, import('..').IRBetweenPosition>>]>;
|
|
1759
2037
|
}, "strip", z.ZodTypeAny, {
|
|
1760
2038
|
type: "step";
|
|
2039
|
+
kind: "move";
|
|
1761
2040
|
to: [number, number] | import('..').PolarPosition | {
|
|
1762
2041
|
of: string | [number, number] | import('..').PolarPosition;
|
|
1763
2042
|
offset: [number, number];
|
|
1764
2043
|
} | {
|
|
1765
2044
|
id: string;
|
|
1766
2045
|
offset?: [number, number] | undefined;
|
|
1767
|
-
anchor?:
|
|
2046
|
+
anchor?: string | number | {
|
|
1768
2047
|
side: "north" | "south" | "east" | "west";
|
|
1769
2048
|
t: number;
|
|
1770
2049
|
} | undefined;
|
|
2050
|
+
boundary?: string | {
|
|
2051
|
+
type: string;
|
|
2052
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2053
|
+
} | undefined;
|
|
1771
2054
|
} | {
|
|
1772
2055
|
relative: [number, number];
|
|
1773
2056
|
} | {
|
|
1774
2057
|
relativeAccumulate: [number, number];
|
|
1775
2058
|
} | import('..').IRBetweenPosition;
|
|
1776
|
-
kind: "move";
|
|
1777
2059
|
}, {
|
|
1778
2060
|
type: "step";
|
|
2061
|
+
kind: "move";
|
|
1779
2062
|
to: [number, number] | import('..').PolarPosition | {
|
|
1780
2063
|
of: string | [number, number] | import('..').PolarPosition;
|
|
1781
2064
|
offset: [number, number];
|
|
1782
2065
|
} | {
|
|
1783
2066
|
id: string;
|
|
1784
2067
|
offset?: [number, number] | undefined;
|
|
1785
|
-
anchor?:
|
|
2068
|
+
anchor?: string | number | {
|
|
1786
2069
|
side: "north" | "south" | "east" | "west";
|
|
1787
2070
|
t: number;
|
|
1788
2071
|
} | undefined;
|
|
2072
|
+
boundary?: string | {
|
|
2073
|
+
type: string;
|
|
2074
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2075
|
+
} | undefined;
|
|
1789
2076
|
} | {
|
|
1790
2077
|
relative: [number, number];
|
|
1791
2078
|
} | {
|
|
1792
2079
|
relativeAccumulate: [number, number];
|
|
1793
2080
|
} | import('..').IRBetweenPosition;
|
|
1794
|
-
kind: "move";
|
|
1795
2081
|
}>, z.ZodObject<{
|
|
1796
2082
|
type: z.ZodLiteral<"step">;
|
|
1797
2083
|
kind: z.ZodLiteral<"line">;
|
|
1798
2084
|
to: z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
1799
2085
|
id: z.ZodString;
|
|
1800
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
2086
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
1801
2087
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
1802
2088
|
t: z.ZodNumber;
|
|
1803
2089
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1808,20 +2094,38 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
1808
2094
|
t: number;
|
|
1809
2095
|
}>]>>;
|
|
1810
2096
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
2097
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
2098
|
+
type: z.ZodString;
|
|
2099
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
2100
|
+
}, "strip", z.ZodTypeAny, {
|
|
2101
|
+
type: string;
|
|
2102
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2103
|
+
}, {
|
|
2104
|
+
type: string;
|
|
2105
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2106
|
+
}>]>>;
|
|
1811
2107
|
}, "strip", z.ZodTypeAny, {
|
|
1812
2108
|
id: string;
|
|
1813
2109
|
offset?: [number, number] | undefined;
|
|
1814
|
-
anchor?:
|
|
2110
|
+
anchor?: string | number | {
|
|
1815
2111
|
side: "north" | "south" | "east" | "west";
|
|
1816
2112
|
t: number;
|
|
1817
2113
|
} | undefined;
|
|
2114
|
+
boundary?: string | {
|
|
2115
|
+
type: string;
|
|
2116
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2117
|
+
} | undefined;
|
|
1818
2118
|
}, {
|
|
1819
2119
|
id: string;
|
|
1820
2120
|
offset?: [number, number] | undefined;
|
|
1821
|
-
anchor?:
|
|
2121
|
+
anchor?: string | number | {
|
|
1822
2122
|
side: "north" | "south" | "east" | "west";
|
|
1823
2123
|
t: number;
|
|
1824
2124
|
} | undefined;
|
|
2125
|
+
boundary?: string | {
|
|
2126
|
+
type: string;
|
|
2127
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2128
|
+
} | undefined;
|
|
1825
2129
|
}>, z.ZodObject<{
|
|
1826
2130
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
1827
2131
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1893,22 +2197,26 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
1893
2197
|
}>>;
|
|
1894
2198
|
}, "strip", z.ZodTypeAny, {
|
|
1895
2199
|
type: "step";
|
|
2200
|
+
kind: "line";
|
|
1896
2201
|
to: [number, number] | import('..').PolarPosition | {
|
|
1897
2202
|
of: string | [number, number] | import('..').PolarPosition;
|
|
1898
2203
|
offset: [number, number];
|
|
1899
2204
|
} | {
|
|
1900
2205
|
id: string;
|
|
1901
2206
|
offset?: [number, number] | undefined;
|
|
1902
|
-
anchor?:
|
|
2207
|
+
anchor?: string | number | {
|
|
1903
2208
|
side: "north" | "south" | "east" | "west";
|
|
1904
2209
|
t: number;
|
|
1905
2210
|
} | undefined;
|
|
2211
|
+
boundary?: string | {
|
|
2212
|
+
type: string;
|
|
2213
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2214
|
+
} | undefined;
|
|
1906
2215
|
} | {
|
|
1907
2216
|
relative: [number, number];
|
|
1908
2217
|
} | {
|
|
1909
2218
|
relativeAccumulate: [number, number];
|
|
1910
2219
|
} | import('..').IRBetweenPosition;
|
|
1911
|
-
kind: "line";
|
|
1912
2220
|
label?: {
|
|
1913
2221
|
text: string;
|
|
1914
2222
|
side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
|
|
@@ -1924,22 +2232,26 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
1924
2232
|
} | undefined;
|
|
1925
2233
|
}, {
|
|
1926
2234
|
type: "step";
|
|
2235
|
+
kind: "line";
|
|
1927
2236
|
to: [number, number] | import('..').PolarPosition | {
|
|
1928
2237
|
of: string | [number, number] | import('..').PolarPosition;
|
|
1929
2238
|
offset: [number, number];
|
|
1930
2239
|
} | {
|
|
1931
2240
|
id: string;
|
|
1932
2241
|
offset?: [number, number] | undefined;
|
|
1933
|
-
anchor?:
|
|
2242
|
+
anchor?: string | number | {
|
|
1934
2243
|
side: "north" | "south" | "east" | "west";
|
|
1935
2244
|
t: number;
|
|
1936
2245
|
} | undefined;
|
|
2246
|
+
boundary?: string | {
|
|
2247
|
+
type: string;
|
|
2248
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2249
|
+
} | undefined;
|
|
1937
2250
|
} | {
|
|
1938
2251
|
relative: [number, number];
|
|
1939
2252
|
} | {
|
|
1940
2253
|
relativeAccumulate: [number, number];
|
|
1941
2254
|
} | import('..').IRBetweenPosition;
|
|
1942
|
-
kind: "line";
|
|
1943
2255
|
label?: {
|
|
1944
2256
|
text: string;
|
|
1945
2257
|
side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
|
|
@@ -1959,7 +2271,7 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
1959
2271
|
via: z.ZodEnum<["-|", "|-"]>;
|
|
1960
2272
|
to: z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
1961
2273
|
id: z.ZodString;
|
|
1962
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
2274
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
1963
2275
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
1964
2276
|
t: z.ZodNumber;
|
|
1965
2277
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1970,20 +2282,38 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
1970
2282
|
t: number;
|
|
1971
2283
|
}>]>>;
|
|
1972
2284
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
2285
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
2286
|
+
type: z.ZodString;
|
|
2287
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
2288
|
+
}, "strip", z.ZodTypeAny, {
|
|
2289
|
+
type: string;
|
|
2290
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2291
|
+
}, {
|
|
2292
|
+
type: string;
|
|
2293
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2294
|
+
}>]>>;
|
|
1973
2295
|
}, "strip", z.ZodTypeAny, {
|
|
1974
2296
|
id: string;
|
|
1975
2297
|
offset?: [number, number] | undefined;
|
|
1976
|
-
anchor?:
|
|
2298
|
+
anchor?: string | number | {
|
|
1977
2299
|
side: "north" | "south" | "east" | "west";
|
|
1978
2300
|
t: number;
|
|
1979
2301
|
} | undefined;
|
|
2302
|
+
boundary?: string | {
|
|
2303
|
+
type: string;
|
|
2304
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2305
|
+
} | undefined;
|
|
1980
2306
|
}, {
|
|
1981
2307
|
id: string;
|
|
1982
2308
|
offset?: [number, number] | undefined;
|
|
1983
|
-
anchor?:
|
|
2309
|
+
anchor?: string | number | {
|
|
1984
2310
|
side: "north" | "south" | "east" | "west";
|
|
1985
2311
|
t: number;
|
|
1986
2312
|
} | undefined;
|
|
2313
|
+
boundary?: string | {
|
|
2314
|
+
type: string;
|
|
2315
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2316
|
+
} | undefined;
|
|
1987
2317
|
}>, z.ZodObject<{
|
|
1988
2318
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
1989
2319
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2055,22 +2385,26 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2055
2385
|
}>>;
|
|
2056
2386
|
}, "strip", z.ZodTypeAny, {
|
|
2057
2387
|
type: "step";
|
|
2388
|
+
kind: "step";
|
|
2058
2389
|
to: [number, number] | import('..').PolarPosition | {
|
|
2059
2390
|
of: string | [number, number] | import('..').PolarPosition;
|
|
2060
2391
|
offset: [number, number];
|
|
2061
2392
|
} | {
|
|
2062
2393
|
id: string;
|
|
2063
2394
|
offset?: [number, number] | undefined;
|
|
2064
|
-
anchor?:
|
|
2395
|
+
anchor?: string | number | {
|
|
2065
2396
|
side: "north" | "south" | "east" | "west";
|
|
2066
2397
|
t: number;
|
|
2067
2398
|
} | undefined;
|
|
2399
|
+
boundary?: string | {
|
|
2400
|
+
type: string;
|
|
2401
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2402
|
+
} | undefined;
|
|
2068
2403
|
} | {
|
|
2069
2404
|
relative: [number, number];
|
|
2070
2405
|
} | {
|
|
2071
2406
|
relativeAccumulate: [number, number];
|
|
2072
2407
|
} | import('..').IRBetweenPosition;
|
|
2073
|
-
kind: "step";
|
|
2074
2408
|
via: "-|" | "|-";
|
|
2075
2409
|
label?: {
|
|
2076
2410
|
text: string;
|
|
@@ -2087,22 +2421,26 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2087
2421
|
} | undefined;
|
|
2088
2422
|
}, {
|
|
2089
2423
|
type: "step";
|
|
2424
|
+
kind: "step";
|
|
2090
2425
|
to: [number, number] | import('..').PolarPosition | {
|
|
2091
2426
|
of: string | [number, number] | import('..').PolarPosition;
|
|
2092
2427
|
offset: [number, number];
|
|
2093
2428
|
} | {
|
|
2094
2429
|
id: string;
|
|
2095
2430
|
offset?: [number, number] | undefined;
|
|
2096
|
-
anchor?:
|
|
2431
|
+
anchor?: string | number | {
|
|
2097
2432
|
side: "north" | "south" | "east" | "west";
|
|
2098
2433
|
t: number;
|
|
2099
2434
|
} | undefined;
|
|
2435
|
+
boundary?: string | {
|
|
2436
|
+
type: string;
|
|
2437
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2438
|
+
} | undefined;
|
|
2100
2439
|
} | {
|
|
2101
2440
|
relative: [number, number];
|
|
2102
2441
|
} | {
|
|
2103
2442
|
relativeAccumulate: [number, number];
|
|
2104
2443
|
} | import('..').IRBetweenPosition;
|
|
2105
|
-
kind: "step";
|
|
2106
2444
|
via: "-|" | "|-";
|
|
2107
2445
|
label?: {
|
|
2108
2446
|
text: string;
|
|
@@ -2131,7 +2469,7 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2131
2469
|
kind: z.ZodLiteral<"curve">;
|
|
2132
2470
|
to: z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
2133
2471
|
id: z.ZodString;
|
|
2134
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
2472
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
2135
2473
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
2136
2474
|
t: z.ZodNumber;
|
|
2137
2475
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2142,20 +2480,38 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2142
2480
|
t: number;
|
|
2143
2481
|
}>]>>;
|
|
2144
2482
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
2483
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
2484
|
+
type: z.ZodString;
|
|
2485
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
2486
|
+
}, "strip", z.ZodTypeAny, {
|
|
2487
|
+
type: string;
|
|
2488
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2489
|
+
}, {
|
|
2490
|
+
type: string;
|
|
2491
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2492
|
+
}>]>>;
|
|
2145
2493
|
}, "strip", z.ZodTypeAny, {
|
|
2146
2494
|
id: string;
|
|
2147
2495
|
offset?: [number, number] | undefined;
|
|
2148
|
-
anchor?:
|
|
2496
|
+
anchor?: string | number | {
|
|
2149
2497
|
side: "north" | "south" | "east" | "west";
|
|
2150
2498
|
t: number;
|
|
2151
2499
|
} | undefined;
|
|
2500
|
+
boundary?: string | {
|
|
2501
|
+
type: string;
|
|
2502
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2503
|
+
} | undefined;
|
|
2152
2504
|
}, {
|
|
2153
2505
|
id: string;
|
|
2154
2506
|
offset?: [number, number] | undefined;
|
|
2155
|
-
anchor?:
|
|
2507
|
+
anchor?: string | number | {
|
|
2156
2508
|
side: "north" | "south" | "east" | "west";
|
|
2157
2509
|
t: number;
|
|
2158
2510
|
} | undefined;
|
|
2511
|
+
boundary?: string | {
|
|
2512
|
+
type: string;
|
|
2513
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2514
|
+
} | undefined;
|
|
2159
2515
|
}>, z.ZodObject<{
|
|
2160
2516
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
2161
2517
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2228,22 +2584,26 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2228
2584
|
}>>;
|
|
2229
2585
|
}, "strip", z.ZodTypeAny, {
|
|
2230
2586
|
type: "step";
|
|
2587
|
+
kind: "curve";
|
|
2231
2588
|
to: [number, number] | import('..').PolarPosition | {
|
|
2232
2589
|
of: string | [number, number] | import('..').PolarPosition;
|
|
2233
2590
|
offset: [number, number];
|
|
2234
2591
|
} | {
|
|
2235
2592
|
id: string;
|
|
2236
2593
|
offset?: [number, number] | undefined;
|
|
2237
|
-
anchor?:
|
|
2594
|
+
anchor?: string | number | {
|
|
2238
2595
|
side: "north" | "south" | "east" | "west";
|
|
2239
2596
|
t: number;
|
|
2240
2597
|
} | undefined;
|
|
2598
|
+
boundary?: string | {
|
|
2599
|
+
type: string;
|
|
2600
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2601
|
+
} | undefined;
|
|
2241
2602
|
} | {
|
|
2242
2603
|
relative: [number, number];
|
|
2243
2604
|
} | {
|
|
2244
2605
|
relativeAccumulate: [number, number];
|
|
2245
2606
|
} | import('..').IRBetweenPosition;
|
|
2246
|
-
kind: "curve";
|
|
2247
2607
|
control: [number, number];
|
|
2248
2608
|
label?: {
|
|
2249
2609
|
text: string;
|
|
@@ -2260,22 +2620,26 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2260
2620
|
} | undefined;
|
|
2261
2621
|
}, {
|
|
2262
2622
|
type: "step";
|
|
2623
|
+
kind: "curve";
|
|
2263
2624
|
to: [number, number] | import('..').PolarPosition | {
|
|
2264
2625
|
of: string | [number, number] | import('..').PolarPosition;
|
|
2265
2626
|
offset: [number, number];
|
|
2266
2627
|
} | {
|
|
2267
2628
|
id: string;
|
|
2268
2629
|
offset?: [number, number] | undefined;
|
|
2269
|
-
anchor?:
|
|
2630
|
+
anchor?: string | number | {
|
|
2270
2631
|
side: "north" | "south" | "east" | "west";
|
|
2271
2632
|
t: number;
|
|
2272
2633
|
} | undefined;
|
|
2634
|
+
boundary?: string | {
|
|
2635
|
+
type: string;
|
|
2636
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2637
|
+
} | undefined;
|
|
2273
2638
|
} | {
|
|
2274
2639
|
relative: [number, number];
|
|
2275
2640
|
} | {
|
|
2276
2641
|
relativeAccumulate: [number, number];
|
|
2277
2642
|
} | import('..').IRBetweenPosition;
|
|
2278
|
-
kind: "curve";
|
|
2279
2643
|
control: [number, number];
|
|
2280
2644
|
label?: {
|
|
2281
2645
|
text: string;
|
|
@@ -2295,7 +2659,7 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2295
2659
|
kind: z.ZodLiteral<"cubic">;
|
|
2296
2660
|
to: z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
2297
2661
|
id: z.ZodString;
|
|
2298
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
2662
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
2299
2663
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
2300
2664
|
t: z.ZodNumber;
|
|
2301
2665
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2306,20 +2670,38 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2306
2670
|
t: number;
|
|
2307
2671
|
}>]>>;
|
|
2308
2672
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
2673
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
2674
|
+
type: z.ZodString;
|
|
2675
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
2676
|
+
}, "strip", z.ZodTypeAny, {
|
|
2677
|
+
type: string;
|
|
2678
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2679
|
+
}, {
|
|
2680
|
+
type: string;
|
|
2681
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2682
|
+
}>]>>;
|
|
2309
2683
|
}, "strip", z.ZodTypeAny, {
|
|
2310
2684
|
id: string;
|
|
2311
2685
|
offset?: [number, number] | undefined;
|
|
2312
|
-
anchor?:
|
|
2686
|
+
anchor?: string | number | {
|
|
2313
2687
|
side: "north" | "south" | "east" | "west";
|
|
2314
2688
|
t: number;
|
|
2315
2689
|
} | undefined;
|
|
2690
|
+
boundary?: string | {
|
|
2691
|
+
type: string;
|
|
2692
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2693
|
+
} | undefined;
|
|
2316
2694
|
}, {
|
|
2317
2695
|
id: string;
|
|
2318
2696
|
offset?: [number, number] | undefined;
|
|
2319
|
-
anchor?:
|
|
2697
|
+
anchor?: string | number | {
|
|
2320
2698
|
side: "north" | "south" | "east" | "west";
|
|
2321
2699
|
t: number;
|
|
2322
2700
|
} | undefined;
|
|
2701
|
+
boundary?: string | {
|
|
2702
|
+
type: string;
|
|
2703
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2704
|
+
} | undefined;
|
|
2323
2705
|
}>, z.ZodObject<{
|
|
2324
2706
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
2325
2707
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2393,22 +2775,26 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2393
2775
|
}>>;
|
|
2394
2776
|
}, "strip", z.ZodTypeAny, {
|
|
2395
2777
|
type: "step";
|
|
2778
|
+
kind: "cubic";
|
|
2396
2779
|
to: [number, number] | import('..').PolarPosition | {
|
|
2397
2780
|
of: string | [number, number] | import('..').PolarPosition;
|
|
2398
2781
|
offset: [number, number];
|
|
2399
2782
|
} | {
|
|
2400
2783
|
id: string;
|
|
2401
2784
|
offset?: [number, number] | undefined;
|
|
2402
|
-
anchor?:
|
|
2785
|
+
anchor?: string | number | {
|
|
2403
2786
|
side: "north" | "south" | "east" | "west";
|
|
2404
2787
|
t: number;
|
|
2405
2788
|
} | undefined;
|
|
2789
|
+
boundary?: string | {
|
|
2790
|
+
type: string;
|
|
2791
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2792
|
+
} | undefined;
|
|
2406
2793
|
} | {
|
|
2407
2794
|
relative: [number, number];
|
|
2408
2795
|
} | {
|
|
2409
2796
|
relativeAccumulate: [number, number];
|
|
2410
2797
|
} | import('..').IRBetweenPosition;
|
|
2411
|
-
kind: "cubic";
|
|
2412
2798
|
control1: [number, number];
|
|
2413
2799
|
control2: [number, number];
|
|
2414
2800
|
label?: {
|
|
@@ -2426,22 +2812,26 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2426
2812
|
} | undefined;
|
|
2427
2813
|
}, {
|
|
2428
2814
|
type: "step";
|
|
2815
|
+
kind: "cubic";
|
|
2429
2816
|
to: [number, number] | import('..').PolarPosition | {
|
|
2430
2817
|
of: string | [number, number] | import('..').PolarPosition;
|
|
2431
2818
|
offset: [number, number];
|
|
2432
2819
|
} | {
|
|
2433
2820
|
id: string;
|
|
2434
2821
|
offset?: [number, number] | undefined;
|
|
2435
|
-
anchor?:
|
|
2822
|
+
anchor?: string | number | {
|
|
2436
2823
|
side: "north" | "south" | "east" | "west";
|
|
2437
2824
|
t: number;
|
|
2438
2825
|
} | undefined;
|
|
2826
|
+
boundary?: string | {
|
|
2827
|
+
type: string;
|
|
2828
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2829
|
+
} | undefined;
|
|
2439
2830
|
} | {
|
|
2440
2831
|
relative: [number, number];
|
|
2441
2832
|
} | {
|
|
2442
2833
|
relativeAccumulate: [number, number];
|
|
2443
2834
|
} | import('..').IRBetweenPosition;
|
|
2444
|
-
kind: "cubic";
|
|
2445
2835
|
control1: [number, number];
|
|
2446
2836
|
control2: [number, number];
|
|
2447
2837
|
label?: {
|
|
@@ -2462,7 +2852,7 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2462
2852
|
kind: z.ZodLiteral<"bend">;
|
|
2463
2853
|
to: z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
2464
2854
|
id: z.ZodString;
|
|
2465
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
2855
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
2466
2856
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
2467
2857
|
t: z.ZodNumber;
|
|
2468
2858
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2473,20 +2863,38 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2473
2863
|
t: number;
|
|
2474
2864
|
}>]>>;
|
|
2475
2865
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
2866
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
2867
|
+
type: z.ZodString;
|
|
2868
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
2869
|
+
}, "strip", z.ZodTypeAny, {
|
|
2870
|
+
type: string;
|
|
2871
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2872
|
+
}, {
|
|
2873
|
+
type: string;
|
|
2874
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2875
|
+
}>]>>;
|
|
2476
2876
|
}, "strip", z.ZodTypeAny, {
|
|
2477
2877
|
id: string;
|
|
2478
2878
|
offset?: [number, number] | undefined;
|
|
2479
|
-
anchor?:
|
|
2879
|
+
anchor?: string | number | {
|
|
2480
2880
|
side: "north" | "south" | "east" | "west";
|
|
2481
2881
|
t: number;
|
|
2482
2882
|
} | undefined;
|
|
2883
|
+
boundary?: string | {
|
|
2884
|
+
type: string;
|
|
2885
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2886
|
+
} | undefined;
|
|
2483
2887
|
}, {
|
|
2484
2888
|
id: string;
|
|
2485
2889
|
offset?: [number, number] | undefined;
|
|
2486
|
-
anchor?:
|
|
2890
|
+
anchor?: string | number | {
|
|
2487
2891
|
side: "north" | "south" | "east" | "west";
|
|
2488
2892
|
t: number;
|
|
2489
2893
|
} | undefined;
|
|
2894
|
+
boundary?: string | {
|
|
2895
|
+
type: string;
|
|
2896
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2897
|
+
} | undefined;
|
|
2490
2898
|
}>, z.ZodObject<{
|
|
2491
2899
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
2492
2900
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2563,22 +2971,26 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2563
2971
|
}>>;
|
|
2564
2972
|
}, "strip", z.ZodTypeAny, {
|
|
2565
2973
|
type: "step";
|
|
2974
|
+
kind: "bend";
|
|
2566
2975
|
to: [number, number] | import('..').PolarPosition | {
|
|
2567
2976
|
of: string | [number, number] | import('..').PolarPosition;
|
|
2568
2977
|
offset: [number, number];
|
|
2569
2978
|
} | {
|
|
2570
2979
|
id: string;
|
|
2571
2980
|
offset?: [number, number] | undefined;
|
|
2572
|
-
anchor?:
|
|
2981
|
+
anchor?: string | number | {
|
|
2573
2982
|
side: "north" | "south" | "east" | "west";
|
|
2574
2983
|
t: number;
|
|
2575
2984
|
} | undefined;
|
|
2985
|
+
boundary?: string | {
|
|
2986
|
+
type: string;
|
|
2987
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
2988
|
+
} | undefined;
|
|
2576
2989
|
} | {
|
|
2577
2990
|
relative: [number, number];
|
|
2578
2991
|
} | {
|
|
2579
2992
|
relativeAccumulate: [number, number];
|
|
2580
2993
|
} | import('..').IRBetweenPosition;
|
|
2581
|
-
kind: "bend";
|
|
2582
2994
|
label?: {
|
|
2583
2995
|
text: string;
|
|
2584
2996
|
side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
|
|
@@ -2599,22 +3011,26 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2599
3011
|
looseness?: number | undefined;
|
|
2600
3012
|
}, {
|
|
2601
3013
|
type: "step";
|
|
3014
|
+
kind: "bend";
|
|
2602
3015
|
to: [number, number] | import('..').PolarPosition | {
|
|
2603
3016
|
of: string | [number, number] | import('..').PolarPosition;
|
|
2604
3017
|
offset: [number, number];
|
|
2605
3018
|
} | {
|
|
2606
3019
|
id: string;
|
|
2607
3020
|
offset?: [number, number] | undefined;
|
|
2608
|
-
anchor?:
|
|
3021
|
+
anchor?: string | number | {
|
|
2609
3022
|
side: "north" | "south" | "east" | "west";
|
|
2610
3023
|
t: number;
|
|
2611
3024
|
} | undefined;
|
|
3025
|
+
boundary?: string | {
|
|
3026
|
+
type: string;
|
|
3027
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3028
|
+
} | undefined;
|
|
2612
3029
|
} | {
|
|
2613
3030
|
relative: [number, number];
|
|
2614
3031
|
} | {
|
|
2615
3032
|
relativeAccumulate: [number, number];
|
|
2616
3033
|
} | import('..').IRBetweenPosition;
|
|
2617
|
-
kind: "bend";
|
|
2618
3034
|
label?: {
|
|
2619
3035
|
text: string;
|
|
2620
3036
|
side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
|
|
@@ -2643,7 +3059,7 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2643
3059
|
radiusY: z.ZodOptional<z.ZodNumber>;
|
|
2644
3060
|
center: z.ZodOptional<z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
2645
3061
|
id: z.ZodString;
|
|
2646
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
3062
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
2647
3063
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
2648
3064
|
t: z.ZodNumber;
|
|
2649
3065
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2654,20 +3070,38 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2654
3070
|
t: number;
|
|
2655
3071
|
}>]>>;
|
|
2656
3072
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
3073
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
3074
|
+
type: z.ZodString;
|
|
3075
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
3076
|
+
}, "strip", z.ZodTypeAny, {
|
|
3077
|
+
type: string;
|
|
3078
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3079
|
+
}, {
|
|
3080
|
+
type: string;
|
|
3081
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3082
|
+
}>]>>;
|
|
2657
3083
|
}, "strip", z.ZodTypeAny, {
|
|
2658
3084
|
id: string;
|
|
2659
3085
|
offset?: [number, number] | undefined;
|
|
2660
|
-
anchor?:
|
|
3086
|
+
anchor?: string | number | {
|
|
2661
3087
|
side: "north" | "south" | "east" | "west";
|
|
2662
3088
|
t: number;
|
|
2663
3089
|
} | undefined;
|
|
3090
|
+
boundary?: string | {
|
|
3091
|
+
type: string;
|
|
3092
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3093
|
+
} | undefined;
|
|
2664
3094
|
}, {
|
|
2665
3095
|
id: string;
|
|
2666
3096
|
offset?: [number, number] | undefined;
|
|
2667
|
-
anchor?:
|
|
3097
|
+
anchor?: string | number | {
|
|
2668
3098
|
side: "north" | "south" | "east" | "west";
|
|
2669
3099
|
t: number;
|
|
2670
3100
|
} | undefined;
|
|
3101
|
+
boundary?: string | {
|
|
3102
|
+
type: string;
|
|
3103
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3104
|
+
} | undefined;
|
|
2671
3105
|
}>, z.ZodObject<{
|
|
2672
3106
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
2673
3107
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2739,9 +3173,9 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2739
3173
|
}>>;
|
|
2740
3174
|
}, "strip", z.ZodTypeAny, {
|
|
2741
3175
|
type: "step";
|
|
3176
|
+
kind: "arc";
|
|
2742
3177
|
startAngle: number;
|
|
2743
3178
|
endAngle: number;
|
|
2744
|
-
kind: "arc";
|
|
2745
3179
|
radius?: number | undefined;
|
|
2746
3180
|
center?: [number, number] | import('..').PolarPosition | {
|
|
2747
3181
|
of: string | [number, number] | import('..').PolarPosition;
|
|
@@ -2749,10 +3183,14 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2749
3183
|
} | {
|
|
2750
3184
|
id: string;
|
|
2751
3185
|
offset?: [number, number] | undefined;
|
|
2752
|
-
anchor?:
|
|
3186
|
+
anchor?: string | number | {
|
|
2753
3187
|
side: "north" | "south" | "east" | "west";
|
|
2754
3188
|
t: number;
|
|
2755
3189
|
} | undefined;
|
|
3190
|
+
boundary?: string | {
|
|
3191
|
+
type: string;
|
|
3192
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3193
|
+
} | undefined;
|
|
2756
3194
|
} | {
|
|
2757
3195
|
relative: [number, number];
|
|
2758
3196
|
} | {
|
|
@@ -2775,9 +3213,9 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2775
3213
|
radiusY?: number | undefined;
|
|
2776
3214
|
}, {
|
|
2777
3215
|
type: "step";
|
|
3216
|
+
kind: "arc";
|
|
2778
3217
|
startAngle: number;
|
|
2779
3218
|
endAngle: number;
|
|
2780
|
-
kind: "arc";
|
|
2781
3219
|
radius?: number | undefined;
|
|
2782
3220
|
center?: [number, number] | import('..').PolarPosition | {
|
|
2783
3221
|
of: string | [number, number] | import('..').PolarPosition;
|
|
@@ -2785,10 +3223,14 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2785
3223
|
} | {
|
|
2786
3224
|
id: string;
|
|
2787
3225
|
offset?: [number, number] | undefined;
|
|
2788
|
-
anchor?:
|
|
3226
|
+
anchor?: string | number | {
|
|
2789
3227
|
side: "north" | "south" | "east" | "west";
|
|
2790
3228
|
t: number;
|
|
2791
3229
|
} | undefined;
|
|
3230
|
+
boundary?: string | {
|
|
3231
|
+
type: string;
|
|
3232
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3233
|
+
} | undefined;
|
|
2792
3234
|
} | {
|
|
2793
3235
|
relative: [number, number];
|
|
2794
3236
|
} | {
|
|
@@ -2867,8 +3309,6 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2867
3309
|
type: "step";
|
|
2868
3310
|
radius: number;
|
|
2869
3311
|
kind: "circlePath";
|
|
2870
|
-
startAngle?: number | undefined;
|
|
2871
|
-
endAngle?: number | undefined;
|
|
2872
3312
|
label?: {
|
|
2873
3313
|
text: string;
|
|
2874
3314
|
side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
|
|
@@ -2882,13 +3322,13 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2882
3322
|
position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
|
|
2883
3323
|
textColor?: string | undefined;
|
|
2884
3324
|
} | undefined;
|
|
3325
|
+
startAngle?: number | undefined;
|
|
3326
|
+
endAngle?: number | undefined;
|
|
2885
3327
|
closed?: "open" | "closed" | "chord" | "sector" | undefined;
|
|
2886
3328
|
}, {
|
|
2887
3329
|
type: "step";
|
|
2888
3330
|
radius: number;
|
|
2889
3331
|
kind: "circlePath";
|
|
2890
|
-
startAngle?: number | undefined;
|
|
2891
|
-
endAngle?: number | undefined;
|
|
2892
3332
|
label?: {
|
|
2893
3333
|
text: string;
|
|
2894
3334
|
side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
|
|
@@ -2902,6 +3342,8 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2902
3342
|
position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
|
|
2903
3343
|
textColor?: string | undefined;
|
|
2904
3344
|
} | undefined;
|
|
3345
|
+
startAngle?: number | undefined;
|
|
3346
|
+
endAngle?: number | undefined;
|
|
2905
3347
|
closed?: "open" | "closed" | "chord" | "sector" | undefined;
|
|
2906
3348
|
}>, z.ZodObject<{
|
|
2907
3349
|
type: z.ZodLiteral<"step">;
|
|
@@ -2963,8 +3405,6 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2963
3405
|
kind: "ellipsePath";
|
|
2964
3406
|
radiusX: number;
|
|
2965
3407
|
radiusY: number;
|
|
2966
|
-
startAngle?: number | undefined;
|
|
2967
|
-
endAngle?: number | undefined;
|
|
2968
3408
|
label?: {
|
|
2969
3409
|
text: string;
|
|
2970
3410
|
side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
|
|
@@ -2978,14 +3418,14 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2978
3418
|
position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
|
|
2979
3419
|
textColor?: string | undefined;
|
|
2980
3420
|
} | undefined;
|
|
3421
|
+
startAngle?: number | undefined;
|
|
3422
|
+
endAngle?: number | undefined;
|
|
2981
3423
|
closed?: "open" | "closed" | "chord" | "sector" | undefined;
|
|
2982
3424
|
}, {
|
|
2983
3425
|
type: "step";
|
|
2984
3426
|
kind: "ellipsePath";
|
|
2985
3427
|
radiusX: number;
|
|
2986
3428
|
radiusY: number;
|
|
2987
|
-
startAngle?: number | undefined;
|
|
2988
|
-
endAngle?: number | undefined;
|
|
2989
3429
|
label?: {
|
|
2990
3430
|
text: string;
|
|
2991
3431
|
side?: "above" | "below" | "left" | "right" | "sloped" | undefined;
|
|
@@ -2999,13 +3439,15 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
2999
3439
|
position?: number | "at-start" | "very-near-start" | "near-start" | "midway" | "near-end" | "very-near-end" | "at-end" | undefined;
|
|
3000
3440
|
textColor?: string | undefined;
|
|
3001
3441
|
} | undefined;
|
|
3442
|
+
startAngle?: number | undefined;
|
|
3443
|
+
endAngle?: number | undefined;
|
|
3002
3444
|
closed?: "open" | "closed" | "chord" | "sector" | undefined;
|
|
3003
3445
|
}>, z.ZodObject<{
|
|
3004
3446
|
type: z.ZodLiteral<"step">;
|
|
3005
3447
|
kind: z.ZodLiteral<"rectangle">;
|
|
3006
3448
|
from: z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
3007
3449
|
id: z.ZodString;
|
|
3008
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
3450
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
3009
3451
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
3010
3452
|
t: z.ZodNumber;
|
|
3011
3453
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3016,20 +3458,38 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
3016
3458
|
t: number;
|
|
3017
3459
|
}>]>>;
|
|
3018
3460
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
3461
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
3462
|
+
type: z.ZodString;
|
|
3463
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
3464
|
+
}, "strip", z.ZodTypeAny, {
|
|
3465
|
+
type: string;
|
|
3466
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3467
|
+
}, {
|
|
3468
|
+
type: string;
|
|
3469
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3470
|
+
}>]>>;
|
|
3019
3471
|
}, "strip", z.ZodTypeAny, {
|
|
3020
3472
|
id: string;
|
|
3021
3473
|
offset?: [number, number] | undefined;
|
|
3022
|
-
anchor?:
|
|
3474
|
+
anchor?: string | number | {
|
|
3023
3475
|
side: "north" | "south" | "east" | "west";
|
|
3024
3476
|
t: number;
|
|
3025
3477
|
} | undefined;
|
|
3478
|
+
boundary?: string | {
|
|
3479
|
+
type: string;
|
|
3480
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3481
|
+
} | undefined;
|
|
3026
3482
|
}, {
|
|
3027
3483
|
id: string;
|
|
3028
3484
|
offset?: [number, number] | undefined;
|
|
3029
|
-
anchor?:
|
|
3485
|
+
anchor?: string | number | {
|
|
3030
3486
|
side: "north" | "south" | "east" | "west";
|
|
3031
3487
|
t: number;
|
|
3032
3488
|
} | undefined;
|
|
3489
|
+
boundary?: string | {
|
|
3490
|
+
type: string;
|
|
3491
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3492
|
+
} | undefined;
|
|
3033
3493
|
}>, z.ZodObject<{
|
|
3034
3494
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
3035
3495
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3054,7 +3514,7 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
3054
3514
|
}>, z.ZodLazy<z.ZodType<import('..').IRBetweenPosition, z.ZodTypeDef, import('..').IRBetweenPosition>>]>;
|
|
3055
3515
|
to: z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
3056
3516
|
id: z.ZodString;
|
|
3057
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
3517
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
3058
3518
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
3059
3519
|
t: z.ZodNumber;
|
|
3060
3520
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3065,20 +3525,38 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
3065
3525
|
t: number;
|
|
3066
3526
|
}>]>>;
|
|
3067
3527
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
3528
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
3529
|
+
type: z.ZodString;
|
|
3530
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
3531
|
+
}, "strip", z.ZodTypeAny, {
|
|
3532
|
+
type: string;
|
|
3533
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3534
|
+
}, {
|
|
3535
|
+
type: string;
|
|
3536
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3537
|
+
}>]>>;
|
|
3068
3538
|
}, "strip", z.ZodTypeAny, {
|
|
3069
3539
|
id: string;
|
|
3070
3540
|
offset?: [number, number] | undefined;
|
|
3071
|
-
anchor?:
|
|
3541
|
+
anchor?: string | number | {
|
|
3072
3542
|
side: "north" | "south" | "east" | "west";
|
|
3073
3543
|
t: number;
|
|
3074
3544
|
} | undefined;
|
|
3545
|
+
boundary?: string | {
|
|
3546
|
+
type: string;
|
|
3547
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3548
|
+
} | undefined;
|
|
3075
3549
|
}, {
|
|
3076
3550
|
id: string;
|
|
3077
3551
|
offset?: [number, number] | undefined;
|
|
3078
|
-
anchor?:
|
|
3552
|
+
anchor?: string | number | {
|
|
3079
3553
|
side: "north" | "south" | "east" | "west";
|
|
3080
3554
|
t: number;
|
|
3081
3555
|
} | undefined;
|
|
3556
|
+
boundary?: string | {
|
|
3557
|
+
type: string;
|
|
3558
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3559
|
+
} | undefined;
|
|
3082
3560
|
}>, z.ZodObject<{
|
|
3083
3561
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
3084
3562
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3101,82 +3579,98 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
3101
3579
|
of: string | [number, number] | import('..').PolarPosition;
|
|
3102
3580
|
offset: [number, number];
|
|
3103
3581
|
}>, z.ZodLazy<z.ZodType<import('..').IRBetweenPosition, z.ZodTypeDef, import('..').IRBetweenPosition>>]>;
|
|
3104
|
-
|
|
3582
|
+
cornerRadius: z.ZodOptional<z.ZodNumber>;
|
|
3105
3583
|
}, "strip", z.ZodTypeAny, {
|
|
3106
3584
|
type: "step";
|
|
3585
|
+
kind: "rectangle";
|
|
3107
3586
|
to: [number, number] | import('..').PolarPosition | {
|
|
3108
3587
|
of: string | [number, number] | import('..').PolarPosition;
|
|
3109
3588
|
offset: [number, number];
|
|
3110
3589
|
} | {
|
|
3111
3590
|
id: string;
|
|
3112
3591
|
offset?: [number, number] | undefined;
|
|
3113
|
-
anchor?:
|
|
3592
|
+
anchor?: string | number | {
|
|
3114
3593
|
side: "north" | "south" | "east" | "west";
|
|
3115
3594
|
t: number;
|
|
3116
3595
|
} | undefined;
|
|
3596
|
+
boundary?: string | {
|
|
3597
|
+
type: string;
|
|
3598
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3599
|
+
} | undefined;
|
|
3117
3600
|
} | {
|
|
3118
3601
|
relative: [number, number];
|
|
3119
3602
|
} | {
|
|
3120
3603
|
relativeAccumulate: [number, number];
|
|
3121
3604
|
} | import('..').IRBetweenPosition;
|
|
3122
|
-
kind: "rectangle";
|
|
3123
3605
|
from: [number, number] | import('..').PolarPosition | {
|
|
3124
3606
|
of: string | [number, number] | import('..').PolarPosition;
|
|
3125
3607
|
offset: [number, number];
|
|
3126
3608
|
} | {
|
|
3127
3609
|
id: string;
|
|
3128
3610
|
offset?: [number, number] | undefined;
|
|
3129
|
-
anchor?:
|
|
3611
|
+
anchor?: string | number | {
|
|
3130
3612
|
side: "north" | "south" | "east" | "west";
|
|
3131
3613
|
t: number;
|
|
3132
3614
|
} | undefined;
|
|
3615
|
+
boundary?: string | {
|
|
3616
|
+
type: string;
|
|
3617
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3618
|
+
} | undefined;
|
|
3133
3619
|
} | {
|
|
3134
3620
|
relative: [number, number];
|
|
3135
3621
|
} | {
|
|
3136
3622
|
relativeAccumulate: [number, number];
|
|
3137
3623
|
} | import('..').IRBetweenPosition;
|
|
3138
|
-
|
|
3624
|
+
cornerRadius?: number | undefined;
|
|
3139
3625
|
}, {
|
|
3140
3626
|
type: "step";
|
|
3627
|
+
kind: "rectangle";
|
|
3141
3628
|
to: [number, number] | import('..').PolarPosition | {
|
|
3142
3629
|
of: string | [number, number] | import('..').PolarPosition;
|
|
3143
3630
|
offset: [number, number];
|
|
3144
3631
|
} | {
|
|
3145
3632
|
id: string;
|
|
3146
3633
|
offset?: [number, number] | undefined;
|
|
3147
|
-
anchor?:
|
|
3634
|
+
anchor?: string | number | {
|
|
3148
3635
|
side: "north" | "south" | "east" | "west";
|
|
3149
3636
|
t: number;
|
|
3150
3637
|
} | undefined;
|
|
3638
|
+
boundary?: string | {
|
|
3639
|
+
type: string;
|
|
3640
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3641
|
+
} | undefined;
|
|
3151
3642
|
} | {
|
|
3152
3643
|
relative: [number, number];
|
|
3153
3644
|
} | {
|
|
3154
3645
|
relativeAccumulate: [number, number];
|
|
3155
3646
|
} | import('..').IRBetweenPosition;
|
|
3156
|
-
kind: "rectangle";
|
|
3157
3647
|
from: [number, number] | import('..').PolarPosition | {
|
|
3158
3648
|
of: string | [number, number] | import('..').PolarPosition;
|
|
3159
3649
|
offset: [number, number];
|
|
3160
3650
|
} | {
|
|
3161
3651
|
id: string;
|
|
3162
3652
|
offset?: [number, number] | undefined;
|
|
3163
|
-
anchor?:
|
|
3653
|
+
anchor?: string | number | {
|
|
3164
3654
|
side: "north" | "south" | "east" | "west";
|
|
3165
3655
|
t: number;
|
|
3166
3656
|
} | undefined;
|
|
3657
|
+
boundary?: string | {
|
|
3658
|
+
type: string;
|
|
3659
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3660
|
+
} | undefined;
|
|
3167
3661
|
} | {
|
|
3168
3662
|
relative: [number, number];
|
|
3169
3663
|
} | {
|
|
3170
3664
|
relativeAccumulate: [number, number];
|
|
3171
3665
|
} | import('..').IRBetweenPosition;
|
|
3172
|
-
|
|
3666
|
+
cornerRadius?: number | undefined;
|
|
3173
3667
|
}>, z.ZodObject<{
|
|
3174
3668
|
type: z.ZodLiteral<"step">;
|
|
3175
3669
|
kind: z.ZodLiteral<"generator">;
|
|
3176
3670
|
name: z.ZodString;
|
|
3177
3671
|
to: z.ZodOptional<z.ZodUnion<[z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>, z.ZodType<import('..').PolarPosition, z.ZodTypeDef, import('..').PolarPosition>, z.ZodObject<{
|
|
3178
3672
|
id: z.ZodString;
|
|
3179
|
-
anchor: z.ZodOptional<z.ZodUnion<[z.
|
|
3673
|
+
anchor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
3180
3674
|
side: z.ZodEnum<["north", "south", "east", "west"]>;
|
|
3181
3675
|
t: z.ZodNumber;
|
|
3182
3676
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3187,20 +3681,38 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
3187
3681
|
t: number;
|
|
3188
3682
|
}>]>>;
|
|
3189
3683
|
offset: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
|
|
3684
|
+
boundary: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
3685
|
+
type: z.ZodString;
|
|
3686
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import('..').JsonValue, z.ZodTypeDef, import('..').JsonValue>>>;
|
|
3687
|
+
}, "strip", z.ZodTypeAny, {
|
|
3688
|
+
type: string;
|
|
3689
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3690
|
+
}, {
|
|
3691
|
+
type: string;
|
|
3692
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3693
|
+
}>]>>;
|
|
3190
3694
|
}, "strip", z.ZodTypeAny, {
|
|
3191
3695
|
id: string;
|
|
3192
3696
|
offset?: [number, number] | undefined;
|
|
3193
|
-
anchor?:
|
|
3697
|
+
anchor?: string | number | {
|
|
3194
3698
|
side: "north" | "south" | "east" | "west";
|
|
3195
3699
|
t: number;
|
|
3196
3700
|
} | undefined;
|
|
3701
|
+
boundary?: string | {
|
|
3702
|
+
type: string;
|
|
3703
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3704
|
+
} | undefined;
|
|
3197
3705
|
}, {
|
|
3198
3706
|
id: string;
|
|
3199
3707
|
offset?: [number, number] | undefined;
|
|
3200
|
-
anchor?:
|
|
3708
|
+
anchor?: string | number | {
|
|
3201
3709
|
side: "north" | "south" | "east" | "west";
|
|
3202
3710
|
t: number;
|
|
3203
3711
|
} | undefined;
|
|
3712
|
+
boundary?: string | {
|
|
3713
|
+
type: string;
|
|
3714
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3715
|
+
} | undefined;
|
|
3204
3716
|
}>, z.ZodObject<{
|
|
3205
3717
|
relative: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
3206
3718
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3282,10 +3794,14 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
3282
3794
|
} | {
|
|
3283
3795
|
id: string;
|
|
3284
3796
|
offset?: [number, number] | undefined;
|
|
3285
|
-
anchor?:
|
|
3797
|
+
anchor?: string | number | {
|
|
3286
3798
|
side: "north" | "south" | "east" | "west";
|
|
3287
3799
|
t: number;
|
|
3288
3800
|
} | undefined;
|
|
3801
|
+
boundary?: string | {
|
|
3802
|
+
type: string;
|
|
3803
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3804
|
+
} | undefined;
|
|
3289
3805
|
} | {
|
|
3290
3806
|
relative: [number, number];
|
|
3291
3807
|
} | {
|
|
@@ -3315,10 +3831,14 @@ export declare const StepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
|
3315
3831
|
} | {
|
|
3316
3832
|
id: string;
|
|
3317
3833
|
offset?: [number, number] | undefined;
|
|
3318
|
-
anchor?:
|
|
3834
|
+
anchor?: string | number | {
|
|
3319
3835
|
side: "north" | "south" | "east" | "west";
|
|
3320
3836
|
t: number;
|
|
3321
3837
|
} | undefined;
|
|
3838
|
+
boundary?: string | {
|
|
3839
|
+
type: string;
|
|
3840
|
+
params?: Record<string, import('..').JsonValue> | undefined;
|
|
3841
|
+
} | undefined;
|
|
3322
3842
|
} | {
|
|
3323
3843
|
relative: [number, number];
|
|
3324
3844
|
} | {
|