@tscircuit/props 0.0.595 → 0.0.597
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +46 -35
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/lib/common/cadModel.ts +10 -2
- package/lib/common/fanoutBoundaryPadding.ts +35 -0
- package/lib/components/autoroutingphase.ts +10 -0
- package/lib/components/breakout.ts +12 -2
- package/lib/components/group.ts +7 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1296,8 +1296,15 @@ declare const cadModelJscad: z.ZodObject<{
|
|
|
1296
1296
|
showAsTranslucentModel?: boolean | undefined;
|
|
1297
1297
|
stepUrl?: string | undefined;
|
|
1298
1298
|
}>;
|
|
1299
|
-
|
|
1300
|
-
|
|
1299
|
+
/**
|
|
1300
|
+
* A Footprinter string used to procedurally generate the component's CAD model,
|
|
1301
|
+
* independently of the component's PCB footprint.
|
|
1302
|
+
*
|
|
1303
|
+
* @example "soic8"
|
|
1304
|
+
*/
|
|
1305
|
+
type CadModelFootprinterString = string;
|
|
1306
|
+
type CadModelProp = null | ReactElement | CadModelFootprinterString | CadModelStl | CadModelObj | CadModelGltf | CadModelGlb | CadModelStep | CadModelWrl | CadModelJscad;
|
|
1307
|
+
declare const cadModelProp: z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
1301
1308
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
1302
1309
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1303
1310
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -7497,7 +7504,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
7497
7504
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
7498
7505
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
7499
7506
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
7500
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
7507
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
7501
7508
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
7502
7509
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
7503
7510
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -12015,7 +12022,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
12015
12022
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
12016
12023
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
12017
12024
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
12018
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
12025
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
12019
12026
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
12020
12027
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
12021
12028
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -18143,6 +18150,7 @@ interface AutorouterConfig {
|
|
|
18143
18150
|
cache?: PcbRouteCache;
|
|
18144
18151
|
traceClearance?: Distance;
|
|
18145
18152
|
availableJumperTypes?: Array<"1206x4" | "0603">;
|
|
18153
|
+
allowViaInPad?: boolean;
|
|
18146
18154
|
groupMode?: "sequential_trace" | "subcircuit" | /** @deprecated Use "sequential_trace" */ "sequential-trace";
|
|
18147
18155
|
local?: boolean;
|
|
18148
18156
|
algorithmFn?: (simpleRouteJson: any) => Promise<any>;
|
|
@@ -18189,6 +18197,7 @@ declare const autorouterConfig: z.ZodObject<{
|
|
|
18189
18197
|
cache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
18190
18198
|
traceClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
18191
18199
|
availableJumperTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["1206x4", "0603"]>, "many">>;
|
|
18200
|
+
allowViaInPad: z.ZodOptional<z.ZodBoolean>;
|
|
18192
18201
|
groupMode: z.ZodOptional<z.ZodEnum<["sequential_trace", "subcircuit", "sequential-trace"]>>;
|
|
18193
18202
|
algorithmFn: z.ZodOptional<z.ZodType<(simpleRouteJson: any) => Promise<any>, z.ZodTypeDef, (simpleRouteJson: any) => Promise<any>>>;
|
|
18194
18203
|
preset: z.ZodOptional<z.ZodEnum<["sequential_trace", "subcircuit", "default", "auto", "auto_local", "auto_cloud", "auto_jumper", "tscircuit_beta", "krt", "freerouting", "laser_prefab", "single_layer_fanout", "fanout", "auto-jumper", "sequential-trace", "auto-local", "auto-cloud"]>>;
|
|
@@ -18201,6 +18210,7 @@ declare const autorouterConfig: z.ZodObject<{
|
|
|
18201
18210
|
cache?: PcbRouteCache | undefined;
|
|
18202
18211
|
traceClearance?: number | undefined;
|
|
18203
18212
|
availableJumperTypes?: ("0603" | "1206x4")[] | undefined;
|
|
18213
|
+
allowViaInPad?: boolean | undefined;
|
|
18204
18214
|
groupMode?: "sequential_trace" | "subcircuit" | "sequential-trace" | undefined;
|
|
18205
18215
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
18206
18216
|
preset?: "default" | "auto" | "sequential_trace" | "subcircuit" | "sequential-trace" | "auto_local" | "auto_cloud" | "auto_jumper" | "tscircuit_beta" | "krt" | "freerouting" | "laser_prefab" | "single_layer_fanout" | "fanout" | "auto-jumper" | "auto-local" | "auto-cloud" | undefined;
|
|
@@ -18213,6 +18223,7 @@ declare const autorouterConfig: z.ZodObject<{
|
|
|
18213
18223
|
cache?: PcbRouteCache | undefined;
|
|
18214
18224
|
traceClearance?: string | number | undefined;
|
|
18215
18225
|
availableJumperTypes?: ("0603" | "1206x4")[] | undefined;
|
|
18226
|
+
allowViaInPad?: boolean | undefined;
|
|
18216
18227
|
groupMode?: "sequential_trace" | "subcircuit" | "sequential-trace" | undefined;
|
|
18217
18228
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
18218
18229
|
preset?: "default" | "auto" | "sequential_trace" | "subcircuit" | "sequential-trace" | "auto_local" | "auto_cloud" | "auto_jumper" | "tscircuit_beta" | "krt" | "freerouting" | "laser_prefab" | "single_layer_fanout" | "fanout" | "auto-jumper" | "auto-local" | "auto-cloud" | undefined;
|
|
@@ -30104,7 +30115,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
30104
30115
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
30105
30116
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
30106
30117
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
30107
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
30118
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
30108
30119
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
30109
30120
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
30110
30121
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -35084,7 +35095,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
35084
35095
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
35085
35096
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
35086
35097
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
35087
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
35098
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
35088
35099
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
35089
35100
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
35090
35101
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -40063,7 +40074,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40063
40074
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
40064
40075
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
40065
40076
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
40066
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
40077
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
40067
40078
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
40068
40079
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
40069
40080
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -45075,7 +45086,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45075
45086
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
45076
45087
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
45077
45088
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
45078
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
45089
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
45079
45090
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
45080
45091
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
45081
45092
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -50030,7 +50041,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50030
50041
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
50031
50042
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
50032
50043
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
50033
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
50044
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
50034
50045
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
50035
50046
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
50036
50047
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -54988,7 +54999,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54988
54999
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
54989
55000
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
54990
55001
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
54991
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
55002
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
54992
55003
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
54993
55004
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
54994
55005
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -59981,7 +59992,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59981
59992
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
59982
59993
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
59983
59994
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
59984
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
59995
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
59985
59996
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
59986
59997
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
59987
59998
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -64537,7 +64548,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
64537
64548
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
64538
64549
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
64539
64550
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
64540
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
64551
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
64541
64552
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
64542
64553
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
64543
64554
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -71018,7 +71029,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
71018
71029
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
71019
71030
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
71020
71031
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
71021
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
71032
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
71022
71033
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
71023
71034
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
71024
71035
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -75575,7 +75586,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
75575
75586
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
75576
75587
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
75577
75588
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
75578
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
75589
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
75579
75590
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
75580
75591
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
75581
75592
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -80116,7 +80127,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
80116
80127
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
80117
80128
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
80118
80129
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
80119
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
80130
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
80120
80131
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
80121
80132
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
80122
80133
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -84663,7 +84674,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
84663
84674
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
84664
84675
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
84665
84676
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
84666
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
84677
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
84667
84678
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
84668
84679
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
84669
84680
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -90720,7 +90731,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
90720
90731
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
90721
90732
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
90722
90733
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
90723
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
90734
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
90724
90735
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
90725
90736
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
90726
90737
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -95316,7 +95327,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
95316
95327
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
95317
95328
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
95318
95329
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
95319
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
95330
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
95320
95331
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
95321
95332
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
95322
95333
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -104922,7 +104933,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
104922
104933
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
104923
104934
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
104924
104935
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
104925
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
104936
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
104926
104937
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
104927
104938
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
104928
104939
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -111172,7 +111183,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
111172
111183
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
111173
111184
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
111174
111185
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
111175
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
111186
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
111176
111187
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
111177
111188
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
111178
111189
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -116036,7 +116047,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
116036
116047
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
116037
116048
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
116038
116049
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
116039
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
116050
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
116040
116051
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
116041
116052
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
116042
116053
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -123413,7 +123424,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
123413
123424
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
123414
123425
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
123415
123426
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
123416
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
123427
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
123417
123428
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
123418
123429
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
123419
123430
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -127954,7 +127965,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
127954
127965
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
127955
127966
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
127956
127967
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
127957
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
127968
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
127958
127969
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
127959
127970
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
127960
127971
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -132503,7 +132514,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
132503
132514
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
132504
132515
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
132505
132516
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
132506
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
132517
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
132507
132518
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
132508
132519
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
132509
132520
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -137039,7 +137050,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
137039
137050
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
137040
137051
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
137041
137052
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
137042
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
137053
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
137043
137054
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
137044
137055
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
137045
137056
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -141574,7 +141585,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
141574
141585
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
141575
141586
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
141576
141587
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
141577
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
141588
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
141578
141589
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
141579
141590
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
141580
141591
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -148501,7 +148512,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
148501
148512
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
148502
148513
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
148503
148514
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
148504
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
148515
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
148505
148516
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
148506
148517
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
148507
148518
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -153056,7 +153067,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
153056
153067
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
153057
153068
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
153058
153069
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
153059
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
153070
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
153060
153071
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
153061
153072
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
153062
153073
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -159245,7 +159256,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
159245
159256
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
159246
159257
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
159247
159258
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
159248
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
159259
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
159249
159260
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
159250
159261
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
159251
159262
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -166282,7 +166293,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
166282
166293
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
166283
166294
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
166284
166295
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
166285
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
166296
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
166286
166297
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
166287
166298
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
166288
166299
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -170827,7 +170838,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
170827
170838
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
170828
170839
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
170829
170840
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
170830
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
170841
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
170831
170842
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
170832
170843
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
170833
170844
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -175405,7 +175416,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
175405
175416
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
175406
175417
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
175407
175418
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
175408
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
175419
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
175409
175420
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
175410
175421
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
175411
175422
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -179963,7 +179974,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
179963
179974
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
179964
179975
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
179965
179976
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
179966
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
179977
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
179967
179978
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
179968
179979
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
179969
179980
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -184515,7 +184526,7 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
184515
184526
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
184516
184527
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
184517
184528
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
184518
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
184529
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
184519
184530
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
184520
184531
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
184521
184532
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -192400,4 +192411,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
192400
192411
|
}
|
|
192401
192412
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
192402
192413
|
|
|
192403
|
-
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 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 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 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, 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 };
|
|
192414
|
+
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 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 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, 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 };
|
package/dist/index.js
CHANGED
|
@@ -179,7 +179,7 @@ var cadModelJscad = cadModelBase.extend({
|
|
|
179
179
|
});
|
|
180
180
|
var cadModelProp = z10.union([
|
|
181
181
|
z10.null(),
|
|
182
|
-
|
|
182
|
+
z10.string().min(1),
|
|
183
183
|
z10.custom((v) => {
|
|
184
184
|
return v && typeof v === "object" && "type" in v && "props" in v;
|
|
185
185
|
}),
|
|
@@ -16353,6 +16353,9 @@ var autorouterConfig = z41.object({
|
|
|
16353
16353
|
cache: z41.custom((v) => true).optional(),
|
|
16354
16354
|
traceClearance: length3.optional(),
|
|
16355
16355
|
availableJumperTypes: z41.array(z41.enum(["1206x4", "0603"])).optional(),
|
|
16356
|
+
allowViaInPad: z41.boolean().optional().describe(
|
|
16357
|
+
"Allows the autorouter to place vias inside connected pads. Omitted or false keeps via-in-pad routing disabled."
|
|
16358
|
+
),
|
|
16356
16359
|
groupMode: z41.enum(["sequential_trace", "subcircuit", "sequential-trace"]).optional(),
|
|
16357
16360
|
algorithmFn: z41.custom(
|
|
16358
16361
|
(v) => typeof v === "function" || v === void 0
|