@tscircuit/props 0.0.600 → 0.0.602
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 +4 -35
- package/dist/index.d.ts +244 -122
- package/dist/index.js +711 -699
- package/dist/index.js.map +1 -1
- package/lib/common/fanoutProps.ts +65 -0
- package/lib/components/autoroutingphase.ts +7 -55
- package/lib/components/breakout.ts +4 -12
- package/lib/components/bus.ts +3 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -28481,6 +28481,32 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
28481
28481
|
edgePaddingBottom?: string | number | undefined;
|
|
28482
28482
|
}>;
|
|
28483
28483
|
|
|
28484
|
+
type BusName = string;
|
|
28485
|
+
/**
|
|
28486
|
+
* Declares a group of connections that an autorouter should keep together.
|
|
28487
|
+
* Each connection may be a trace name or a port selector.
|
|
28488
|
+
*/
|
|
28489
|
+
interface BusProps {
|
|
28490
|
+
name?: string;
|
|
28491
|
+
/** Trace names or port selectors for the connections in the bus. */
|
|
28492
|
+
connections: string[];
|
|
28493
|
+
/** Autorouting phase in which this bus constraint should be applied. */
|
|
28494
|
+
routingPhaseIndex?: number | null;
|
|
28495
|
+
}
|
|
28496
|
+
declare const busProps: z.ZodObject<{
|
|
28497
|
+
name: z.ZodOptional<z.ZodString>;
|
|
28498
|
+
connections: z.ZodArray<z.ZodString, "many">;
|
|
28499
|
+
routingPhaseIndex: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
28500
|
+
}, "strip", z.ZodTypeAny, {
|
|
28501
|
+
connections: string[];
|
|
28502
|
+
name?: string | undefined;
|
|
28503
|
+
routingPhaseIndex?: number | null | undefined;
|
|
28504
|
+
}, {
|
|
28505
|
+
connections: string[];
|
|
28506
|
+
name?: string | undefined;
|
|
28507
|
+
routingPhaseIndex?: number | null | undefined;
|
|
28508
|
+
}>;
|
|
28509
|
+
|
|
28484
28510
|
interface DirectionalFanoutBoundaryPadding {
|
|
28485
28511
|
top?: Distance;
|
|
28486
28512
|
right?: Distance;
|
|
@@ -28510,7 +28536,119 @@ declare const fanoutBoundaryPadding: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
28510
28536
|
bottom?: string | number | undefined;
|
|
28511
28537
|
}>]>;
|
|
28512
28538
|
|
|
28513
|
-
|
|
28539
|
+
type BusFanoutDirection = NinePointAnchor | {
|
|
28540
|
+
direction: NinePointAnchor;
|
|
28541
|
+
};
|
|
28542
|
+
type FanoutPourNetMap = Partial<Record<Extract<LayerRef, string>, string | string[]>>;
|
|
28543
|
+
/**
|
|
28544
|
+
* Routing controls shared by fanout autorouting phases and breakout groups.
|
|
28545
|
+
*/
|
|
28546
|
+
interface FanoutProps {
|
|
28547
|
+
/**
|
|
28548
|
+
* Fanout direction for each named bus. `center` leaves the direction
|
|
28549
|
+
* unconstrained.
|
|
28550
|
+
*/
|
|
28551
|
+
busFanoutDirections?: Record<BusName, BusFanoutDirection>;
|
|
28552
|
+
/**
|
|
28553
|
+
* Padding between the union of the fanout source pads and the shared
|
|
28554
|
+
* boundary where fanout traces terminate.
|
|
28555
|
+
*/
|
|
28556
|
+
fanoutBoundaryPadding?: FanoutBoundaryPadding;
|
|
28557
|
+
/**
|
|
28558
|
+
* Copper layers available to boundary-terminated fanout buses. Source-only
|
|
28559
|
+
* traces whose nets are mapped by `fanoutPourNetMap` terminate on their
|
|
28560
|
+
* mapped plane layer.
|
|
28561
|
+
*/
|
|
28562
|
+
fanoutRoutingLayers?: LayerRefInput[];
|
|
28563
|
+
/**
|
|
28564
|
+
* Maps copper layers to the net or nets poured on them. During fanout,
|
|
28565
|
+
* source-only traces on those nets drop to the mapped layer instead of
|
|
28566
|
+
* routing to the breakout boundary.
|
|
28567
|
+
*
|
|
28568
|
+
* This is inferred from `<copperpour>` components when omitted.
|
|
28569
|
+
*/
|
|
28570
|
+
fanoutPourNetMap?: FanoutPourNetMap;
|
|
28571
|
+
}
|
|
28572
|
+
declare const busFanoutDirection: z.ZodUnion<[z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>, z.ZodObject<{
|
|
28573
|
+
direction: z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>;
|
|
28574
|
+
}, "strip", z.ZodTypeAny, {
|
|
28575
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
28576
|
+
}, {
|
|
28577
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
28578
|
+
}>]>;
|
|
28579
|
+
declare const fanoutProps: z.ZodObject<{
|
|
28580
|
+
busFanoutDirections: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>, z.ZodObject<{
|
|
28581
|
+
direction: z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>;
|
|
28582
|
+
}, "strip", z.ZodTypeAny, {
|
|
28583
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
28584
|
+
}, {
|
|
28585
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
28586
|
+
}>]>>>;
|
|
28587
|
+
fanoutBoundaryPadding: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>, z.ZodObject<{
|
|
28588
|
+
top: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>>;
|
|
28589
|
+
right: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>>;
|
|
28590
|
+
bottom: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>>;
|
|
28591
|
+
left: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>>;
|
|
28592
|
+
}, "strip", z.ZodTypeAny, {
|
|
28593
|
+
left?: number | undefined;
|
|
28594
|
+
right?: number | undefined;
|
|
28595
|
+
top?: number | undefined;
|
|
28596
|
+
bottom?: number | undefined;
|
|
28597
|
+
}, {
|
|
28598
|
+
left?: string | number | undefined;
|
|
28599
|
+
right?: string | number | undefined;
|
|
28600
|
+
top?: string | number | undefined;
|
|
28601
|
+
bottom?: string | number | undefined;
|
|
28602
|
+
}>]>>;
|
|
28603
|
+
fanoutRoutingLayers: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>, z.ZodObject<{
|
|
28604
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>;
|
|
28605
|
+
}, "strip", z.ZodTypeAny, {
|
|
28606
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
28607
|
+
}, {
|
|
28608
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
28609
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
28610
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
28611
|
+
}>, "many">>;
|
|
28612
|
+
fanoutPourNetMap: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>, z.ZodObject<{
|
|
28613
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>;
|
|
28614
|
+
}, "strip", z.ZodTypeAny, {
|
|
28615
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
28616
|
+
}, {
|
|
28617
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
28618
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
28619
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
28620
|
+
}>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
28621
|
+
}, "strip", z.ZodTypeAny, {
|
|
28622
|
+
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
28623
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
28624
|
+
}> | undefined;
|
|
28625
|
+
fanoutBoundaryPadding?: number | {
|
|
28626
|
+
left?: number | undefined;
|
|
28627
|
+
right?: number | undefined;
|
|
28628
|
+
top?: number | undefined;
|
|
28629
|
+
bottom?: number | undefined;
|
|
28630
|
+
} | undefined;
|
|
28631
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8")[] | undefined;
|
|
28632
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", string | string[]>> | undefined;
|
|
28633
|
+
}, {
|
|
28634
|
+
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
28635
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
28636
|
+
}> | undefined;
|
|
28637
|
+
fanoutBoundaryPadding?: string | number | {
|
|
28638
|
+
left?: string | number | undefined;
|
|
28639
|
+
right?: string | number | undefined;
|
|
28640
|
+
top?: string | number | undefined;
|
|
28641
|
+
bottom?: string | number | undefined;
|
|
28642
|
+
} | undefined;
|
|
28643
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
28644
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
28645
|
+
})[] | undefined;
|
|
28646
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
28647
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
28648
|
+
}, string | string[]>> | undefined;
|
|
28649
|
+
}>;
|
|
28650
|
+
|
|
28651
|
+
interface BreakoutProps extends Omit<SubcircuitGroupProps, "subcircuit">, FanoutProps {
|
|
28514
28652
|
/**
|
|
28515
28653
|
* Autorouter used to escape the components inside the breakout boundary.
|
|
28516
28654
|
* Defaults to the multilayer fanout autorouter.
|
|
@@ -28521,12 +28659,6 @@ interface BreakoutProps extends Omit<SubcircuitGroupProps, "subcircuit"> {
|
|
|
28521
28659
|
paddingRight?: Distance;
|
|
28522
28660
|
paddingTop?: Distance;
|
|
28523
28661
|
paddingBottom?: Distance;
|
|
28524
|
-
/**
|
|
28525
|
-
* Padding between the union of the fanout source pads and the shared
|
|
28526
|
-
* boundary where fanout traces terminate. This is independent of the
|
|
28527
|
-
* breakout group's layout padding.
|
|
28528
|
-
*/
|
|
28529
|
-
fanoutBoundaryPadding?: FanoutBoundaryPadding;
|
|
28530
28662
|
}
|
|
28531
28663
|
declare const breakoutProps: z.ZodObject<{
|
|
28532
28664
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -29287,12 +29419,13 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29287
29419
|
bomDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
29288
29420
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29289
29421
|
} & {
|
|
29290
|
-
|
|
29291
|
-
|
|
29292
|
-
|
|
29293
|
-
|
|
29294
|
-
|
|
29295
|
-
|
|
29422
|
+
busFanoutDirections: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>, z.ZodObject<{
|
|
29423
|
+
direction: z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>;
|
|
29424
|
+
}, "strip", z.ZodTypeAny, {
|
|
29425
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
29426
|
+
}, {
|
|
29427
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
29428
|
+
}>]>>>;
|
|
29296
29429
|
fanoutBoundaryPadding: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>, z.ZodObject<{
|
|
29297
29430
|
top: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>>;
|
|
29298
29431
|
right: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>>;
|
|
@@ -29309,6 +29442,30 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29309
29442
|
top?: string | number | undefined;
|
|
29310
29443
|
bottom?: string | number | undefined;
|
|
29311
29444
|
}>]>>;
|
|
29445
|
+
fanoutRoutingLayers: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>, z.ZodObject<{
|
|
29446
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>;
|
|
29447
|
+
}, "strip", z.ZodTypeAny, {
|
|
29448
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
29449
|
+
}, {
|
|
29450
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
29451
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
29452
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
29453
|
+
}>, "many">>;
|
|
29454
|
+
fanoutPourNetMap: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>, z.ZodObject<{
|
|
29455
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>;
|
|
29456
|
+
}, "strip", z.ZodTypeAny, {
|
|
29457
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
29458
|
+
}, {
|
|
29459
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
29460
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
29461
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
29462
|
+
}>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
29463
|
+
autorouter: z.ZodDefault<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
29464
|
+
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29465
|
+
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29466
|
+
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29467
|
+
paddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29468
|
+
paddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29312
29469
|
}, "strip", z.ZodTypeAny, {
|
|
29313
29470
|
autorouter: AutorouterProp;
|
|
29314
29471
|
symbol?: SymbolProp | undefined;
|
|
@@ -29627,12 +29784,17 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29627
29784
|
schGap?: string | number | undefined;
|
|
29628
29785
|
schPack?: boolean | undefined;
|
|
29629
29786
|
schMatchAdapt?: boolean | undefined;
|
|
29787
|
+
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
29788
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
29789
|
+
}> | undefined;
|
|
29630
29790
|
fanoutBoundaryPadding?: number | {
|
|
29631
29791
|
left?: number | undefined;
|
|
29632
29792
|
right?: number | undefined;
|
|
29633
29793
|
top?: number | undefined;
|
|
29634
29794
|
bottom?: number | undefined;
|
|
29635
29795
|
} | undefined;
|
|
29796
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8")[] | undefined;
|
|
29797
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", string | string[]>> | undefined;
|
|
29636
29798
|
}, {
|
|
29637
29799
|
symbol?: SymbolProp | undefined;
|
|
29638
29800
|
width?: string | number | undefined;
|
|
@@ -29955,12 +30117,21 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29955
30117
|
schGap?: string | number | undefined;
|
|
29956
30118
|
schPack?: boolean | undefined;
|
|
29957
30119
|
schMatchAdapt?: boolean | undefined;
|
|
30120
|
+
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
30121
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
30122
|
+
}> | undefined;
|
|
29958
30123
|
fanoutBoundaryPadding?: string | number | {
|
|
29959
30124
|
left?: string | number | undefined;
|
|
29960
30125
|
right?: string | number | undefined;
|
|
29961
30126
|
top?: string | number | undefined;
|
|
29962
30127
|
bottom?: string | number | undefined;
|
|
29963
30128
|
} | undefined;
|
|
30129
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
30130
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
30131
|
+
})[] | undefined;
|
|
30132
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
30133
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
30134
|
+
}, string | string[]>> | undefined;
|
|
29964
30135
|
}>;
|
|
29965
30136
|
|
|
29966
30137
|
/**
|
|
@@ -95276,16 +95447,16 @@ declare const netProps: z.ZodObject<{
|
|
|
95276
95447
|
name: string;
|
|
95277
95448
|
highlightColor?: string | undefined;
|
|
95278
95449
|
nominalTraceWidth?: number | undefined;
|
|
95279
|
-
connectsTo?: string | string[] | undefined;
|
|
95280
95450
|
routingPhaseIndex?: number | null | undefined;
|
|
95451
|
+
connectsTo?: string | string[] | undefined;
|
|
95281
95452
|
isPowerNet?: boolean | undefined;
|
|
95282
95453
|
isGroundNet?: boolean | undefined;
|
|
95283
95454
|
}, {
|
|
95284
95455
|
name: string;
|
|
95285
95456
|
highlightColor?: string | undefined;
|
|
95286
95457
|
nominalTraceWidth?: string | number | undefined;
|
|
95287
|
-
connectsTo?: string | string[] | undefined;
|
|
95288
95458
|
routingPhaseIndex?: number | null | undefined;
|
|
95459
|
+
connectsTo?: string | string[] | undefined;
|
|
95289
95460
|
isPowerNet?: boolean | undefined;
|
|
95290
95461
|
isGroundNet?: boolean | undefined;
|
|
95291
95462
|
}>;
|
|
@@ -104142,9 +104313,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104142
104313
|
thickness?: number | undefined;
|
|
104143
104314
|
highlightColor?: string | undefined;
|
|
104144
104315
|
displayName?: string | undefined;
|
|
104316
|
+
routingPhaseIndex?: number | null | undefined;
|
|
104145
104317
|
maxLength?: number | undefined;
|
|
104146
104318
|
connectsTo?: string | string[] | undefined;
|
|
104147
|
-
routingPhaseIndex?: number | null | undefined;
|
|
104148
104319
|
schematicRouteHints?: {
|
|
104149
104320
|
x: number;
|
|
104150
104321
|
y: number;
|
|
@@ -104184,9 +104355,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104184
104355
|
thickness?: string | number | undefined;
|
|
104185
104356
|
highlightColor?: string | undefined;
|
|
104186
104357
|
displayName?: string | undefined;
|
|
104358
|
+
routingPhaseIndex?: number | null | undefined;
|
|
104187
104359
|
maxLength?: string | number | undefined;
|
|
104188
104360
|
connectsTo?: string | string[] | undefined;
|
|
104189
|
-
routingPhaseIndex?: number | null | undefined;
|
|
104190
104361
|
schematicRouteHints?: {
|
|
104191
104362
|
x: string | number;
|
|
104192
104363
|
y: string | number;
|
|
@@ -104415,9 +104586,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104415
104586
|
thickness?: number | undefined;
|
|
104416
104587
|
highlightColor?: string | undefined;
|
|
104417
104588
|
displayName?: string | undefined;
|
|
104589
|
+
routingPhaseIndex?: number | null | undefined;
|
|
104418
104590
|
maxLength?: number | undefined;
|
|
104419
104591
|
connectsTo?: string | string[] | undefined;
|
|
104420
|
-
routingPhaseIndex?: number | null | undefined;
|
|
104421
104592
|
schematicRouteHints?: {
|
|
104422
104593
|
x: number;
|
|
104423
104594
|
y: number;
|
|
@@ -104460,9 +104631,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104460
104631
|
thickness?: string | number | undefined;
|
|
104461
104632
|
highlightColor?: string | undefined;
|
|
104462
104633
|
displayName?: string | undefined;
|
|
104634
|
+
routingPhaseIndex?: number | null | undefined;
|
|
104463
104635
|
maxLength?: string | number | undefined;
|
|
104464
104636
|
connectsTo?: string | string[] | undefined;
|
|
104465
|
-
routingPhaseIndex?: number | null | undefined;
|
|
104466
104637
|
schematicRouteHints?: {
|
|
104467
104638
|
x: string | number;
|
|
104468
104639
|
y: string | number;
|
|
@@ -104691,9 +104862,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104691
104862
|
thickness?: number | undefined;
|
|
104692
104863
|
highlightColor?: string | undefined;
|
|
104693
104864
|
displayName?: string | undefined;
|
|
104865
|
+
routingPhaseIndex?: number | null | undefined;
|
|
104694
104866
|
maxLength?: number | undefined;
|
|
104695
104867
|
connectsTo?: string | string[] | undefined;
|
|
104696
|
-
routingPhaseIndex?: number | null | undefined;
|
|
104697
104868
|
schematicRouteHints?: {
|
|
104698
104869
|
x: number;
|
|
104699
104870
|
y: number;
|
|
@@ -104736,9 +104907,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104736
104907
|
thickness?: string | number | undefined;
|
|
104737
104908
|
highlightColor?: string | undefined;
|
|
104738
104909
|
displayName?: string | undefined;
|
|
104910
|
+
routingPhaseIndex?: number | null | undefined;
|
|
104739
104911
|
maxLength?: string | number | undefined;
|
|
104740
104912
|
connectsTo?: string | string[] | undefined;
|
|
104741
|
-
routingPhaseIndex?: number | null | undefined;
|
|
104742
104913
|
schematicRouteHints?: {
|
|
104743
104914
|
x: string | number;
|
|
104744
104915
|
y: string | number;
|
|
@@ -104781,27 +104952,6 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104781
104952
|
}>]>;
|
|
104782
104953
|
type TraceProps = z.input<typeof traceProps>;
|
|
104783
104954
|
|
|
104784
|
-
type BusName = string;
|
|
104785
|
-
/**
|
|
104786
|
-
* Declares a group of connections that an autorouter should keep together.
|
|
104787
|
-
* Each connection may be a trace name or a port selector.
|
|
104788
|
-
*/
|
|
104789
|
-
interface BusProps {
|
|
104790
|
-
name?: string;
|
|
104791
|
-
/** Trace names or port selectors for the connections in the bus. */
|
|
104792
|
-
connections: string[];
|
|
104793
|
-
}
|
|
104794
|
-
declare const busProps: z.ZodObject<{
|
|
104795
|
-
name: z.ZodOptional<z.ZodString>;
|
|
104796
|
-
connections: z.ZodArray<z.ZodString, "many">;
|
|
104797
|
-
}, "strip", z.ZodTypeAny, {
|
|
104798
|
-
connections: string[];
|
|
104799
|
-
name?: string | undefined;
|
|
104800
|
-
}, {
|
|
104801
|
-
connections: string[];
|
|
104802
|
-
name?: string | undefined;
|
|
104803
|
-
}>;
|
|
104804
|
-
|
|
104805
104955
|
/**
|
|
104806
104956
|
* Defines matched routing constraints for two named traces that form a
|
|
104807
104957
|
* differential pair. Both connections must refer to trace `name` values.
|
|
@@ -123243,11 +123393,7 @@ declare const analogSweepParameterProps: z.ZodEffects<z.ZodDiscriminatedUnion<"p
|
|
|
123243
123393
|
step?: string | number | undefined;
|
|
123244
123394
|
}>;
|
|
123245
123395
|
|
|
123246
|
-
|
|
123247
|
-
direction: NinePointAnchor;
|
|
123248
|
-
};
|
|
123249
|
-
type FanoutPourNetMap = Partial<Record<Extract<LayerRef, string>, string | string[]>>;
|
|
123250
|
-
interface AutoroutingPhaseProps extends RoutingTolerances {
|
|
123396
|
+
interface AutoroutingPhaseProps extends RoutingTolerances, FanoutProps {
|
|
123251
123397
|
key?: any;
|
|
123252
123398
|
name?: string;
|
|
123253
123399
|
autorouter?: AutorouterProp;
|
|
@@ -123262,54 +123408,8 @@ interface AutoroutingPhaseProps extends RoutingTolerances {
|
|
|
123262
123408
|
connection?: string;
|
|
123263
123409
|
connections?: string[];
|
|
123264
123410
|
reroute?: boolean;
|
|
123265
|
-
/**
|
|
123266
|
-
* Fanout direction for each named bus in this phase. `center` leaves the
|
|
123267
|
-
* direction unconstrained.
|
|
123268
|
-
*/
|
|
123269
|
-
busFanoutDirections?: Record<BusName, BusFanoutDirection>;
|
|
123270
|
-
/**
|
|
123271
|
-
* Padding between the union of the fanout source pads and the shared
|
|
123272
|
-
* boundary where fanout traces terminate.
|
|
123273
|
-
*/
|
|
123274
|
-
fanoutBoundaryPadding?: FanoutBoundaryPadding;
|
|
123275
|
-
/**
|
|
123276
|
-
* Copper layers available to boundary-terminated fanout buses. Source-only
|
|
123277
|
-
* traces whose nets are mapped by `fanoutPourNetMap` terminate on their
|
|
123278
|
-
* mapped plane layer.
|
|
123279
|
-
*/
|
|
123280
|
-
fanoutRoutingLayers?: LayerRefInput[];
|
|
123281
|
-
/**
|
|
123282
|
-
* Maps copper layers to the net or nets poured on them. During fanout,
|
|
123283
|
-
* source-only traces on those nets drop to the mapped layer instead of
|
|
123284
|
-
* routing to the breakout boundary.
|
|
123285
|
-
*
|
|
123286
|
-
* This is inferred from `<copperpour>` components when omitted.
|
|
123287
|
-
*/
|
|
123288
|
-
fanoutPourNetMap?: FanoutPourNetMap;
|
|
123289
123411
|
}
|
|
123290
123412
|
declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
123291
|
-
region: z.ZodOptional<z.ZodObject<{
|
|
123292
|
-
shape: z.ZodOptional<z.ZodLiteral<"rect">>;
|
|
123293
|
-
minX: z.ZodNumber;
|
|
123294
|
-
maxX: z.ZodNumber;
|
|
123295
|
-
minY: z.ZodNumber;
|
|
123296
|
-
maxY: z.ZodNumber;
|
|
123297
|
-
}, "strip", z.ZodTypeAny, {
|
|
123298
|
-
minX: number;
|
|
123299
|
-
maxX: number;
|
|
123300
|
-
minY: number;
|
|
123301
|
-
maxY: number;
|
|
123302
|
-
shape?: "rect" | undefined;
|
|
123303
|
-
}, {
|
|
123304
|
-
minX: number;
|
|
123305
|
-
maxX: number;
|
|
123306
|
-
minY: number;
|
|
123307
|
-
maxY: number;
|
|
123308
|
-
shape?: "rect" | undefined;
|
|
123309
|
-
}>>;
|
|
123310
|
-
connection: z.ZodOptional<z.ZodString>;
|
|
123311
|
-
connections: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
123312
|
-
reroute: z.ZodOptional<z.ZodBoolean>;
|
|
123313
123413
|
busFanoutDirections: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>, z.ZodObject<{
|
|
123314
123414
|
direction: z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>;
|
|
123315
123415
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -123351,6 +123451,28 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123351
123451
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123352
123452
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123353
123453
|
}>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
123454
|
+
region: z.ZodOptional<z.ZodObject<{
|
|
123455
|
+
shape: z.ZodOptional<z.ZodLiteral<"rect">>;
|
|
123456
|
+
minX: z.ZodNumber;
|
|
123457
|
+
maxX: z.ZodNumber;
|
|
123458
|
+
minY: z.ZodNumber;
|
|
123459
|
+
maxY: z.ZodNumber;
|
|
123460
|
+
}, "strip", z.ZodTypeAny, {
|
|
123461
|
+
minX: number;
|
|
123462
|
+
maxX: number;
|
|
123463
|
+
minY: number;
|
|
123464
|
+
maxY: number;
|
|
123465
|
+
shape?: "rect" | undefined;
|
|
123466
|
+
}, {
|
|
123467
|
+
minX: number;
|
|
123468
|
+
maxX: number;
|
|
123469
|
+
minY: number;
|
|
123470
|
+
maxY: number;
|
|
123471
|
+
shape?: "rect" | undefined;
|
|
123472
|
+
}>>;
|
|
123473
|
+
connection: z.ZodOptional<z.ZodString>;
|
|
123474
|
+
connections: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
123475
|
+
reroute: z.ZodOptional<z.ZodBoolean>;
|
|
123354
123476
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
123355
123477
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
123356
123478
|
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -123378,12 +123500,17 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123378
123500
|
minViaHoleDiameter?: number | undefined;
|
|
123379
123501
|
minViaPadDiameter?: number | undefined;
|
|
123380
123502
|
autorouter?: AutorouterProp | undefined;
|
|
123503
|
+
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123504
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123505
|
+
}> | undefined;
|
|
123381
123506
|
fanoutBoundaryPadding?: number | {
|
|
123382
123507
|
left?: number | undefined;
|
|
123383
123508
|
right?: number | undefined;
|
|
123384
123509
|
top?: number | undefined;
|
|
123385
123510
|
bottom?: number | undefined;
|
|
123386
123511
|
} | undefined;
|
|
123512
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8")[] | undefined;
|
|
123513
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", string | string[]>> | undefined;
|
|
123387
123514
|
connection?: string | undefined;
|
|
123388
123515
|
phaseIndex?: number | undefined;
|
|
123389
123516
|
region?: {
|
|
@@ -123394,11 +123521,6 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123394
123521
|
shape?: "rect" | undefined;
|
|
123395
123522
|
} | undefined;
|
|
123396
123523
|
reroute?: boolean | undefined;
|
|
123397
|
-
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123398
|
-
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123399
|
-
}> | undefined;
|
|
123400
|
-
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8")[] | undefined;
|
|
123401
|
-
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", string | string[]>> | undefined;
|
|
123402
123524
|
}, {
|
|
123403
123525
|
name?: string | undefined;
|
|
123404
123526
|
key?: any;
|
|
@@ -123413,12 +123535,21 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123413
123535
|
minViaHoleDiameter?: string | number | undefined;
|
|
123414
123536
|
minViaPadDiameter?: string | number | undefined;
|
|
123415
123537
|
autorouter?: AutorouterProp | undefined;
|
|
123538
|
+
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123539
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123540
|
+
}> | undefined;
|
|
123416
123541
|
fanoutBoundaryPadding?: string | number | {
|
|
123417
123542
|
left?: string | number | undefined;
|
|
123418
123543
|
right?: string | number | undefined;
|
|
123419
123544
|
top?: string | number | undefined;
|
|
123420
123545
|
bottom?: string | number | undefined;
|
|
123421
123546
|
} | undefined;
|
|
123547
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123548
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123549
|
+
})[] | undefined;
|
|
123550
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123551
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123552
|
+
}, string | string[]>> | undefined;
|
|
123422
123553
|
connection?: string | undefined;
|
|
123423
123554
|
phaseIndex?: number | undefined;
|
|
123424
123555
|
region?: {
|
|
@@ -123429,15 +123560,6 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123429
123560
|
shape?: "rect" | undefined;
|
|
123430
123561
|
} | undefined;
|
|
123431
123562
|
reroute?: boolean | undefined;
|
|
123432
|
-
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123433
|
-
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123434
|
-
}> | undefined;
|
|
123435
|
-
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123436
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123437
|
-
})[] | undefined;
|
|
123438
|
-
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123439
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123440
|
-
}, string | string[]>> | undefined;
|
|
123441
123563
|
}>, {
|
|
123442
123564
|
name?: string | undefined;
|
|
123443
123565
|
key?: any;
|
|
@@ -123452,12 +123574,17 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123452
123574
|
minViaHoleDiameter?: number | undefined;
|
|
123453
123575
|
minViaPadDiameter?: number | undefined;
|
|
123454
123576
|
autorouter?: AutorouterProp | undefined;
|
|
123577
|
+
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123578
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123579
|
+
}> | undefined;
|
|
123455
123580
|
fanoutBoundaryPadding?: number | {
|
|
123456
123581
|
left?: number | undefined;
|
|
123457
123582
|
right?: number | undefined;
|
|
123458
123583
|
top?: number | undefined;
|
|
123459
123584
|
bottom?: number | undefined;
|
|
123460
123585
|
} | undefined;
|
|
123586
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8")[] | undefined;
|
|
123587
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", string | string[]>> | undefined;
|
|
123461
123588
|
connection?: string | undefined;
|
|
123462
123589
|
phaseIndex?: number | undefined;
|
|
123463
123590
|
region?: {
|
|
@@ -123468,11 +123595,6 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123468
123595
|
shape?: "rect" | undefined;
|
|
123469
123596
|
} | undefined;
|
|
123470
123597
|
reroute?: boolean | undefined;
|
|
123471
|
-
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123472
|
-
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123473
|
-
}> | undefined;
|
|
123474
|
-
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8")[] | undefined;
|
|
123475
|
-
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", string | string[]>> | undefined;
|
|
123476
123598
|
}, {
|
|
123477
123599
|
name?: string | undefined;
|
|
123478
123600
|
key?: any;
|
|
@@ -123487,12 +123609,21 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123487
123609
|
minViaHoleDiameter?: string | number | undefined;
|
|
123488
123610
|
minViaPadDiameter?: string | number | undefined;
|
|
123489
123611
|
autorouter?: AutorouterProp | undefined;
|
|
123612
|
+
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123613
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123614
|
+
}> | undefined;
|
|
123490
123615
|
fanoutBoundaryPadding?: string | number | {
|
|
123491
123616
|
left?: string | number | undefined;
|
|
123492
123617
|
right?: string | number | undefined;
|
|
123493
123618
|
top?: string | number | undefined;
|
|
123494
123619
|
bottom?: string | number | undefined;
|
|
123495
123620
|
} | undefined;
|
|
123621
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123622
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123623
|
+
})[] | undefined;
|
|
123624
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123625
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123626
|
+
}, string | string[]>> | undefined;
|
|
123496
123627
|
connection?: string | undefined;
|
|
123497
123628
|
phaseIndex?: number | undefined;
|
|
123498
123629
|
region?: {
|
|
@@ -123503,15 +123634,6 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123503
123634
|
shape?: "rect" | undefined;
|
|
123504
123635
|
} | undefined;
|
|
123505
123636
|
reroute?: boolean | undefined;
|
|
123506
|
-
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123507
|
-
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123508
|
-
}> | undefined;
|
|
123509
|
-
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123510
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123511
|
-
})[] | undefined;
|
|
123512
|
-
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123513
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123514
|
-
}, string | string[]>> | undefined;
|
|
123515
123637
|
}>;
|
|
123516
123638
|
|
|
123517
123639
|
declare const transistorPinsLabels: readonly ["pin1", "pin2", "pin3", "emitter", "collector", "base", "gate", "source", "drain"];
|
|
@@ -192603,4 +192725,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
192603
192725
|
}
|
|
192604
192726
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
192605
192727
|
|
|
192606
|
-
export { type AmmeterPinLabels, type AmmeterProps, type AnalogAcSweepSimulationProps, type AnalogAnalysisSimulationBaseProps, type AnalogCapacitanceSweepParameterProps, type AnalogCurrentSweepParameterProps, type AnalogDcOperatingPointSimulationProps, type AnalogDcSweepSimulationProps, type AnalogInductanceSweepParameterProps, type AnalogResistanceSweepParameterProps, type AnalogSimulationProps, type AnalogSweepParameterProps, type AnalogTransientSimulationProps, type AnalogVoltageSweepParameterProps, type AssemblyDeviceProps, type AssemblyDevicePropsInput, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type BusFanoutDirection, type BusName, type BusProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelFootprinterString, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleEnclosureCutoutApertureProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleShapeProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type CommonShapeProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DifferentialPairProps, type DiodePinLabels, type DiodePinLabelsProp, type DiodeProps, type Direction, type DirectionAlongEdge, type DirectionalFanoutBoundaryPadding, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type EnclosureCutoutApertureProps, type EnclosureCutoutApertureShape, type EnclosureFdmBoxProps, type EnclosureFdmBoxPropsInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FanoutBoundaryPadding, type FanoutPourNetMap, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicSheetProps, type InferredSchematicSymbolProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type InternalCircuitElement, type InternalCircuitProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NinePointAnchor, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, type OvalPlatedHoleProps, type PanelProps, type ParsedEnclosureCutoutApertureProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillEnclosureCutoutApertureProps, type PillHoleProps, type PillPlatedHoleProps, type PillShapeProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectEnclosureCutoutApertureProps, type RectHoleProps, type RectShapeProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSheetProps, type SchematicSymbolProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, analogAcSweepSimulationProps, analogAnalysisSimulationBaseProps, analogCapacitanceSweepParameterProps, analogCurrentSweepParameterProps, analogDcOperatingPointSimulationProps, analogDcSweepSimulationProps, analogInductanceSweepParameterProps, analogResistanceSweepParameterProps, analogSimulationProps, analogSweepParameterProps, analogTransientSimulationProps, analogVoltageSweepParameterProps, assemblyDeviceProps, assemblyProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, busProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleShapeProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, commonShapeProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, differentialPairProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, enclosureCutoutApertureProps, enclosureCutoutApertureShapes, enclosureFdmBoxProps, enclosureProps, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fanoutBoundaryPadding, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, internalCircuitProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillShapeProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectShapeProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSheetProps, schematicSymbolProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
192728
|
+
export { type AmmeterPinLabels, type AmmeterProps, type AnalogAcSweepSimulationProps, type AnalogAnalysisSimulationBaseProps, type AnalogCapacitanceSweepParameterProps, type AnalogCurrentSweepParameterProps, type AnalogDcOperatingPointSimulationProps, type AnalogDcSweepSimulationProps, type AnalogInductanceSweepParameterProps, type AnalogResistanceSweepParameterProps, type AnalogSimulationProps, type AnalogSweepParameterProps, type AnalogTransientSimulationProps, type AnalogVoltageSweepParameterProps, type AssemblyDeviceProps, type AssemblyDevicePropsInput, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type BusFanoutDirection, type BusName, type BusProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelFootprinterString, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleEnclosureCutoutApertureProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleShapeProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type CommonShapeProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DifferentialPairProps, type DiodePinLabels, type DiodePinLabelsProp, type DiodeProps, type Direction, type DirectionAlongEdge, type DirectionalFanoutBoundaryPadding, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type EnclosureCutoutApertureProps, type EnclosureCutoutApertureShape, type EnclosureFdmBoxProps, type EnclosureFdmBoxPropsInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FanoutBoundaryPadding, type FanoutPourNetMap, type FanoutProps, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicSheetProps, type InferredSchematicSymbolProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type InternalCircuitElement, type InternalCircuitProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NinePointAnchor, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, type OvalPlatedHoleProps, type PanelProps, type ParsedEnclosureCutoutApertureProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillEnclosureCutoutApertureProps, type PillHoleProps, type PillPlatedHoleProps, type PillShapeProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectEnclosureCutoutApertureProps, type RectHoleProps, type RectShapeProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSheetProps, type SchematicSymbolProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, analogAcSweepSimulationProps, analogAnalysisSimulationBaseProps, analogCapacitanceSweepParameterProps, analogCurrentSweepParameterProps, analogDcOperatingPointSimulationProps, analogDcSweepSimulationProps, analogInductanceSweepParameterProps, analogResistanceSweepParameterProps, analogSimulationProps, analogSweepParameterProps, analogTransientSimulationProps, analogVoltageSweepParameterProps, assemblyDeviceProps, assemblyProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, busFanoutDirection, busProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleShapeProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, commonShapeProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, differentialPairProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, enclosureCutoutApertureProps, enclosureCutoutApertureShapes, enclosureFdmBoxProps, enclosureProps, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fanoutBoundaryPadding, fanoutProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, internalCircuitProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillShapeProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectShapeProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSheetProps, schematicSymbolProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|