@tscircuit/props 0.0.599 → 0.0.601
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 +267 -115
- package/dist/index.js +723 -707
- 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/smtpad.ts +10 -0
- package/lib/components/transistor.ts +3 -3
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -28481,6 +28481,27 @@ 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
|
+
}
|
|
28494
|
+
declare const busProps: z.ZodObject<{
|
|
28495
|
+
name: z.ZodOptional<z.ZodString>;
|
|
28496
|
+
connections: z.ZodArray<z.ZodString, "many">;
|
|
28497
|
+
}, "strip", z.ZodTypeAny, {
|
|
28498
|
+
connections: string[];
|
|
28499
|
+
name?: string | undefined;
|
|
28500
|
+
}, {
|
|
28501
|
+
connections: string[];
|
|
28502
|
+
name?: string | undefined;
|
|
28503
|
+
}>;
|
|
28504
|
+
|
|
28484
28505
|
interface DirectionalFanoutBoundaryPadding {
|
|
28485
28506
|
top?: Distance;
|
|
28486
28507
|
right?: Distance;
|
|
@@ -28510,7 +28531,119 @@ declare const fanoutBoundaryPadding: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.Zod
|
|
|
28510
28531
|
bottom?: string | number | undefined;
|
|
28511
28532
|
}>]>;
|
|
28512
28533
|
|
|
28513
|
-
|
|
28534
|
+
type BusFanoutDirection = NinePointAnchor | {
|
|
28535
|
+
direction: NinePointAnchor;
|
|
28536
|
+
};
|
|
28537
|
+
type FanoutPourNetMap = Partial<Record<Extract<LayerRef, string>, string | string[]>>;
|
|
28538
|
+
/**
|
|
28539
|
+
* Routing controls shared by fanout autorouting phases and breakout groups.
|
|
28540
|
+
*/
|
|
28541
|
+
interface FanoutProps {
|
|
28542
|
+
/**
|
|
28543
|
+
* Fanout direction for each named bus. `center` leaves the direction
|
|
28544
|
+
* unconstrained.
|
|
28545
|
+
*/
|
|
28546
|
+
busFanoutDirections?: Record<BusName, BusFanoutDirection>;
|
|
28547
|
+
/**
|
|
28548
|
+
* Padding between the union of the fanout source pads and the shared
|
|
28549
|
+
* boundary where fanout traces terminate.
|
|
28550
|
+
*/
|
|
28551
|
+
fanoutBoundaryPadding?: FanoutBoundaryPadding;
|
|
28552
|
+
/**
|
|
28553
|
+
* Copper layers available to boundary-terminated fanout buses. Source-only
|
|
28554
|
+
* traces whose nets are mapped by `fanoutPourNetMap` terminate on their
|
|
28555
|
+
* mapped plane layer.
|
|
28556
|
+
*/
|
|
28557
|
+
fanoutRoutingLayers?: LayerRefInput[];
|
|
28558
|
+
/**
|
|
28559
|
+
* Maps copper layers to the net or nets poured on them. During fanout,
|
|
28560
|
+
* source-only traces on those nets drop to the mapped layer instead of
|
|
28561
|
+
* routing to the breakout boundary.
|
|
28562
|
+
*
|
|
28563
|
+
* This is inferred from `<copperpour>` components when omitted.
|
|
28564
|
+
*/
|
|
28565
|
+
fanoutPourNetMap?: FanoutPourNetMap;
|
|
28566
|
+
}
|
|
28567
|
+
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<{
|
|
28568
|
+
direction: z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>;
|
|
28569
|
+
}, "strip", z.ZodTypeAny, {
|
|
28570
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
28571
|
+
}, {
|
|
28572
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
28573
|
+
}>]>;
|
|
28574
|
+
declare const fanoutProps: z.ZodObject<{
|
|
28575
|
+
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<{
|
|
28576
|
+
direction: z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>;
|
|
28577
|
+
}, "strip", z.ZodTypeAny, {
|
|
28578
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
28579
|
+
}, {
|
|
28580
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
28581
|
+
}>]>>>;
|
|
28582
|
+
fanoutBoundaryPadding: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>, z.ZodObject<{
|
|
28583
|
+
top: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>>;
|
|
28584
|
+
right: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>>;
|
|
28585
|
+
bottom: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>>;
|
|
28586
|
+
left: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>>;
|
|
28587
|
+
}, "strip", z.ZodTypeAny, {
|
|
28588
|
+
left?: number | undefined;
|
|
28589
|
+
right?: number | undefined;
|
|
28590
|
+
top?: number | undefined;
|
|
28591
|
+
bottom?: number | undefined;
|
|
28592
|
+
}, {
|
|
28593
|
+
left?: string | number | undefined;
|
|
28594
|
+
right?: string | number | undefined;
|
|
28595
|
+
top?: string | number | undefined;
|
|
28596
|
+
bottom?: string | number | undefined;
|
|
28597
|
+
}>]>>;
|
|
28598
|
+
fanoutRoutingLayers: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>, z.ZodObject<{
|
|
28599
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>;
|
|
28600
|
+
}, "strip", z.ZodTypeAny, {
|
|
28601
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
28602
|
+
}, {
|
|
28603
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
28604
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
28605
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
28606
|
+
}>, "many">>;
|
|
28607
|
+
fanoutPourNetMap: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>, z.ZodObject<{
|
|
28608
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>;
|
|
28609
|
+
}, "strip", z.ZodTypeAny, {
|
|
28610
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
28611
|
+
}, {
|
|
28612
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
28613
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
28614
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
28615
|
+
}>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
28616
|
+
}, "strip", z.ZodTypeAny, {
|
|
28617
|
+
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
28618
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
28619
|
+
}> | undefined;
|
|
28620
|
+
fanoutBoundaryPadding?: number | {
|
|
28621
|
+
left?: number | undefined;
|
|
28622
|
+
right?: number | undefined;
|
|
28623
|
+
top?: number | undefined;
|
|
28624
|
+
bottom?: number | undefined;
|
|
28625
|
+
} | undefined;
|
|
28626
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8")[] | undefined;
|
|
28627
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", string | string[]>> | undefined;
|
|
28628
|
+
}, {
|
|
28629
|
+
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
28630
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
28631
|
+
}> | undefined;
|
|
28632
|
+
fanoutBoundaryPadding?: string | number | {
|
|
28633
|
+
left?: string | number | undefined;
|
|
28634
|
+
right?: string | number | undefined;
|
|
28635
|
+
top?: string | number | undefined;
|
|
28636
|
+
bottom?: string | number | undefined;
|
|
28637
|
+
} | undefined;
|
|
28638
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
28639
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
28640
|
+
})[] | undefined;
|
|
28641
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
28642
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
28643
|
+
}, string | string[]>> | undefined;
|
|
28644
|
+
}>;
|
|
28645
|
+
|
|
28646
|
+
interface BreakoutProps extends Omit<SubcircuitGroupProps, "subcircuit">, FanoutProps {
|
|
28514
28647
|
/**
|
|
28515
28648
|
* Autorouter used to escape the components inside the breakout boundary.
|
|
28516
28649
|
* Defaults to the multilayer fanout autorouter.
|
|
@@ -28521,12 +28654,6 @@ interface BreakoutProps extends Omit<SubcircuitGroupProps, "subcircuit"> {
|
|
|
28521
28654
|
paddingRight?: Distance;
|
|
28522
28655
|
paddingTop?: Distance;
|
|
28523
28656
|
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
28657
|
}
|
|
28531
28658
|
declare const breakoutProps: z.ZodObject<{
|
|
28532
28659
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -29287,12 +29414,13 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29287
29414
|
bomDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
29288
29415
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29289
29416
|
} & {
|
|
29290
|
-
|
|
29291
|
-
|
|
29292
|
-
|
|
29293
|
-
|
|
29294
|
-
|
|
29295
|
-
|
|
29417
|
+
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<{
|
|
29418
|
+
direction: z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>;
|
|
29419
|
+
}, "strip", z.ZodTypeAny, {
|
|
29420
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
29421
|
+
}, {
|
|
29422
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
29423
|
+
}>]>>>;
|
|
29296
29424
|
fanoutBoundaryPadding: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>, z.ZodObject<{
|
|
29297
29425
|
top: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>>;
|
|
29298
29426
|
right: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>>;
|
|
@@ -29309,6 +29437,30 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29309
29437
|
top?: string | number | undefined;
|
|
29310
29438
|
bottom?: string | number | undefined;
|
|
29311
29439
|
}>]>>;
|
|
29440
|
+
fanoutRoutingLayers: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>, z.ZodObject<{
|
|
29441
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>;
|
|
29442
|
+
}, "strip", z.ZodTypeAny, {
|
|
29443
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
29444
|
+
}, {
|
|
29445
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
29446
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
29447
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
29448
|
+
}>, "many">>;
|
|
29449
|
+
fanoutPourNetMap: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>, z.ZodObject<{
|
|
29450
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>;
|
|
29451
|
+
}, "strip", z.ZodTypeAny, {
|
|
29452
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
29453
|
+
}, {
|
|
29454
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
29455
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
29456
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
29457
|
+
}>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
29458
|
+
autorouter: z.ZodDefault<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
29459
|
+
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29460
|
+
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29461
|
+
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29462
|
+
paddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29463
|
+
paddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29312
29464
|
}, "strip", z.ZodTypeAny, {
|
|
29313
29465
|
autorouter: AutorouterProp;
|
|
29314
29466
|
symbol?: SymbolProp | undefined;
|
|
@@ -29627,12 +29779,17 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29627
29779
|
schGap?: string | number | undefined;
|
|
29628
29780
|
schPack?: boolean | undefined;
|
|
29629
29781
|
schMatchAdapt?: boolean | undefined;
|
|
29782
|
+
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
29783
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
29784
|
+
}> | undefined;
|
|
29630
29785
|
fanoutBoundaryPadding?: number | {
|
|
29631
29786
|
left?: number | undefined;
|
|
29632
29787
|
right?: number | undefined;
|
|
29633
29788
|
top?: number | undefined;
|
|
29634
29789
|
bottom?: number | undefined;
|
|
29635
29790
|
} | undefined;
|
|
29791
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8")[] | undefined;
|
|
29792
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", string | string[]>> | undefined;
|
|
29636
29793
|
}, {
|
|
29637
29794
|
symbol?: SymbolProp | undefined;
|
|
29638
29795
|
width?: string | number | undefined;
|
|
@@ -29955,12 +30112,21 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29955
30112
|
schGap?: string | number | undefined;
|
|
29956
30113
|
schPack?: boolean | undefined;
|
|
29957
30114
|
schMatchAdapt?: boolean | undefined;
|
|
30115
|
+
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
30116
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
30117
|
+
}> | undefined;
|
|
29958
30118
|
fanoutBoundaryPadding?: string | number | {
|
|
29959
30119
|
left?: string | number | undefined;
|
|
29960
30120
|
right?: string | number | undefined;
|
|
29961
30121
|
top?: string | number | undefined;
|
|
29962
30122
|
bottom?: string | number | undefined;
|
|
29963
30123
|
} | undefined;
|
|
30124
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
30125
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
30126
|
+
})[] | undefined;
|
|
30127
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
30128
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
30129
|
+
}, string | string[]>> | undefined;
|
|
29964
30130
|
}>;
|
|
29965
30131
|
|
|
29966
30132
|
/**
|
|
@@ -100947,6 +101113,7 @@ interface RectSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
|
100947
101113
|
solderMaskMarginRight?: Distance;
|
|
100948
101114
|
solderMaskMarginTop?: Distance;
|
|
100949
101115
|
solderMaskMarginBottom?: Distance;
|
|
101116
|
+
solderPasteMargin?: Distance;
|
|
100950
101117
|
}
|
|
100951
101118
|
interface RotatedRectSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
100952
101119
|
name?: string;
|
|
@@ -100962,6 +101129,7 @@ interface RotatedRectSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
|
100962
101129
|
solderMaskMarginRight?: Distance;
|
|
100963
101130
|
solderMaskMarginTop?: Distance;
|
|
100964
101131
|
solderMaskMarginBottom?: Distance;
|
|
101132
|
+
solderPasteMargin?: Distance;
|
|
100965
101133
|
}
|
|
100966
101134
|
interface CircleSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
100967
101135
|
name?: string;
|
|
@@ -100970,6 +101138,7 @@ interface CircleSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
|
100970
101138
|
portHints?: PortHints;
|
|
100971
101139
|
coveredWithSolderMask?: boolean;
|
|
100972
101140
|
solderMaskMargin?: Distance;
|
|
101141
|
+
solderPasteMargin?: Distance;
|
|
100973
101142
|
}
|
|
100974
101143
|
interface PillSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
100975
101144
|
name?: string;
|
|
@@ -100980,6 +101149,7 @@ interface PillSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
|
100980
101149
|
portHints?: PortHints;
|
|
100981
101150
|
coveredWithSolderMask?: boolean;
|
|
100982
101151
|
solderMaskMargin?: Distance;
|
|
101152
|
+
solderPasteMargin?: Distance;
|
|
100983
101153
|
}
|
|
100984
101154
|
interface PolygonSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
100985
101155
|
name?: string;
|
|
@@ -100988,6 +101158,7 @@ interface PolygonSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
|
100988
101158
|
portHints?: PortHints;
|
|
100989
101159
|
coveredWithSolderMask?: boolean;
|
|
100990
101160
|
solderMaskMargin?: Distance;
|
|
101161
|
+
solderPasteMargin?: Distance;
|
|
100991
101162
|
}
|
|
100992
101163
|
type SmtPadProps = RectSmtPadProps | CircleSmtPadProps | RotatedRectSmtPadProps | PillSmtPadProps | PolygonSmtPadProps;
|
|
100993
101164
|
declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
@@ -101069,6 +101240,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
101069
101240
|
solderMaskMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101070
101241
|
solderMaskMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101071
101242
|
solderMaskMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101243
|
+
solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101072
101244
|
}, "strip", z.ZodTypeAny, {
|
|
101073
101245
|
shape: "rect";
|
|
101074
101246
|
width: number;
|
|
@@ -101114,6 +101286,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
101114
101286
|
solderMaskMarginRight?: number | undefined;
|
|
101115
101287
|
solderMaskMarginTop?: number | undefined;
|
|
101116
101288
|
solderMaskMarginBottom?: number | undefined;
|
|
101289
|
+
solderPasteMargin?: number | undefined;
|
|
101117
101290
|
}, {
|
|
101118
101291
|
shape: "rect";
|
|
101119
101292
|
width: string | number;
|
|
@@ -101161,6 +101334,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
101161
101334
|
solderMaskMarginRight?: string | number | undefined;
|
|
101162
101335
|
solderMaskMarginTop?: string | number | undefined;
|
|
101163
101336
|
solderMaskMarginBottom?: string | number | undefined;
|
|
101337
|
+
solderPasteMargin?: string | number | undefined;
|
|
101164
101338
|
}>;
|
|
101165
101339
|
declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
101166
101340
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -101241,6 +101415,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
101241
101415
|
solderMaskMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101242
101416
|
solderMaskMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101243
101417
|
solderMaskMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101418
|
+
solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101244
101419
|
}, "strip", z.ZodTypeAny, {
|
|
101245
101420
|
shape: "rotated_rect";
|
|
101246
101421
|
width: number;
|
|
@@ -101286,6 +101461,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
101286
101461
|
solderMaskMarginRight?: number | undefined;
|
|
101287
101462
|
solderMaskMarginTop?: number | undefined;
|
|
101288
101463
|
solderMaskMarginBottom?: number | undefined;
|
|
101464
|
+
solderPasteMargin?: number | undefined;
|
|
101289
101465
|
}, {
|
|
101290
101466
|
shape: "rotated_rect";
|
|
101291
101467
|
width: string | number;
|
|
@@ -101333,6 +101509,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
101333
101509
|
solderMaskMarginRight?: string | number | undefined;
|
|
101334
101510
|
solderMaskMarginTop?: string | number | undefined;
|
|
101335
101511
|
solderMaskMarginBottom?: string | number | undefined;
|
|
101512
|
+
solderPasteMargin?: string | number | undefined;
|
|
101336
101513
|
}>;
|
|
101337
101514
|
declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
101338
101515
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -101406,6 +101583,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
101406
101583
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
101407
101584
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
101408
101585
|
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101586
|
+
solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101409
101587
|
}, "strip", z.ZodTypeAny, {
|
|
101410
101588
|
shape: "circle";
|
|
101411
101589
|
radius: number;
|
|
@@ -101444,6 +101622,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
101444
101622
|
portHints?: (string | number)[] | undefined;
|
|
101445
101623
|
solderMaskMargin?: number | undefined;
|
|
101446
101624
|
coveredWithSolderMask?: boolean | undefined;
|
|
101625
|
+
solderPasteMargin?: number | undefined;
|
|
101447
101626
|
}, {
|
|
101448
101627
|
shape: "circle";
|
|
101449
101628
|
radius: string | number;
|
|
@@ -101484,6 +101663,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
101484
101663
|
portHints?: (string | number)[] | undefined;
|
|
101485
101664
|
solderMaskMargin?: string | number | undefined;
|
|
101486
101665
|
coveredWithSolderMask?: boolean | undefined;
|
|
101666
|
+
solderPasteMargin?: string | number | undefined;
|
|
101487
101667
|
}>;
|
|
101488
101668
|
declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
101489
101669
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -101559,6 +101739,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
101559
101739
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
101560
101740
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
101561
101741
|
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101742
|
+
solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101562
101743
|
}, "strip", z.ZodTypeAny, {
|
|
101563
101744
|
shape: "pill";
|
|
101564
101745
|
width: number;
|
|
@@ -101599,6 +101780,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
101599
101780
|
portHints?: (string | number)[] | undefined;
|
|
101600
101781
|
solderMaskMargin?: number | undefined;
|
|
101601
101782
|
coveredWithSolderMask?: boolean | undefined;
|
|
101783
|
+
solderPasteMargin?: number | undefined;
|
|
101602
101784
|
}, {
|
|
101603
101785
|
shape: "pill";
|
|
101604
101786
|
width: string | number;
|
|
@@ -101641,6 +101823,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
101641
101823
|
portHints?: (string | number)[] | undefined;
|
|
101642
101824
|
solderMaskMargin?: string | number | undefined;
|
|
101643
101825
|
coveredWithSolderMask?: boolean | undefined;
|
|
101826
|
+
solderPasteMargin?: string | number | undefined;
|
|
101644
101827
|
}>;
|
|
101645
101828
|
declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
101646
101829
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -101723,6 +101906,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
101723
101906
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
101724
101907
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
101725
101908
|
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101909
|
+
solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101726
101910
|
}, "strip", z.ZodTypeAny, {
|
|
101727
101911
|
shape: "polygon";
|
|
101728
101912
|
points: {
|
|
@@ -101764,6 +101948,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
101764
101948
|
portHints?: (string | number)[] | undefined;
|
|
101765
101949
|
solderMaskMargin?: number | undefined;
|
|
101766
101950
|
coveredWithSolderMask?: boolean | undefined;
|
|
101951
|
+
solderPasteMargin?: number | undefined;
|
|
101767
101952
|
}, {
|
|
101768
101953
|
shape: "polygon";
|
|
101769
101954
|
points: {
|
|
@@ -101807,6 +101992,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
101807
101992
|
portHints?: (string | number)[] | undefined;
|
|
101808
101993
|
solderMaskMargin?: string | number | undefined;
|
|
101809
101994
|
coveredWithSolderMask?: boolean | undefined;
|
|
101995
|
+
solderPasteMargin?: string | number | undefined;
|
|
101810
101996
|
}>;
|
|
101811
101997
|
declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
101812
101998
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -101880,6 +102066,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
101880
102066
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
101881
102067
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
101882
102068
|
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102069
|
+
solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101883
102070
|
}, "strip", z.ZodTypeAny, {
|
|
101884
102071
|
shape: "circle";
|
|
101885
102072
|
radius: number;
|
|
@@ -101918,6 +102105,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
101918
102105
|
portHints?: (string | number)[] | undefined;
|
|
101919
102106
|
solderMaskMargin?: number | undefined;
|
|
101920
102107
|
coveredWithSolderMask?: boolean | undefined;
|
|
102108
|
+
solderPasteMargin?: number | undefined;
|
|
101921
102109
|
}, {
|
|
101922
102110
|
shape: "circle";
|
|
101923
102111
|
radius: string | number;
|
|
@@ -101958,6 +102146,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
101958
102146
|
portHints?: (string | number)[] | undefined;
|
|
101959
102147
|
solderMaskMargin?: string | number | undefined;
|
|
101960
102148
|
coveredWithSolderMask?: boolean | undefined;
|
|
102149
|
+
solderPasteMargin?: string | number | undefined;
|
|
101961
102150
|
}>, z.ZodObject<Omit<{
|
|
101962
102151
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
101963
102152
|
pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -102037,6 +102226,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102037
102226
|
solderMaskMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102038
102227
|
solderMaskMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102039
102228
|
solderMaskMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102229
|
+
solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102040
102230
|
}, "strip", z.ZodTypeAny, {
|
|
102041
102231
|
shape: "rect";
|
|
102042
102232
|
width: number;
|
|
@@ -102082,6 +102272,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102082
102272
|
solderMaskMarginRight?: number | undefined;
|
|
102083
102273
|
solderMaskMarginTop?: number | undefined;
|
|
102084
102274
|
solderMaskMarginBottom?: number | undefined;
|
|
102275
|
+
solderPasteMargin?: number | undefined;
|
|
102085
102276
|
}, {
|
|
102086
102277
|
shape: "rect";
|
|
102087
102278
|
width: string | number;
|
|
@@ -102129,6 +102320,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102129
102320
|
solderMaskMarginRight?: string | number | undefined;
|
|
102130
102321
|
solderMaskMarginTop?: string | number | undefined;
|
|
102131
102322
|
solderMaskMarginBottom?: string | number | undefined;
|
|
102323
|
+
solderPasteMargin?: string | number | undefined;
|
|
102132
102324
|
}>, z.ZodObject<Omit<{
|
|
102133
102325
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
102134
102326
|
pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -102208,6 +102400,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102208
102400
|
solderMaskMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102209
102401
|
solderMaskMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102210
102402
|
solderMaskMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102403
|
+
solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102211
102404
|
}, "strip", z.ZodTypeAny, {
|
|
102212
102405
|
shape: "rotated_rect";
|
|
102213
102406
|
width: number;
|
|
@@ -102253,6 +102446,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102253
102446
|
solderMaskMarginRight?: number | undefined;
|
|
102254
102447
|
solderMaskMarginTop?: number | undefined;
|
|
102255
102448
|
solderMaskMarginBottom?: number | undefined;
|
|
102449
|
+
solderPasteMargin?: number | undefined;
|
|
102256
102450
|
}, {
|
|
102257
102451
|
shape: "rotated_rect";
|
|
102258
102452
|
width: string | number;
|
|
@@ -102300,6 +102494,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102300
102494
|
solderMaskMarginRight?: string | number | undefined;
|
|
102301
102495
|
solderMaskMarginTop?: string | number | undefined;
|
|
102302
102496
|
solderMaskMarginBottom?: string | number | undefined;
|
|
102497
|
+
solderPasteMargin?: string | number | undefined;
|
|
102303
102498
|
}>, z.ZodObject<Omit<{
|
|
102304
102499
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
102305
102500
|
pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -102374,6 +102569,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102374
102569
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
102375
102570
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
102376
102571
|
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102572
|
+
solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102377
102573
|
}, "strip", z.ZodTypeAny, {
|
|
102378
102574
|
shape: "pill";
|
|
102379
102575
|
width: number;
|
|
@@ -102414,6 +102610,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102414
102610
|
portHints?: (string | number)[] | undefined;
|
|
102415
102611
|
solderMaskMargin?: number | undefined;
|
|
102416
102612
|
coveredWithSolderMask?: boolean | undefined;
|
|
102613
|
+
solderPasteMargin?: number | undefined;
|
|
102417
102614
|
}, {
|
|
102418
102615
|
shape: "pill";
|
|
102419
102616
|
width: string | number;
|
|
@@ -102456,6 +102653,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102456
102653
|
portHints?: (string | number)[] | undefined;
|
|
102457
102654
|
solderMaskMargin?: string | number | undefined;
|
|
102458
102655
|
coveredWithSolderMask?: boolean | undefined;
|
|
102656
|
+
solderPasteMargin?: string | number | undefined;
|
|
102459
102657
|
}>, z.ZodObject<Omit<{
|
|
102460
102658
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
102461
102659
|
pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -102537,6 +102735,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102537
102735
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
102538
102736
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
102539
102737
|
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102738
|
+
solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102540
102739
|
}, "strip", z.ZodTypeAny, {
|
|
102541
102740
|
shape: "polygon";
|
|
102542
102741
|
points: {
|
|
@@ -102578,6 +102777,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102578
102777
|
portHints?: (string | number)[] | undefined;
|
|
102579
102778
|
solderMaskMargin?: number | undefined;
|
|
102580
102779
|
coveredWithSolderMask?: boolean | undefined;
|
|
102780
|
+
solderPasteMargin?: number | undefined;
|
|
102581
102781
|
}, {
|
|
102582
102782
|
shape: "polygon";
|
|
102583
102783
|
points: {
|
|
@@ -102621,6 +102821,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102621
102821
|
portHints?: (string | number)[] | undefined;
|
|
102622
102822
|
solderMaskMargin?: string | number | undefined;
|
|
102623
102823
|
coveredWithSolderMask?: boolean | undefined;
|
|
102824
|
+
solderPasteMargin?: string | number | undefined;
|
|
102624
102825
|
}>]>;
|
|
102625
102826
|
type InferredSmtPadProps = z.input<typeof smtPadProps>;
|
|
102626
102827
|
|
|
@@ -104746,27 +104947,6 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104746
104947
|
}>]>;
|
|
104747
104948
|
type TraceProps = z.input<typeof traceProps>;
|
|
104748
104949
|
|
|
104749
|
-
type BusName = string;
|
|
104750
|
-
/**
|
|
104751
|
-
* Declares a group of connections that an autorouter should keep together.
|
|
104752
|
-
* Each connection may be a trace name or a port selector.
|
|
104753
|
-
*/
|
|
104754
|
-
interface BusProps {
|
|
104755
|
-
name?: string;
|
|
104756
|
-
/** Trace names or port selectors for the connections in the bus. */
|
|
104757
|
-
connections: string[];
|
|
104758
|
-
}
|
|
104759
|
-
declare const busProps: z.ZodObject<{
|
|
104760
|
-
name: z.ZodOptional<z.ZodString>;
|
|
104761
|
-
connections: z.ZodArray<z.ZodString, "many">;
|
|
104762
|
-
}, "strip", z.ZodTypeAny, {
|
|
104763
|
-
connections: string[];
|
|
104764
|
-
name?: string | undefined;
|
|
104765
|
-
}, {
|
|
104766
|
-
connections: string[];
|
|
104767
|
-
name?: string | undefined;
|
|
104768
|
-
}>;
|
|
104769
|
-
|
|
104770
104950
|
/**
|
|
104771
104951
|
* Defines matched routing constraints for two named traces that form a
|
|
104772
104952
|
* differential pair. Both connections must refer to trace `name` values.
|
|
@@ -123208,11 +123388,7 @@ declare const analogSweepParameterProps: z.ZodEffects<z.ZodDiscriminatedUnion<"p
|
|
|
123208
123388
|
step?: string | number | undefined;
|
|
123209
123389
|
}>;
|
|
123210
123390
|
|
|
123211
|
-
|
|
123212
|
-
direction: NinePointAnchor;
|
|
123213
|
-
};
|
|
123214
|
-
type FanoutPourNetMap = Partial<Record<Extract<LayerRef, string>, string | string[]>>;
|
|
123215
|
-
interface AutoroutingPhaseProps extends RoutingTolerances {
|
|
123391
|
+
interface AutoroutingPhaseProps extends RoutingTolerances, FanoutProps {
|
|
123216
123392
|
key?: any;
|
|
123217
123393
|
name?: string;
|
|
123218
123394
|
autorouter?: AutorouterProp;
|
|
@@ -123227,54 +123403,8 @@ interface AutoroutingPhaseProps extends RoutingTolerances {
|
|
|
123227
123403
|
connection?: string;
|
|
123228
123404
|
connections?: string[];
|
|
123229
123405
|
reroute?: boolean;
|
|
123230
|
-
/**
|
|
123231
|
-
* Fanout direction for each named bus in this phase. `center` leaves the
|
|
123232
|
-
* direction unconstrained.
|
|
123233
|
-
*/
|
|
123234
|
-
busFanoutDirections?: Record<BusName, BusFanoutDirection>;
|
|
123235
|
-
/**
|
|
123236
|
-
* Padding between the union of the fanout source pads and the shared
|
|
123237
|
-
* boundary where fanout traces terminate.
|
|
123238
|
-
*/
|
|
123239
|
-
fanoutBoundaryPadding?: FanoutBoundaryPadding;
|
|
123240
|
-
/**
|
|
123241
|
-
* Copper layers available to boundary-terminated fanout buses. Source-only
|
|
123242
|
-
* traces whose nets are mapped by `fanoutPourNetMap` terminate on their
|
|
123243
|
-
* mapped plane layer.
|
|
123244
|
-
*/
|
|
123245
|
-
fanoutRoutingLayers?: LayerRefInput[];
|
|
123246
|
-
/**
|
|
123247
|
-
* Maps copper layers to the net or nets poured on them. During fanout,
|
|
123248
|
-
* source-only traces on those nets drop to the mapped layer instead of
|
|
123249
|
-
* routing to the breakout boundary.
|
|
123250
|
-
*
|
|
123251
|
-
* This is inferred from `<copperpour>` components when omitted.
|
|
123252
|
-
*/
|
|
123253
|
-
fanoutPourNetMap?: FanoutPourNetMap;
|
|
123254
123406
|
}
|
|
123255
123407
|
declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
123256
|
-
region: z.ZodOptional<z.ZodObject<{
|
|
123257
|
-
shape: z.ZodOptional<z.ZodLiteral<"rect">>;
|
|
123258
|
-
minX: z.ZodNumber;
|
|
123259
|
-
maxX: z.ZodNumber;
|
|
123260
|
-
minY: z.ZodNumber;
|
|
123261
|
-
maxY: z.ZodNumber;
|
|
123262
|
-
}, "strip", z.ZodTypeAny, {
|
|
123263
|
-
minX: number;
|
|
123264
|
-
maxX: number;
|
|
123265
|
-
minY: number;
|
|
123266
|
-
maxY: number;
|
|
123267
|
-
shape?: "rect" | undefined;
|
|
123268
|
-
}, {
|
|
123269
|
-
minX: number;
|
|
123270
|
-
maxX: number;
|
|
123271
|
-
minY: number;
|
|
123272
|
-
maxY: number;
|
|
123273
|
-
shape?: "rect" | undefined;
|
|
123274
|
-
}>>;
|
|
123275
|
-
connection: z.ZodOptional<z.ZodString>;
|
|
123276
|
-
connections: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
123277
|
-
reroute: z.ZodOptional<z.ZodBoolean>;
|
|
123278
123408
|
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<{
|
|
123279
123409
|
direction: z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>;
|
|
123280
123410
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -123316,6 +123446,28 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123316
123446
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123317
123447
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123318
123448
|
}>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
123449
|
+
region: z.ZodOptional<z.ZodObject<{
|
|
123450
|
+
shape: z.ZodOptional<z.ZodLiteral<"rect">>;
|
|
123451
|
+
minX: z.ZodNumber;
|
|
123452
|
+
maxX: z.ZodNumber;
|
|
123453
|
+
minY: z.ZodNumber;
|
|
123454
|
+
maxY: z.ZodNumber;
|
|
123455
|
+
}, "strip", z.ZodTypeAny, {
|
|
123456
|
+
minX: number;
|
|
123457
|
+
maxX: number;
|
|
123458
|
+
minY: number;
|
|
123459
|
+
maxY: number;
|
|
123460
|
+
shape?: "rect" | undefined;
|
|
123461
|
+
}, {
|
|
123462
|
+
minX: number;
|
|
123463
|
+
maxX: number;
|
|
123464
|
+
minY: number;
|
|
123465
|
+
maxY: number;
|
|
123466
|
+
shape?: "rect" | undefined;
|
|
123467
|
+
}>>;
|
|
123468
|
+
connection: z.ZodOptional<z.ZodString>;
|
|
123469
|
+
connections: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
123470
|
+
reroute: z.ZodOptional<z.ZodBoolean>;
|
|
123319
123471
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
123320
123472
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
123321
123473
|
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -123343,12 +123495,17 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123343
123495
|
minViaHoleDiameter?: number | undefined;
|
|
123344
123496
|
minViaPadDiameter?: number | undefined;
|
|
123345
123497
|
autorouter?: AutorouterProp | undefined;
|
|
123498
|
+
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123499
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123500
|
+
}> | undefined;
|
|
123346
123501
|
fanoutBoundaryPadding?: number | {
|
|
123347
123502
|
left?: number | undefined;
|
|
123348
123503
|
right?: number | undefined;
|
|
123349
123504
|
top?: number | undefined;
|
|
123350
123505
|
bottom?: number | undefined;
|
|
123351
123506
|
} | undefined;
|
|
123507
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8")[] | undefined;
|
|
123508
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", string | string[]>> | undefined;
|
|
123352
123509
|
connection?: string | undefined;
|
|
123353
123510
|
phaseIndex?: number | undefined;
|
|
123354
123511
|
region?: {
|
|
@@ -123359,11 +123516,6 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123359
123516
|
shape?: "rect" | undefined;
|
|
123360
123517
|
} | undefined;
|
|
123361
123518
|
reroute?: boolean | undefined;
|
|
123362
|
-
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123363
|
-
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123364
|
-
}> | undefined;
|
|
123365
|
-
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8")[] | undefined;
|
|
123366
|
-
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", string | string[]>> | undefined;
|
|
123367
123519
|
}, {
|
|
123368
123520
|
name?: string | undefined;
|
|
123369
123521
|
key?: any;
|
|
@@ -123378,12 +123530,21 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123378
123530
|
minViaHoleDiameter?: string | number | undefined;
|
|
123379
123531
|
minViaPadDiameter?: string | number | undefined;
|
|
123380
123532
|
autorouter?: AutorouterProp | undefined;
|
|
123533
|
+
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123534
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123535
|
+
}> | undefined;
|
|
123381
123536
|
fanoutBoundaryPadding?: string | number | {
|
|
123382
123537
|
left?: string | number | undefined;
|
|
123383
123538
|
right?: string | number | undefined;
|
|
123384
123539
|
top?: string | number | undefined;
|
|
123385
123540
|
bottom?: string | number | undefined;
|
|
123386
123541
|
} | undefined;
|
|
123542
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123543
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123544
|
+
})[] | undefined;
|
|
123545
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123546
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123547
|
+
}, string | string[]>> | undefined;
|
|
123387
123548
|
connection?: string | undefined;
|
|
123388
123549
|
phaseIndex?: number | undefined;
|
|
123389
123550
|
region?: {
|
|
@@ -123394,15 +123555,6 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123394
123555
|
shape?: "rect" | undefined;
|
|
123395
123556
|
} | undefined;
|
|
123396
123557
|
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" | {
|
|
123401
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123402
|
-
})[] | undefined;
|
|
123403
|
-
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123404
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123405
|
-
}, string | string[]>> | undefined;
|
|
123406
123558
|
}>, {
|
|
123407
123559
|
name?: string | undefined;
|
|
123408
123560
|
key?: any;
|
|
@@ -123417,12 +123569,17 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123417
123569
|
minViaHoleDiameter?: number | undefined;
|
|
123418
123570
|
minViaPadDiameter?: number | undefined;
|
|
123419
123571
|
autorouter?: AutorouterProp | undefined;
|
|
123572
|
+
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123573
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123574
|
+
}> | undefined;
|
|
123420
123575
|
fanoutBoundaryPadding?: number | {
|
|
123421
123576
|
left?: number | undefined;
|
|
123422
123577
|
right?: number | undefined;
|
|
123423
123578
|
top?: number | undefined;
|
|
123424
123579
|
bottom?: number | undefined;
|
|
123425
123580
|
} | undefined;
|
|
123581
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8")[] | undefined;
|
|
123582
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", string | string[]>> | undefined;
|
|
123426
123583
|
connection?: string | undefined;
|
|
123427
123584
|
phaseIndex?: number | undefined;
|
|
123428
123585
|
region?: {
|
|
@@ -123433,11 +123590,6 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123433
123590
|
shape?: "rect" | undefined;
|
|
123434
123591
|
} | undefined;
|
|
123435
123592
|
reroute?: boolean | undefined;
|
|
123436
|
-
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123437
|
-
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123438
|
-
}> | undefined;
|
|
123439
|
-
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8")[] | undefined;
|
|
123440
|
-
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", string | string[]>> | undefined;
|
|
123441
123593
|
}, {
|
|
123442
123594
|
name?: string | undefined;
|
|
123443
123595
|
key?: any;
|
|
@@ -123452,12 +123604,21 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123452
123604
|
minViaHoleDiameter?: string | number | undefined;
|
|
123453
123605
|
minViaPadDiameter?: string | number | undefined;
|
|
123454
123606
|
autorouter?: AutorouterProp | undefined;
|
|
123607
|
+
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123608
|
+
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123609
|
+
}> | undefined;
|
|
123455
123610
|
fanoutBoundaryPadding?: string | number | {
|
|
123456
123611
|
left?: string | number | undefined;
|
|
123457
123612
|
right?: string | number | undefined;
|
|
123458
123613
|
top?: string | number | undefined;
|
|
123459
123614
|
bottom?: string | number | undefined;
|
|
123460
123615
|
} | undefined;
|
|
123616
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123617
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123618
|
+
})[] | undefined;
|
|
123619
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123620
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123621
|
+
}, string | string[]>> | undefined;
|
|
123461
123622
|
connection?: string | undefined;
|
|
123462
123623
|
phaseIndex?: number | undefined;
|
|
123463
123624
|
region?: {
|
|
@@ -123468,15 +123629,6 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123468
123629
|
shape?: "rect" | undefined;
|
|
123469
123630
|
} | undefined;
|
|
123470
123631
|
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" | {
|
|
123475
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123476
|
-
})[] | undefined;
|
|
123477
|
-
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123478
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123479
|
-
}, string | string[]>> | undefined;
|
|
123480
123632
|
}>;
|
|
123481
123633
|
|
|
123482
123634
|
declare const transistorPinsLabels: readonly ["pin1", "pin2", "pin3", "emitter", "collector", "base", "gate", "source", "drain"];
|
|
@@ -128010,7 +128162,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
128010
128162
|
schSheetName?: string | undefined;
|
|
128011
128163
|
connections?: Partial<Record<"pin1" | "pin2" | "source" | "pin3" | "emitter" | "collector" | "base" | "gate" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
128012
128164
|
}>;
|
|
128013
|
-
declare const transistorPins: readonly ["pin1", "
|
|
128165
|
+
declare const transistorPins: readonly ["pin1", "collector", "pin2", "base", "pin3", "emitter"];
|
|
128014
128166
|
type TransistorPinLabels = (typeof transistorPins)[number];
|
|
128015
128167
|
|
|
128016
128168
|
declare const mosfetPins: readonly ["pin1", "drain", "pin2", "source", "pin3", "gate"];
|
|
@@ -192568,4 +192720,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
192568
192720
|
}
|
|
192569
192721
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
192570
192722
|
|
|
192571
|
-
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 };
|
|
192723
|
+
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 };
|