@tscircuit/props 0.0.616 → 0.0.618
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 +2 -1
- package/dist/index.d.ts +35 -29
- package/dist/index.js +156 -137
- package/dist/index.js.map +1 -1
- package/lib/components/capacitor.ts +4 -3
- package/lib/components/group.ts +44 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -513,7 +513,8 @@ export interface CapacitorProps<
|
|
|
513
513
|
decouplingTo?: string;
|
|
514
514
|
bypassFor?: string;
|
|
515
515
|
bypassTo?: string;
|
|
516
|
-
|
|
516
|
+
/** Maximum allowed PCB trace length between this capacitor and the component it decouples */
|
|
517
|
+
maxDecouplingTraceLength?: number | string;
|
|
517
518
|
schOrientation?: SchematicOrientation;
|
|
518
519
|
schSize?: SchematicSymbolSize;
|
|
519
520
|
connections?: Connections<CapacitorPinLabels>;
|
package/dist/index.d.ts
CHANGED
|
@@ -18232,6 +18232,7 @@ declare const autorouterConfig: z.ZodObject<{
|
|
|
18232
18232
|
declare const autorouterPreset: z.ZodUnion<[z.ZodLiteral<"sequential_trace">, z.ZodLiteral<"subcircuit">, z.ZodLiteral<"default">, z.ZodLiteral<"auto">, z.ZodLiteral<"auto_local">, z.ZodLiteral<"auto_cloud">, z.ZodLiteral<"auto_jumper">, z.ZodLiteral<"tscircuit_beta">, z.ZodLiteral<"krt">, z.ZodLiteral<"freerouting">, z.ZodLiteral<"laser_prefab">, z.ZodLiteral<"single_layer_fanout">, z.ZodLiteral<"fanout">, z.ZodLiteral<"auto-jumper">, z.ZodLiteral<"sequential-trace">, z.ZodLiteral<"auto-local">, z.ZodLiteral<"auto-cloud">]>;
|
|
18233
18233
|
declare const autorouterProp: z.ZodType<AutorouterProp>;
|
|
18234
18234
|
declare const autorouterEffortLevel: z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>;
|
|
18235
|
+
type AutorouterVersion = "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest";
|
|
18235
18236
|
interface SubcircuitGroupProps extends BaseGroupProps, RoutingTolerances {
|
|
18236
18237
|
manualEdits?: ManualEditsFileInput;
|
|
18237
18238
|
routingDisabled?: boolean;
|
|
@@ -18247,7 +18248,11 @@ interface SubcircuitGroupProps extends BaseGroupProps, RoutingTolerances {
|
|
|
18247
18248
|
pcbRouteCache?: PcbRouteCache;
|
|
18248
18249
|
autorouter?: AutorouterProp;
|
|
18249
18250
|
autorouterEffortLevel?: "1x" | "2x" | "5x" | "10x" | "100x";
|
|
18250
|
-
|
|
18251
|
+
/**
|
|
18252
|
+
* Selects the local autorouting pipeline. Unknown string values emit a
|
|
18253
|
+
* warning and fall back to `latest`.
|
|
18254
|
+
*/
|
|
18255
|
+
autorouterVersion?: "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest" | (string & {});
|
|
18251
18256
|
/**
|
|
18252
18257
|
* Serialized circuit JSON describing a precompiled subcircuit
|
|
18253
18258
|
*/
|
|
@@ -19937,7 +19942,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
19937
19942
|
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
19938
19943
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
19939
19944
|
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
19940
|
-
autorouterVersion: z.ZodOptional<z.
|
|
19945
|
+
autorouterVersion: z.ZodOptional<z.ZodEffects<z.ZodType<AutocompleteString<AutorouterVersion>, z.ZodTypeDef, AutocompleteString<AutorouterVersion>>, "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest", AutocompleteString<AutorouterVersion>>>;
|
|
19941
19946
|
square: z.ZodOptional<z.ZodBoolean>;
|
|
19942
19947
|
emptyArea: z.ZodOptional<z.ZodString>;
|
|
19943
19948
|
filledArea: z.ZodOptional<z.ZodString>;
|
|
@@ -20403,7 +20408,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20403
20408
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
20404
20409
|
autorouter?: AutorouterProp | undefined;
|
|
20405
20410
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
20406
|
-
autorouterVersion?: "
|
|
20411
|
+
autorouterVersion?: "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest" | undefined;
|
|
20407
20412
|
circuitJson?: any[] | undefined;
|
|
20408
20413
|
exposedNets?: string[] | undefined;
|
|
20409
20414
|
exposeNets?: boolean | undefined;
|
|
@@ -20726,7 +20731,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20726
20731
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
20727
20732
|
autorouter?: AutorouterProp | undefined;
|
|
20728
20733
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
20729
|
-
autorouterVersion?:
|
|
20734
|
+
autorouterVersion?: AutocompleteString<AutorouterVersion> | undefined;
|
|
20730
20735
|
circuitJson?: any[] | undefined;
|
|
20731
20736
|
exposedNets?: string[] | undefined;
|
|
20732
20737
|
exposeNets?: boolean | undefined;
|
|
@@ -21346,7 +21351,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21346
21351
|
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
21347
21352
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
21348
21353
|
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
21349
|
-
autorouterVersion: z.ZodOptional<z.
|
|
21354
|
+
autorouterVersion: z.ZodOptional<z.ZodEffects<z.ZodType<AutocompleteString<AutorouterVersion>, z.ZodTypeDef, AutocompleteString<AutorouterVersion>>, "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest", AutocompleteString<AutorouterVersion>>>;
|
|
21350
21355
|
square: z.ZodOptional<z.ZodBoolean>;
|
|
21351
21356
|
emptyArea: z.ZodOptional<z.ZodString>;
|
|
21352
21357
|
filledArea: z.ZodOptional<z.ZodString>;
|
|
@@ -21815,7 +21820,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21815
21820
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
21816
21821
|
autorouter?: AutorouterProp | undefined;
|
|
21817
21822
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
21818
|
-
autorouterVersion?: "
|
|
21823
|
+
autorouterVersion?: "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest" | undefined;
|
|
21819
21824
|
circuitJson?: any[] | undefined;
|
|
21820
21825
|
exposedNets?: string[] | undefined;
|
|
21821
21826
|
exposeNets?: boolean | undefined;
|
|
@@ -22139,7 +22144,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
22139
22144
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
22140
22145
|
autorouter?: AutorouterProp | undefined;
|
|
22141
22146
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
22142
|
-
autorouterVersion?:
|
|
22147
|
+
autorouterVersion?: AutocompleteString<AutorouterVersion> | undefined;
|
|
22143
22148
|
circuitJson?: any[] | undefined;
|
|
22144
22149
|
exposedNets?: string[] | undefined;
|
|
22145
22150
|
exposeNets?: boolean | undefined;
|
|
@@ -23842,7 +23847,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
23842
23847
|
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
23843
23848
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
23844
23849
|
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
23845
|
-
autorouterVersion: z.ZodOptional<z.
|
|
23850
|
+
autorouterVersion: z.ZodOptional<z.ZodEffects<z.ZodType<AutocompleteString<AutorouterVersion>, z.ZodTypeDef, AutocompleteString<AutorouterVersion>>, "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest", AutocompleteString<AutorouterVersion>>>;
|
|
23846
23851
|
square: z.ZodOptional<z.ZodBoolean>;
|
|
23847
23852
|
emptyArea: z.ZodOptional<z.ZodString>;
|
|
23848
23853
|
filledArea: z.ZodOptional<z.ZodString>;
|
|
@@ -24311,7 +24316,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
24311
24316
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
24312
24317
|
autorouter?: AutorouterProp | undefined;
|
|
24313
24318
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
24314
|
-
autorouterVersion?: "
|
|
24319
|
+
autorouterVersion?: "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest" | undefined;
|
|
24315
24320
|
circuitJson?: any[] | undefined;
|
|
24316
24321
|
exposedNets?: string[] | undefined;
|
|
24317
24322
|
exposeNets?: boolean | undefined;
|
|
@@ -24635,7 +24640,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
24635
24640
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
24636
24641
|
autorouter?: AutorouterProp | undefined;
|
|
24637
24642
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
24638
|
-
autorouterVersion?:
|
|
24643
|
+
autorouterVersion?: AutocompleteString<AutorouterVersion> | undefined;
|
|
24639
24644
|
circuitJson?: any[] | undefined;
|
|
24640
24645
|
exposedNets?: string[] | undefined;
|
|
24641
24646
|
exposeNets?: boolean | undefined;
|
|
@@ -25288,7 +25293,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25288
25293
|
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
25289
25294
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
25290
25295
|
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
25291
|
-
autorouterVersion: z.ZodOptional<z.
|
|
25296
|
+
autorouterVersion: z.ZodOptional<z.ZodEffects<z.ZodType<AutocompleteString<AutorouterVersion>, z.ZodTypeDef, AutocompleteString<AutorouterVersion>>, "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest", AutocompleteString<AutorouterVersion>>>;
|
|
25292
25297
|
square: z.ZodOptional<z.ZodBoolean>;
|
|
25293
25298
|
emptyArea: z.ZodOptional<z.ZodString>;
|
|
25294
25299
|
filledArea: z.ZodOptional<z.ZodString>;
|
|
@@ -25784,7 +25789,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25784
25789
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
25785
25790
|
autorouter?: AutorouterProp | undefined;
|
|
25786
25791
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
25787
|
-
autorouterVersion?: "
|
|
25792
|
+
autorouterVersion?: "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest" | undefined;
|
|
25788
25793
|
circuitJson?: any[] | undefined;
|
|
25789
25794
|
exposedNets?: string[] | undefined;
|
|
25790
25795
|
exposeNets?: boolean | undefined;
|
|
@@ -26124,7 +26129,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
26124
26129
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
26125
26130
|
autorouter?: AutorouterProp | undefined;
|
|
26126
26131
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
26127
|
-
autorouterVersion?:
|
|
26132
|
+
autorouterVersion?: AutocompleteString<AutorouterVersion> | undefined;
|
|
26128
26133
|
circuitJson?: any[] | undefined;
|
|
26129
26134
|
exposedNets?: string[] | undefined;
|
|
26130
26135
|
exposeNets?: boolean | undefined;
|
|
@@ -29269,7 +29274,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29269
29274
|
_subcircuitCachingEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
29270
29275
|
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
29271
29276
|
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
29272
|
-
autorouterVersion: z.ZodOptional<z.
|
|
29277
|
+
autorouterVersion: z.ZodOptional<z.ZodEffects<z.ZodType<AutocompleteString<AutorouterVersion>, z.ZodTypeDef, AutocompleteString<AutorouterVersion>>, "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest", AutocompleteString<AutorouterVersion>>>;
|
|
29273
29278
|
square: z.ZodOptional<z.ZodBoolean>;
|
|
29274
29279
|
emptyArea: z.ZodOptional<z.ZodString>;
|
|
29275
29280
|
filledArea: z.ZodOptional<z.ZodString>;
|
|
@@ -29783,7 +29788,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29783
29788
|
defaultTraceWidth?: number | undefined;
|
|
29784
29789
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
29785
29790
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
29786
|
-
autorouterVersion?: "
|
|
29791
|
+
autorouterVersion?: "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest" | undefined;
|
|
29787
29792
|
circuitJson?: any[] | undefined;
|
|
29788
29793
|
exposedNets?: string[] | undefined;
|
|
29789
29794
|
exposeNets?: boolean | undefined;
|
|
@@ -30117,7 +30122,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
30117
30122
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
30118
30123
|
autorouter?: AutorouterProp | undefined;
|
|
30119
30124
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
30120
|
-
autorouterVersion?:
|
|
30125
|
+
autorouterVersion?: AutocompleteString<AutorouterVersion> | undefined;
|
|
30121
30126
|
circuitJson?: any[] | undefined;
|
|
30122
30127
|
exposedNets?: string[] | undefined;
|
|
30123
30128
|
exposeNets?: boolean | undefined;
|
|
@@ -89972,7 +89977,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89972
89977
|
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
89973
89978
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
89974
89979
|
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
89975
|
-
autorouterVersion: z.ZodOptional<z.
|
|
89980
|
+
autorouterVersion: z.ZodOptional<z.ZodEffects<z.ZodType<AutocompleteString<AutorouterVersion>, z.ZodTypeDef, AutocompleteString<AutorouterVersion>>, "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest", AutocompleteString<AutorouterVersion>>>;
|
|
89976
89981
|
square: z.ZodOptional<z.ZodBoolean>;
|
|
89977
89982
|
emptyArea: z.ZodOptional<z.ZodString>;
|
|
89978
89983
|
filledArea: z.ZodOptional<z.ZodString>;
|
|
@@ -90483,7 +90488,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
90483
90488
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
90484
90489
|
autorouter?: AutorouterProp | undefined;
|
|
90485
90490
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
90486
|
-
autorouterVersion?: "
|
|
90491
|
+
autorouterVersion?: "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest" | undefined;
|
|
90487
90492
|
circuitJson?: any[] | undefined;
|
|
90488
90493
|
exposedNets?: string[] | undefined;
|
|
90489
90494
|
exposeNets?: boolean | undefined;
|
|
@@ -90833,7 +90838,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
90833
90838
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
90834
90839
|
autorouter?: AutorouterProp | undefined;
|
|
90835
90840
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
90836
|
-
autorouterVersion?:
|
|
90841
|
+
autorouterVersion?: AutocompleteString<AutorouterVersion> | undefined;
|
|
90837
90842
|
circuitJson?: any[] | undefined;
|
|
90838
90843
|
exposedNets?: string[] | undefined;
|
|
90839
90844
|
exposeNets?: boolean | undefined;
|
|
@@ -90926,7 +90931,8 @@ interface CapacitorProps<PinLabel extends string = string> extends CommonCompone
|
|
|
90926
90931
|
decouplingTo?: string;
|
|
90927
90932
|
bypassFor?: string;
|
|
90928
90933
|
bypassTo?: string;
|
|
90929
|
-
|
|
90934
|
+
/** Maximum allowed PCB trace length between this capacitor and the component it decouples */
|
|
90935
|
+
maxDecouplingTraceLength?: number | string;
|
|
90930
90936
|
schOrientation?: SchematicOrientation;
|
|
90931
90937
|
schSize?: SchematicSymbolSize;
|
|
90932
90938
|
connections?: Connections<CapacitorPinLabels>;
|
|
@@ -94299,7 +94305,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
94299
94305
|
decouplingTo: z.ZodOptional<z.ZodString>;
|
|
94300
94306
|
bypassFor: z.ZodOptional<z.ZodString>;
|
|
94301
94307
|
bypassTo: z.ZodOptional<z.ZodString>;
|
|
94302
|
-
maxDecouplingTraceLength: z.ZodOptional<z.ZodNumber
|
|
94308
|
+
maxDecouplingTraceLength: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
94303
94309
|
schOrientation: z.ZodOptional<z.ZodEnum<["vertical", "horizontal", "pos_top", "pos_bottom", "pos_left", "pos_right", "neg_top", "neg_bottom", "neg_left", "neg_right"]>>;
|
|
94304
94310
|
schSize: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodEnum<["xs", "sm", "default", "md"]>]>>;
|
|
94305
94311
|
connections: z.ZodOptional<z.ZodRecord<z.ZodEnum<["pin1", "pin2", "pos", "neg", "anode", "cathode"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -95484,7 +95490,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
95484
95490
|
decouplingTo?: string | undefined;
|
|
95485
95491
|
bypassFor?: string | undefined;
|
|
95486
95492
|
bypassTo?: string | undefined;
|
|
95487
|
-
maxDecouplingTraceLength?: number | undefined;
|
|
95493
|
+
maxDecouplingTraceLength?: string | number | undefined;
|
|
95488
95494
|
}>;
|
|
95489
95495
|
declare const capacitorPins: readonly ["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"];
|
|
95490
95496
|
|
|
@@ -110634,7 +110640,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
110634
110640
|
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
110635
110641
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
110636
110642
|
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
110637
|
-
autorouterVersion: z.ZodOptional<z.
|
|
110643
|
+
autorouterVersion: z.ZodOptional<z.ZodEffects<z.ZodType<AutocompleteString<AutorouterVersion>, z.ZodTypeDef, AutocompleteString<AutorouterVersion>>, "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest", AutocompleteString<AutorouterVersion>>>;
|
|
110638
110644
|
square: z.ZodOptional<z.ZodBoolean>;
|
|
110639
110645
|
emptyArea: z.ZodOptional<z.ZodString>;
|
|
110640
110646
|
filledArea: z.ZodOptional<z.ZodString>;
|
|
@@ -111245,7 +111251,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
111245
111251
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
111246
111252
|
autorouter?: AutorouterProp | undefined;
|
|
111247
111253
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
111248
|
-
autorouterVersion?: "
|
|
111254
|
+
autorouterVersion?: "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest" | undefined;
|
|
111249
111255
|
circuitJson?: any[] | undefined;
|
|
111250
111256
|
exposedNets?: string[] | undefined;
|
|
111251
111257
|
exposeNets?: boolean | undefined;
|
|
@@ -111607,7 +111613,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
111607
111613
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
111608
111614
|
autorouter?: AutorouterProp | undefined;
|
|
111609
111615
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
111610
|
-
autorouterVersion?:
|
|
111616
|
+
autorouterVersion?: AutocompleteString<AutorouterVersion> | undefined;
|
|
111611
111617
|
circuitJson?: any[] | undefined;
|
|
111612
111618
|
exposedNets?: string[] | undefined;
|
|
111613
111619
|
exposeNets?: boolean | undefined;
|
|
@@ -122192,7 +122198,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
122192
122198
|
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
122193
122199
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
122194
122200
|
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
122195
|
-
autorouterVersion: z.ZodOptional<z.
|
|
122201
|
+
autorouterVersion: z.ZodOptional<z.ZodEffects<z.ZodType<AutocompleteString<AutorouterVersion>, z.ZodTypeDef, AutocompleteString<AutorouterVersion>>, "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest", AutocompleteString<AutorouterVersion>>>;
|
|
122196
122202
|
square: z.ZodOptional<z.ZodBoolean>;
|
|
122197
122203
|
emptyArea: z.ZodOptional<z.ZodString>;
|
|
122198
122204
|
filledArea: z.ZodOptional<z.ZodString>;
|
|
@@ -122658,7 +122664,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
122658
122664
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
122659
122665
|
autorouter?: AutorouterProp | undefined;
|
|
122660
122666
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
122661
|
-
autorouterVersion?: "
|
|
122667
|
+
autorouterVersion?: "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest" | undefined;
|
|
122662
122668
|
circuitJson?: any[] | undefined;
|
|
122663
122669
|
exposedNets?: string[] | undefined;
|
|
122664
122670
|
exposeNets?: boolean | undefined;
|
|
@@ -122981,7 +122987,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
122981
122987
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
122982
122988
|
autorouter?: AutorouterProp | undefined;
|
|
122983
122989
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
122984
|
-
autorouterVersion?:
|
|
122990
|
+
autorouterVersion?: AutocompleteString<AutorouterVersion> | undefined;
|
|
122985
122991
|
circuitJson?: any[] | undefined;
|
|
122986
122992
|
exposedNets?: string[] | undefined;
|
|
122987
122993
|
exposeNets?: boolean | undefined;
|
|
@@ -193215,4 +193221,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
193215
193221
|
}
|
|
193216
193222
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
193217
193223
|
|
|
193218
|
-
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 LocalCacheEngine, 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 RotatedPillSmtPadProps, 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, diodePinLabelsProp, 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, rotatedPillSmtPadProps, 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 };
|
|
193224
|
+
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 AutorouterVersion, 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 LocalCacheEngine, 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 RotatedPillSmtPadProps, 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, diodePinLabelsProp, 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, rotatedPillSmtPadProps, 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 };
|