@retikz/core 0.2.0-alpha.3 → 0.2.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/dist/es/compile/compile.d.ts.map +1 -1
- package/dist/es/compile/compile.js +74 -12
- package/dist/es/compile/node.d.ts +4 -0
- package/dist/es/compile/node.d.ts.map +1 -1
- package/dist/es/compile/node.js +83 -32
- package/dist/es/ir/node.d.ts +31 -2
- package/dist/es/ir/node.d.ts.map +1 -1
- package/dist/es/ir/node.js +9 -2
- package/dist/es/ir/path/path.d.ts +3 -0
- package/dist/es/ir/path/path.d.ts.map +1 -1
- package/dist/es/ir/path/path.js +1 -0
- package/dist/es/ir/scope.d.ts +36 -4
- package/dist/es/ir/scope.d.ts.map +1 -1
- package/dist/es/ir/scope.js +5 -2
- package/dist/lib/compile/compile.cjs +74 -12
- package/dist/lib/compile/compile.d.ts.map +1 -1
- package/dist/lib/compile/node.cjs +83 -32
- package/dist/lib/compile/node.d.ts +4 -0
- package/dist/lib/compile/node.d.ts.map +1 -1
- package/dist/lib/ir/node.cjs +9 -2
- package/dist/lib/ir/node.d.ts +31 -2
- package/dist/lib/ir/node.d.ts.map +1 -1
- package/dist/lib/ir/path/path.cjs +1 -0
- package/dist/lib/ir/path/path.d.ts +3 -0
- package/dist/lib/ir/path/path.d.ts.map +1 -1
- package/dist/lib/ir/scope.cjs +5 -2
- package/dist/lib/ir/scope.d.ts +36 -4
- package/dist/lib/ir/scope.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/lib/ir/node.d.ts
CHANGED
|
@@ -63,6 +63,8 @@ export declare const NodeLabelSchema: z.ZodObject<{
|
|
|
63
63
|
weight?: number | "normal" | "bold" | undefined;
|
|
64
64
|
style?: "normal" | "italic" | "oblique" | undefined;
|
|
65
65
|
}>>;
|
|
66
|
+
rotate: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["none", "radial", "tangent"]>, z.ZodNumber]>>;
|
|
67
|
+
keepUpright: z.ZodOptional<z.ZodBoolean>;
|
|
66
68
|
}, "strip", z.ZodTypeAny, {
|
|
67
69
|
text: string;
|
|
68
70
|
distance?: number | undefined;
|
|
@@ -75,6 +77,8 @@ export declare const NodeLabelSchema: z.ZodObject<{
|
|
|
75
77
|
} | undefined;
|
|
76
78
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
77
79
|
textColor?: string | undefined;
|
|
80
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
81
|
+
keepUpright?: boolean | undefined;
|
|
78
82
|
}, {
|
|
79
83
|
text: string;
|
|
80
84
|
distance?: number | undefined;
|
|
@@ -87,6 +91,8 @@ export declare const NodeLabelSchema: z.ZodObject<{
|
|
|
87
91
|
} | undefined;
|
|
88
92
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
89
93
|
textColor?: string | undefined;
|
|
94
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
95
|
+
keepUpright?: boolean | undefined;
|
|
90
96
|
}>;
|
|
91
97
|
/** Node label IR 类型 */
|
|
92
98
|
export type IRNodeLabel = z.infer<typeof NodeLabelSchema>;
|
|
@@ -243,6 +249,8 @@ export declare const NodeSchema: z.ZodObject<{
|
|
|
243
249
|
weight?: number | "normal" | "bold" | undefined;
|
|
244
250
|
style?: "normal" | "italic" | "oblique" | undefined;
|
|
245
251
|
}>>;
|
|
252
|
+
rotate: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["none", "radial", "tangent"]>, z.ZodNumber]>>;
|
|
253
|
+
keepUpright: z.ZodOptional<z.ZodBoolean>;
|
|
246
254
|
}, "strip", z.ZodTypeAny, {
|
|
247
255
|
text: string;
|
|
248
256
|
distance?: number | undefined;
|
|
@@ -255,6 +263,8 @@ export declare const NodeSchema: z.ZodObject<{
|
|
|
255
263
|
} | undefined;
|
|
256
264
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
257
265
|
textColor?: string | undefined;
|
|
266
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
267
|
+
keepUpright?: boolean | undefined;
|
|
258
268
|
}, {
|
|
259
269
|
text: string;
|
|
260
270
|
distance?: number | undefined;
|
|
@@ -267,6 +277,8 @@ export declare const NodeSchema: z.ZodObject<{
|
|
|
267
277
|
} | undefined;
|
|
268
278
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
269
279
|
textColor?: string | undefined;
|
|
280
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
281
|
+
keepUpright?: boolean | undefined;
|
|
270
282
|
}>, z.ZodArray<z.ZodObject<{
|
|
271
283
|
text: z.ZodString;
|
|
272
284
|
position: z.ZodOptional<z.ZodUnion<[z.ZodNativeEnum<{
|
|
@@ -298,6 +310,8 @@ export declare const NodeSchema: z.ZodObject<{
|
|
|
298
310
|
weight?: number | "normal" | "bold" | undefined;
|
|
299
311
|
style?: "normal" | "italic" | "oblique" | undefined;
|
|
300
312
|
}>>;
|
|
313
|
+
rotate: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["none", "radial", "tangent"]>, z.ZodNumber]>>;
|
|
314
|
+
keepUpright: z.ZodOptional<z.ZodBoolean>;
|
|
301
315
|
}, "strip", z.ZodTypeAny, {
|
|
302
316
|
text: string;
|
|
303
317
|
distance?: number | undefined;
|
|
@@ -310,6 +324,8 @@ export declare const NodeSchema: z.ZodObject<{
|
|
|
310
324
|
} | undefined;
|
|
311
325
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
312
326
|
textColor?: string | undefined;
|
|
327
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
328
|
+
keepUpright?: boolean | undefined;
|
|
313
329
|
}, {
|
|
314
330
|
text: string;
|
|
315
331
|
distance?: number | undefined;
|
|
@@ -322,7 +338,10 @@ export declare const NodeSchema: z.ZodObject<{
|
|
|
322
338
|
} | undefined;
|
|
323
339
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
324
340
|
textColor?: string | undefined;
|
|
341
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
342
|
+
keepUpright?: boolean | undefined;
|
|
325
343
|
}>, "many">]>>;
|
|
344
|
+
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
326
345
|
}, "strip", z.ZodTypeAny, {
|
|
327
346
|
type: "node";
|
|
328
347
|
position: [number, number] | import('./position').PolarPosition | {
|
|
@@ -368,6 +387,8 @@ export declare const NodeSchema: z.ZodObject<{
|
|
|
368
387
|
} | undefined;
|
|
369
388
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
370
389
|
textColor?: string | undefined;
|
|
390
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
391
|
+
keepUpright?: boolean | undefined;
|
|
371
392
|
} | {
|
|
372
393
|
text: string;
|
|
373
394
|
distance?: number | undefined;
|
|
@@ -380,13 +401,16 @@ export declare const NodeSchema: z.ZodObject<{
|
|
|
380
401
|
} | undefined;
|
|
381
402
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
382
403
|
textColor?: string | undefined;
|
|
404
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
405
|
+
keepUpright?: boolean | undefined;
|
|
383
406
|
}[] | undefined;
|
|
384
407
|
stroke?: string | undefined;
|
|
385
408
|
strokeWidth?: number | undefined;
|
|
386
409
|
fillOpacity?: number | undefined;
|
|
387
410
|
drawOpacity?: number | undefined;
|
|
388
|
-
|
|
411
|
+
zIndex?: number | undefined;
|
|
389
412
|
rotate?: number | undefined;
|
|
413
|
+
id?: string | undefined;
|
|
390
414
|
align?: "left" | "right" | "center" | undefined;
|
|
391
415
|
lineHeight?: number | undefined;
|
|
392
416
|
dashed?: boolean | undefined;
|
|
@@ -448,6 +472,8 @@ export declare const NodeSchema: z.ZodObject<{
|
|
|
448
472
|
} | undefined;
|
|
449
473
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
450
474
|
textColor?: string | undefined;
|
|
475
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
476
|
+
keepUpright?: boolean | undefined;
|
|
451
477
|
} | {
|
|
452
478
|
text: string;
|
|
453
479
|
distance?: number | undefined;
|
|
@@ -460,13 +486,16 @@ export declare const NodeSchema: z.ZodObject<{
|
|
|
460
486
|
} | undefined;
|
|
461
487
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
462
488
|
textColor?: string | undefined;
|
|
489
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
490
|
+
keepUpright?: boolean | undefined;
|
|
463
491
|
}[] | undefined;
|
|
464
492
|
stroke?: string | undefined;
|
|
465
493
|
strokeWidth?: number | undefined;
|
|
466
494
|
fillOpacity?: number | undefined;
|
|
467
495
|
drawOpacity?: number | undefined;
|
|
468
|
-
|
|
496
|
+
zIndex?: number | undefined;
|
|
469
497
|
rotate?: number | undefined;
|
|
498
|
+
id?: string | undefined;
|
|
470
499
|
align?: "left" | "right" | "center" | undefined;
|
|
471
500
|
lineHeight?: number | undefined;
|
|
472
501
|
dashed?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../../../src/ir/node.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAKxC;;;GAGG;AACH,eAAO,MAAM,WAAW;;;;;CAKd,CAAC;AAEX;;;GAGG;AACH,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC;AAE3D;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG,gBAAgB,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC;AAEzD,+BAA+B;AAC/B,eAAO,MAAM,gBAAgB;;;;CAInB,CAAC;AAEX,MAAM,MAAM,aAAa,GAAG,OAAO,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE7D;;;GAGG;AACH,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../../../src/ir/node.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAKxC;;;GAGG;AACH,eAAO,MAAM,WAAW;;;;;CAKd,CAAC;AAEX;;;GAGG;AACH,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC;AAE3D;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG,gBAAgB,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC;AAEzD,+BAA+B;AAC/B,eAAO,MAAM,gBAAgB;;;;CAInB,CAAC;AAEX,MAAM,MAAM,aAAa,GAAG,OAAO,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE7D;;;GAGG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8CzB,CAAC;AAEJ,uBAAuB;AACvB,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE1D,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+LpB,CAAC;AAEJ,sCAAsC;AACtC,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC"}
|
|
@@ -39,6 +39,7 @@ var PathSchema = zod.z.object({
|
|
|
39
39
|
opacity: zod.z.number().min(0).max(1).optional().describe("Whole-path opacity 0..1; multiplies onto stroke and fill."),
|
|
40
40
|
fillOpacity: zod.z.number().min(0).max(1).optional().describe("Fill opacity 0..1; affects only the closed-region fill."),
|
|
41
41
|
drawOpacity: zod.z.number().min(0).max(1).optional().describe("Stroke opacity 0..1 (TikZ `draw opacity`); affects only the path stroke."),
|
|
42
|
+
zIndex: zod.z.number().int().finite().optional().describe("Explicit stacking order among sibling IR children. Higher draws on top. Omitted = 0 = source order. Sorting is stable: same zIndex keeps source order. Scoped per group (a path inside a scope only restacks within that scope)."),
|
|
42
43
|
children: zod.z.array(require_step.StepSchema).min(2).describe("Sequence of step actions defining the path; the first should usually be a `move`")
|
|
43
44
|
}).describe("A drawn path composed of a sequence of step actions (move / line / ...)");
|
|
44
45
|
//#endregion
|
|
@@ -163,6 +163,7 @@ export declare const PathSchema: z.ZodObject<{
|
|
|
163
163
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
164
164
|
fillOpacity: z.ZodOptional<z.ZodNumber>;
|
|
165
165
|
drawOpacity: z.ZodOptional<z.ZodNumber>;
|
|
166
|
+
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
166
167
|
children: z.ZodArray<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
167
168
|
type: z.ZodLiteral<"step">;
|
|
168
169
|
kind: z.ZodLiteral<"move">;
|
|
@@ -1342,6 +1343,7 @@ export declare const PathSchema: z.ZodObject<{
|
|
|
1342
1343
|
thickness?: "ultraThin" | "veryThin" | "thin" | "semithick" | "thick" | "veryThick" | "ultraThick" | undefined;
|
|
1343
1344
|
fillOpacity?: number | undefined;
|
|
1344
1345
|
drawOpacity?: number | undefined;
|
|
1346
|
+
zIndex?: number | undefined;
|
|
1345
1347
|
}, {
|
|
1346
1348
|
type: "path";
|
|
1347
1349
|
children: ({
|
|
@@ -1582,6 +1584,7 @@ export declare const PathSchema: z.ZodObject<{
|
|
|
1582
1584
|
thickness?: "ultraThin" | "veryThin" | "thin" | "semithick" | "thick" | "veryThick" | "ultraThick" | undefined;
|
|
1583
1585
|
fillOpacity?: number | undefined;
|
|
1584
1586
|
drawOpacity?: number | undefined;
|
|
1587
|
+
zIndex?: number | undefined;
|
|
1585
1588
|
}>;
|
|
1586
1589
|
/** 路径:由若干 step 动作(move/line/...)组成 */
|
|
1587
1590
|
export type IRPath = z.infer<typeof PathSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"path.d.ts","sourceRoot":"","sources":["../../../../src/ir/path/path.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"path.d.ts","sourceRoot":"","sources":["../../../../src/ir/path/path.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgHpB,CAAC;AAEJ,sCAAsC;AACtC,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC"}
|
package/dist/lib/ir/scope.cjs
CHANGED
|
@@ -15,7 +15,8 @@ var NodeDefaultSchema = require_node.NodeSchema.omit({
|
|
|
15
15
|
id: true,
|
|
16
16
|
position: true,
|
|
17
17
|
text: true,
|
|
18
|
-
label: true
|
|
18
|
+
label: true,
|
|
19
|
+
zIndex: true
|
|
19
20
|
}).strict();
|
|
20
21
|
/**
|
|
21
22
|
* every path 默认样式 schema
|
|
@@ -25,7 +26,8 @@ var PathDefaultSchema = require_path.PathSchema.omit({
|
|
|
25
26
|
type: true,
|
|
26
27
|
children: true,
|
|
27
28
|
arrow: true,
|
|
28
|
-
arrowDetail: true
|
|
29
|
+
arrowDetail: true,
|
|
30
|
+
zIndex: true
|
|
29
31
|
}).strict();
|
|
30
32
|
/**
|
|
31
33
|
* every label 默认样式 schema(node label 与 step label 共享)
|
|
@@ -80,6 +82,7 @@ var ScopeSchema = zod.z.object({
|
|
|
80
82
|
"label",
|
|
81
83
|
"arrow"
|
|
82
84
|
]))]).optional().describe("Inheritance barrier: drop the outer scope cascade + every-X defaults for the listed channels (or all when true), falling back to the built-in baseline. Only cuts the scope-inheritance axis; labels / arrows still follow their host path / node resolved color (structural relation, not scope inheritance)."),
|
|
85
|
+
zIndex: zod.z.number().int().finite().optional().describe("Explicit stacking order of this scope as a whole among its sibling IR children. Higher draws on top. Applies to the scope group as a single unit in the parent; does NOT affect how children stack inside the scope. Omitted = 0 = source order."),
|
|
83
86
|
children: zod.z.array(zod.z.lazy(() => {
|
|
84
87
|
if (!childSchemaRef) throw new Error("ScopeSchema: ChildSchema not registered yet; ensure scene.ts loaded");
|
|
85
88
|
return childSchemaRef;
|
package/dist/lib/ir/scope.d.ts
CHANGED
|
@@ -161,6 +161,8 @@ export declare const NodeDefaultSchema: z.ZodObject<Omit<{
|
|
|
161
161
|
weight?: number | "normal" | "bold" | undefined;
|
|
162
162
|
style?: "normal" | "italic" | "oblique" | undefined;
|
|
163
163
|
}>>;
|
|
164
|
+
rotate: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["none", "radial", "tangent"]>, z.ZodNumber]>>;
|
|
165
|
+
keepUpright: z.ZodOptional<z.ZodBoolean>;
|
|
164
166
|
}, "strip", z.ZodTypeAny, {
|
|
165
167
|
text: string;
|
|
166
168
|
distance?: number | undefined;
|
|
@@ -173,6 +175,8 @@ export declare const NodeDefaultSchema: z.ZodObject<Omit<{
|
|
|
173
175
|
} | undefined;
|
|
174
176
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
175
177
|
textColor?: string | undefined;
|
|
178
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
179
|
+
keepUpright?: boolean | undefined;
|
|
176
180
|
}, {
|
|
177
181
|
text: string;
|
|
178
182
|
distance?: number | undefined;
|
|
@@ -185,6 +189,8 @@ export declare const NodeDefaultSchema: z.ZodObject<Omit<{
|
|
|
185
189
|
} | undefined;
|
|
186
190
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
187
191
|
textColor?: string | undefined;
|
|
192
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
193
|
+
keepUpright?: boolean | undefined;
|
|
188
194
|
}>, z.ZodArray<z.ZodObject<{
|
|
189
195
|
text: z.ZodString;
|
|
190
196
|
position: z.ZodOptional<z.ZodUnion<[z.ZodNativeEnum<{
|
|
@@ -216,6 +222,8 @@ export declare const NodeDefaultSchema: z.ZodObject<Omit<{
|
|
|
216
222
|
weight?: number | "normal" | "bold" | undefined;
|
|
217
223
|
style?: "normal" | "italic" | "oblique" | undefined;
|
|
218
224
|
}>>;
|
|
225
|
+
rotate: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["none", "radial", "tangent"]>, z.ZodNumber]>>;
|
|
226
|
+
keepUpright: z.ZodOptional<z.ZodBoolean>;
|
|
219
227
|
}, "strip", z.ZodTypeAny, {
|
|
220
228
|
text: string;
|
|
221
229
|
distance?: number | undefined;
|
|
@@ -228,6 +236,8 @@ export declare const NodeDefaultSchema: z.ZodObject<Omit<{
|
|
|
228
236
|
} | undefined;
|
|
229
237
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
230
238
|
textColor?: string | undefined;
|
|
239
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
240
|
+
keepUpright?: boolean | undefined;
|
|
231
241
|
}, {
|
|
232
242
|
text: string;
|
|
233
243
|
distance?: number | undefined;
|
|
@@ -240,8 +250,11 @@ export declare const NodeDefaultSchema: z.ZodObject<Omit<{
|
|
|
240
250
|
} | undefined;
|
|
241
251
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
242
252
|
textColor?: string | undefined;
|
|
253
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
254
|
+
keepUpright?: boolean | undefined;
|
|
243
255
|
}>, "many">]>>;
|
|
244
|
-
|
|
256
|
+
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
257
|
+
}, "type" | "text" | "position" | "label" | "zIndex" | "id">, "strict", z.ZodTypeAny, {
|
|
245
258
|
fill?: string | undefined;
|
|
246
259
|
opacity?: number | undefined;
|
|
247
260
|
font?: {
|
|
@@ -478,6 +491,7 @@ export declare const PathDefaultSchema: z.ZodObject<Omit<{
|
|
|
478
491
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
479
492
|
fillOpacity: z.ZodOptional<z.ZodNumber>;
|
|
480
493
|
drawOpacity: z.ZodOptional<z.ZodNumber>;
|
|
494
|
+
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
481
495
|
children: z.ZodArray<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
482
496
|
type: z.ZodLiteral<"step">;
|
|
483
497
|
kind: z.ZodLiteral<"move">;
|
|
@@ -1417,7 +1431,7 @@ export declare const PathDefaultSchema: z.ZodObject<Omit<{
|
|
|
1417
1431
|
textColor?: string | undefined;
|
|
1418
1432
|
} | undefined;
|
|
1419
1433
|
}>]>, "many">;
|
|
1420
|
-
}, "type" | "arrow" | "arrowDetail" | "children">, "strict", z.ZodTypeAny, {
|
|
1434
|
+
}, "type" | "arrow" | "arrowDetail" | "zIndex" | "children">, "strict", z.ZodTypeAny, {
|
|
1421
1435
|
fill?: string | undefined;
|
|
1422
1436
|
opacity?: number | undefined;
|
|
1423
1437
|
color?: string | undefined;
|
|
@@ -1674,6 +1688,7 @@ export type IRScope = {
|
|
|
1674
1688
|
labelDefault?: IRLabelDefault;
|
|
1675
1689
|
arrowDefault?: IRArrowDefault;
|
|
1676
1690
|
resetStyle?: boolean | Array<StyleChannel>;
|
|
1691
|
+
zIndex?: number;
|
|
1677
1692
|
children: Array<IRNode | IRPath | IRCoordinate | IRScope>;
|
|
1678
1693
|
};
|
|
1679
1694
|
/**
|
|
@@ -1943,6 +1958,8 @@ export declare const ScopeSchema: z.ZodObject<{
|
|
|
1943
1958
|
weight?: number | "normal" | "bold" | undefined;
|
|
1944
1959
|
style?: "normal" | "italic" | "oblique" | undefined;
|
|
1945
1960
|
}>>;
|
|
1961
|
+
rotate: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["none", "radial", "tangent"]>, z.ZodNumber]>>;
|
|
1962
|
+
keepUpright: z.ZodOptional<z.ZodBoolean>;
|
|
1946
1963
|
}, "strip", z.ZodTypeAny, {
|
|
1947
1964
|
text: string;
|
|
1948
1965
|
distance?: number | undefined;
|
|
@@ -1955,6 +1972,8 @@ export declare const ScopeSchema: z.ZodObject<{
|
|
|
1955
1972
|
} | undefined;
|
|
1956
1973
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
1957
1974
|
textColor?: string | undefined;
|
|
1975
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
1976
|
+
keepUpright?: boolean | undefined;
|
|
1958
1977
|
}, {
|
|
1959
1978
|
text: string;
|
|
1960
1979
|
distance?: number | undefined;
|
|
@@ -1967,6 +1986,8 @@ export declare const ScopeSchema: z.ZodObject<{
|
|
|
1967
1986
|
} | undefined;
|
|
1968
1987
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
1969
1988
|
textColor?: string | undefined;
|
|
1989
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
1990
|
+
keepUpright?: boolean | undefined;
|
|
1970
1991
|
}>, z.ZodArray<z.ZodObject<{
|
|
1971
1992
|
text: z.ZodString;
|
|
1972
1993
|
position: z.ZodOptional<z.ZodUnion<[z.ZodNativeEnum<{
|
|
@@ -1998,6 +2019,8 @@ export declare const ScopeSchema: z.ZodObject<{
|
|
|
1998
2019
|
weight?: number | "normal" | "bold" | undefined;
|
|
1999
2020
|
style?: "normal" | "italic" | "oblique" | undefined;
|
|
2000
2021
|
}>>;
|
|
2022
|
+
rotate: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["none", "radial", "tangent"]>, z.ZodNumber]>>;
|
|
2023
|
+
keepUpright: z.ZodOptional<z.ZodBoolean>;
|
|
2001
2024
|
}, "strip", z.ZodTypeAny, {
|
|
2002
2025
|
text: string;
|
|
2003
2026
|
distance?: number | undefined;
|
|
@@ -2010,6 +2033,8 @@ export declare const ScopeSchema: z.ZodObject<{
|
|
|
2010
2033
|
} | undefined;
|
|
2011
2034
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
2012
2035
|
textColor?: string | undefined;
|
|
2036
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
2037
|
+
keepUpright?: boolean | undefined;
|
|
2013
2038
|
}, {
|
|
2014
2039
|
text: string;
|
|
2015
2040
|
distance?: number | undefined;
|
|
@@ -2022,8 +2047,11 @@ export declare const ScopeSchema: z.ZodObject<{
|
|
|
2022
2047
|
} | undefined;
|
|
2023
2048
|
position?: number | "above" | "below" | "left" | "right" | "above-left" | "above-right" | "below-left" | "below-right" | undefined;
|
|
2024
2049
|
textColor?: string | undefined;
|
|
2050
|
+
rotate?: number | "none" | "radial" | "tangent" | undefined;
|
|
2051
|
+
keepUpright?: boolean | undefined;
|
|
2025
2052
|
}>, "many">]>>;
|
|
2026
|
-
|
|
2053
|
+
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
2054
|
+
}, "type" | "text" | "position" | "label" | "zIndex" | "id">, "strict", z.ZodTypeAny, {
|
|
2027
2055
|
fill?: string | undefined;
|
|
2028
2056
|
opacity?: number | undefined;
|
|
2029
2057
|
font?: {
|
|
@@ -2256,6 +2284,7 @@ export declare const ScopeSchema: z.ZodObject<{
|
|
|
2256
2284
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
2257
2285
|
fillOpacity: z.ZodOptional<z.ZodNumber>;
|
|
2258
2286
|
drawOpacity: z.ZodOptional<z.ZodNumber>;
|
|
2287
|
+
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
2259
2288
|
children: z.ZodArray<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
2260
2289
|
type: z.ZodLiteral<"step">;
|
|
2261
2290
|
kind: z.ZodLiteral<"move">;
|
|
@@ -3195,7 +3224,7 @@ export declare const ScopeSchema: z.ZodObject<{
|
|
|
3195
3224
|
textColor?: string | undefined;
|
|
3196
3225
|
} | undefined;
|
|
3197
3226
|
}>]>, "many">;
|
|
3198
|
-
}, "type" | "arrow" | "arrowDetail" | "children">, "strict", z.ZodTypeAny, {
|
|
3227
|
+
}, "type" | "arrow" | "arrowDetail" | "zIndex" | "children">, "strict", z.ZodTypeAny, {
|
|
3199
3228
|
fill?: string | undefined;
|
|
3200
3229
|
opacity?: number | undefined;
|
|
3201
3230
|
color?: string | undefined;
|
|
@@ -3413,6 +3442,7 @@ export declare const ScopeSchema: z.ZodObject<{
|
|
|
3413
3442
|
} | undefined;
|
|
3414
3443
|
}>>;
|
|
3415
3444
|
resetStyle: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEnum<["node", "path", "label", "arrow"]>, "many">]>>;
|
|
3445
|
+
zIndex: z.ZodOptional<z.ZodNumber>;
|
|
3416
3446
|
children: z.ZodArray<z.ZodLazy<z.ZodTypeAny>, "many">;
|
|
3417
3447
|
}, "strip", z.ZodTypeAny, {
|
|
3418
3448
|
type: "scope";
|
|
@@ -3424,6 +3454,7 @@ export declare const ScopeSchema: z.ZodObject<{
|
|
|
3424
3454
|
strokeWidth?: number | undefined;
|
|
3425
3455
|
fillOpacity?: number | undefined;
|
|
3426
3456
|
drawOpacity?: number | undefined;
|
|
3457
|
+
zIndex?: number | undefined;
|
|
3427
3458
|
id?: string | undefined;
|
|
3428
3459
|
localNamespace?: boolean | undefined;
|
|
3429
3460
|
transforms?: ({
|
|
@@ -3555,6 +3586,7 @@ export declare const ScopeSchema: z.ZodObject<{
|
|
|
3555
3586
|
strokeWidth?: number | undefined;
|
|
3556
3587
|
fillOpacity?: number | undefined;
|
|
3557
3588
|
drawOpacity?: number | undefined;
|
|
3589
|
+
zIndex?: number | undefined;
|
|
3558
3590
|
id?: string | undefined;
|
|
3559
3591
|
localNamespace?: boolean | undefined;
|
|
3560
3592
|
transforms?: ({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scope.d.ts","sourceRoot":"","sources":["../../../src/ir/scope.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAEjD,OAAO,EAAE,KAAK,MAAM,EAAc,MAAM,QAAQ,CAAC;AACjD,OAAO,EAAE,KAAK,MAAM,EAAc,MAAM,QAAQ,CAAC;AAEjD,OAAO,EAAE,KAAK,WAAW,EAAmB,MAAM,aAAa,CAAC;AAOhE;;;;GAIG;AACH,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"scope.d.ts","sourceRoot":"","sources":["../../../src/ir/scope.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2GrB,CAAC"}
|