@tscircuit/props 0.0.600 → 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 +231 -114
- package/dist/index.js +710 -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/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
|
/**
|
|
@@ -104781,27 +104947,6 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104781
104947
|
}>]>;
|
|
104782
104948
|
type TraceProps = z.input<typeof traceProps>;
|
|
104783
104949
|
|
|
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
104950
|
/**
|
|
104806
104951
|
* Defines matched routing constraints for two named traces that form a
|
|
104807
104952
|
* differential pair. Both connections must refer to trace `name` values.
|
|
@@ -123243,11 +123388,7 @@ declare const analogSweepParameterProps: z.ZodEffects<z.ZodDiscriminatedUnion<"p
|
|
|
123243
123388
|
step?: string | number | undefined;
|
|
123244
123389
|
}>;
|
|
123245
123390
|
|
|
123246
|
-
|
|
123247
|
-
direction: NinePointAnchor;
|
|
123248
|
-
};
|
|
123249
|
-
type FanoutPourNetMap = Partial<Record<Extract<LayerRef, string>, string | string[]>>;
|
|
123250
|
-
interface AutoroutingPhaseProps extends RoutingTolerances {
|
|
123391
|
+
interface AutoroutingPhaseProps extends RoutingTolerances, FanoutProps {
|
|
123251
123392
|
key?: any;
|
|
123252
123393
|
name?: string;
|
|
123253
123394
|
autorouter?: AutorouterProp;
|
|
@@ -123262,54 +123403,8 @@ interface AutoroutingPhaseProps extends RoutingTolerances {
|
|
|
123262
123403
|
connection?: string;
|
|
123263
123404
|
connections?: string[];
|
|
123264
123405
|
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
123406
|
}
|
|
123290
123407
|
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
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<{
|
|
123314
123409
|
direction: z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>;
|
|
123315
123410
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -123351,6 +123446,28 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123351
123446
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123352
123447
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123353
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>;
|
|
123354
123471
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
123355
123472
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
123356
123473
|
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -123378,12 +123495,17 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123378
123495
|
minViaHoleDiameter?: number | undefined;
|
|
123379
123496
|
minViaPadDiameter?: number | undefined;
|
|
123380
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;
|
|
123381
123501
|
fanoutBoundaryPadding?: number | {
|
|
123382
123502
|
left?: number | undefined;
|
|
123383
123503
|
right?: number | undefined;
|
|
123384
123504
|
top?: number | undefined;
|
|
123385
123505
|
bottom?: number | undefined;
|
|
123386
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;
|
|
123387
123509
|
connection?: string | undefined;
|
|
123388
123510
|
phaseIndex?: number | undefined;
|
|
123389
123511
|
region?: {
|
|
@@ -123394,11 +123516,6 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123394
123516
|
shape?: "rect" | undefined;
|
|
123395
123517
|
} | undefined;
|
|
123396
123518
|
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
123519
|
}, {
|
|
123403
123520
|
name?: string | undefined;
|
|
123404
123521
|
key?: any;
|
|
@@ -123413,12 +123530,21 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123413
123530
|
minViaHoleDiameter?: string | number | undefined;
|
|
123414
123531
|
minViaPadDiameter?: string | number | undefined;
|
|
123415
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;
|
|
123416
123536
|
fanoutBoundaryPadding?: string | number | {
|
|
123417
123537
|
left?: string | number | undefined;
|
|
123418
123538
|
right?: string | number | undefined;
|
|
123419
123539
|
top?: string | number | undefined;
|
|
123420
123540
|
bottom?: string | number | undefined;
|
|
123421
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;
|
|
123422
123548
|
connection?: string | undefined;
|
|
123423
123549
|
phaseIndex?: number | undefined;
|
|
123424
123550
|
region?: {
|
|
@@ -123429,15 +123555,6 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123429
123555
|
shape?: "rect" | undefined;
|
|
123430
123556
|
} | undefined;
|
|
123431
123557
|
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
123558
|
}>, {
|
|
123442
123559
|
name?: string | undefined;
|
|
123443
123560
|
key?: any;
|
|
@@ -123452,12 +123569,17 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123452
123569
|
minViaHoleDiameter?: number | undefined;
|
|
123453
123570
|
minViaPadDiameter?: number | undefined;
|
|
123454
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;
|
|
123455
123575
|
fanoutBoundaryPadding?: number | {
|
|
123456
123576
|
left?: number | undefined;
|
|
123457
123577
|
right?: number | undefined;
|
|
123458
123578
|
top?: number | undefined;
|
|
123459
123579
|
bottom?: number | undefined;
|
|
123460
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;
|
|
123461
123583
|
connection?: string | undefined;
|
|
123462
123584
|
phaseIndex?: number | undefined;
|
|
123463
123585
|
region?: {
|
|
@@ -123468,11 +123590,6 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123468
123590
|
shape?: "rect" | undefined;
|
|
123469
123591
|
} | undefined;
|
|
123470
123592
|
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
123593
|
}, {
|
|
123477
123594
|
name?: string | undefined;
|
|
123478
123595
|
key?: any;
|
|
@@ -123487,12 +123604,21 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123487
123604
|
minViaHoleDiameter?: string | number | undefined;
|
|
123488
123605
|
minViaPadDiameter?: string | number | undefined;
|
|
123489
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;
|
|
123490
123610
|
fanoutBoundaryPadding?: string | number | {
|
|
123491
123611
|
left?: string | number | undefined;
|
|
123492
123612
|
right?: string | number | undefined;
|
|
123493
123613
|
top?: string | number | undefined;
|
|
123494
123614
|
bottom?: string | number | undefined;
|
|
123495
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;
|
|
123496
123622
|
connection?: string | undefined;
|
|
123497
123623
|
phaseIndex?: number | undefined;
|
|
123498
123624
|
region?: {
|
|
@@ -123503,15 +123629,6 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123503
123629
|
shape?: "rect" | undefined;
|
|
123504
123630
|
} | undefined;
|
|
123505
123631
|
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
123632
|
}>;
|
|
123516
123633
|
|
|
123517
123634
|
declare const transistorPinsLabels: readonly ["pin1", "pin2", "pin3", "emitter", "collector", "base", "gate", "source", "drain"];
|
|
@@ -192603,4 +192720,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
192603
192720
|
}
|
|
192604
192721
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
192605
192722
|
|
|
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 };
|
|
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 };
|