@tscircuit/props 0.0.594 → 0.0.596

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 CHANGED
@@ -412,6 +412,11 @@ export interface BreakoutProps extends Omit<
412
412
  SubcircuitGroupProps,
413
413
  "subcircuit"
414
414
  > {
415
+ /**
416
+ * Autorouter used to escape the components inside the breakout boundary.
417
+ * Defaults to the multilayer fanout autorouter.
418
+ */
419
+ autorouter?: AutorouterProp;
415
420
  padding?: Distance;
416
421
  paddingLeft?: Distance;
417
422
  paddingRight?: Distance;
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
- type CadModelProp = null | string | ReactElement | CadModelStl | CadModelObj | CadModelGltf | CadModelGlb | CadModelStep | CadModelWrl | CadModelJscad;
1300
- declare const cadModelProp: z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
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.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
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.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
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]>;
@@ -28471,6 +28478,11 @@ declare const subpanelProps: z.ZodObject<Omit<{
28471
28478
  }>;
28472
28479
 
28473
28480
  interface BreakoutProps extends Omit<SubcircuitGroupProps, "subcircuit"> {
28481
+ /**
28482
+ * Autorouter used to escape the components inside the breakout boundary.
28483
+ * Defaults to the multilayer fanout autorouter.
28484
+ */
28485
+ autorouter?: AutorouterProp;
28474
28486
  padding?: Distance;
28475
28487
  paddingLeft?: Distance;
28476
28488
  paddingRight?: Distance;
@@ -29032,7 +29044,6 @@ declare const breakoutProps: z.ZodObject<{
29032
29044
  partsEngine: z.ZodOptional<z.ZodType<PartsEngine, z.ZodTypeDef, PartsEngine>>;
29033
29045
  _subcircuitCachingEnabled: z.ZodOptional<z.ZodBoolean>;
29034
29046
  pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
29035
- autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
29036
29047
  autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
29037
29048
  autorouterVersion: z.ZodOptional<z.ZodEnum<["v1", "v2", "v3", "v4", "v5", "v6", "latest"]>>;
29038
29049
  square: z.ZodOptional<z.ZodBoolean>;
@@ -29237,12 +29248,14 @@ declare const breakoutProps: z.ZodObject<{
29237
29248
  bomDisabled: z.ZodOptional<z.ZodBoolean>;
29238
29249
  defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
29239
29250
  } & {
29251
+ autorouter: z.ZodDefault<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
29240
29252
  padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
29241
29253
  paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
29242
29254
  paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
29243
29255
  paddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
29244
29256
  paddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
29245
29257
  }, "strip", z.ZodTypeAny, {
29258
+ autorouter: AutorouterProp;
29246
29259
  symbol?: SymbolProp | undefined;
29247
29260
  width?: number | undefined;
29248
29261
  height?: number | undefined;
@@ -29502,7 +29515,6 @@ declare const breakoutProps: z.ZodObject<{
29502
29515
  bomDisabled?: boolean | undefined;
29503
29516
  defaultTraceWidth?: number | undefined;
29504
29517
  pcbRouteCache?: PcbRouteCache | undefined;
29505
- autorouter?: AutorouterProp | undefined;
29506
29518
  autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
29507
29519
  autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
29508
29520
  circuitJson?: any[] | undefined;
@@ -30099,7 +30111,7 @@ declare const chipProps: z.ZodObject<{
30099
30111
  schSectionName: z.ZodOptional<z.ZodString>;
30100
30112
  schSheetName: z.ZodOptional<z.ZodString>;
30101
30113
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
30102
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
30114
+ 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<{
30103
30115
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
30104
30116
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
30105
30117
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -35079,7 +35091,7 @@ declare const bugProps: z.ZodObject<{
35079
35091
  schSectionName: z.ZodOptional<z.ZodString>;
35080
35092
  schSheetName: z.ZodOptional<z.ZodString>;
35081
35093
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
35082
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
35094
+ 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<{
35083
35095
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
35084
35096
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
35085
35097
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -40058,7 +40070,7 @@ declare const pinoutProps: z.ZodObject<{
40058
40070
  schSectionName: z.ZodOptional<z.ZodString>;
40059
40071
  schSheetName: z.ZodOptional<z.ZodString>;
40060
40072
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
40061
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
40073
+ 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<{
40062
40074
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
40063
40075
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
40064
40076
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -45070,7 +45082,7 @@ declare const jumperProps: z.ZodObject<{
45070
45082
  schSectionName: z.ZodOptional<z.ZodString>;
45071
45083
  schSheetName: z.ZodOptional<z.ZodString>;
45072
45084
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
45073
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
45085
+ 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<{
45074
45086
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
45075
45087
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
45076
45088
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -50025,7 +50037,7 @@ declare const solderjumperProps: z.ZodObject<{
50025
50037
  schSectionName: z.ZodOptional<z.ZodString>;
50026
50038
  schSheetName: z.ZodOptional<z.ZodString>;
50027
50039
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
50028
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
50040
+ 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<{
50029
50041
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
50030
50042
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
50031
50043
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -54983,7 +54995,7 @@ declare const connectorProps: z.ZodObject<{
54983
54995
  schSectionName: z.ZodOptional<z.ZodString>;
54984
54996
  schSheetName: z.ZodOptional<z.ZodString>;
54985
54997
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
54986
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
54998
+ 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<{
54987
54999
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
54988
55000
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
54989
55001
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -59976,7 +59988,7 @@ declare const interconnectProps: z.ZodObject<{
59976
59988
  schSectionName: z.ZodOptional<z.ZodString>;
59977
59989
  schSheetName: z.ZodOptional<z.ZodString>;
59978
59990
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
59979
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
59991
+ 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<{
59980
59992
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
59981
59993
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
59982
59994
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -64532,7 +64544,7 @@ declare const fuseProps: z.ZodObject<{
64532
64544
  schSectionName: z.ZodOptional<z.ZodString>;
64533
64545
  schSheetName: z.ZodOptional<z.ZodString>;
64534
64546
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
64535
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
64547
+ 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<{
64536
64548
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
64537
64549
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
64538
64550
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -71013,7 +71025,7 @@ declare const resistorProps: z.ZodObject<{
71013
71025
  schSectionName: z.ZodOptional<z.ZodString>;
71014
71026
  schSheetName: z.ZodOptional<z.ZodString>;
71015
71027
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
71016
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
71028
+ 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<{
71017
71029
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
71018
71030
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
71019
71031
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -75570,7 +75582,7 @@ declare const potentiometerProps: z.ZodObject<{
75570
75582
  schSectionName: z.ZodOptional<z.ZodString>;
75571
75583
  schSheetName: z.ZodOptional<z.ZodString>;
75572
75584
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
75573
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
75585
+ 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<{
75574
75586
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
75575
75587
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
75576
75588
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -80111,7 +80123,7 @@ declare const crystalProps: z.ZodObject<{
80111
80123
  schSectionName: z.ZodOptional<z.ZodString>;
80112
80124
  schSheetName: z.ZodOptional<z.ZodString>;
80113
80125
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
80114
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
80126
+ 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<{
80115
80127
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
80116
80128
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
80117
80129
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -84658,7 +84670,7 @@ declare const resonatorProps: z.ZodObject<{
84658
84670
  schSectionName: z.ZodOptional<z.ZodString>;
84659
84671
  schSheetName: z.ZodOptional<z.ZodString>;
84660
84672
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
84661
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
84673
+ 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<{
84662
84674
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
84663
84675
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
84664
84676
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -90715,7 +90727,7 @@ declare const capacitorProps: z.ZodObject<{
90715
90727
  schSectionName: z.ZodOptional<z.ZodString>;
90716
90728
  schSheetName: z.ZodOptional<z.ZodString>;
90717
90729
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
90718
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
90730
+ 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<{
90719
90731
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
90720
90732
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
90721
90733
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -95311,7 +95323,7 @@ declare const fiducialProps: z.ZodObject<{
95311
95323
  schSectionName: z.ZodOptional<z.ZodString>;
95312
95324
  schSheetName: z.ZodOptional<z.ZodString>;
95313
95325
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
95314
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
95326
+ 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<{
95315
95327
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
95316
95328
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
95317
95329
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -104917,7 +104929,7 @@ declare const batteryProps: z.ZodObject<{
104917
104929
  schSectionName: z.ZodOptional<z.ZodString>;
104918
104930
  schSheetName: z.ZodOptional<z.ZodString>;
104919
104931
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
104920
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
104932
+ 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<{
104921
104933
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
104922
104934
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
104923
104935
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -111167,7 +111179,7 @@ declare const pinHeaderProps: z.ZodObject<{
111167
111179
  schSectionName: z.ZodOptional<z.ZodString>;
111168
111180
  schSheetName: z.ZodOptional<z.ZodString>;
111169
111181
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
111170
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
111182
+ 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<{
111171
111183
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
111172
111184
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
111173
111185
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -116031,7 +116043,7 @@ declare const pushButtonProps: z.ZodObject<{
116031
116043
  schSectionName: z.ZodOptional<z.ZodString>;
116032
116044
  schSheetName: z.ZodOptional<z.ZodString>;
116033
116045
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
116034
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
116046
+ 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<{
116035
116047
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
116036
116048
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
116037
116049
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -123408,7 +123420,7 @@ declare const transistorProps: z.ZodObject<{
123408
123420
  schSectionName: z.ZodOptional<z.ZodString>;
123409
123421
  schSheetName: z.ZodOptional<z.ZodString>;
123410
123422
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
123411
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
123423
+ 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<{
123412
123424
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
123413
123425
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
123414
123426
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -127949,7 +127961,7 @@ declare const mosfetProps: z.ZodObject<{
127949
127961
  schSectionName: z.ZodOptional<z.ZodString>;
127950
127962
  schSheetName: z.ZodOptional<z.ZodString>;
127951
127963
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
127952
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
127964
+ 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<{
127953
127965
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
127954
127966
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
127955
127967
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -132498,7 +132510,7 @@ declare const opampProps: z.ZodObject<{
132498
132510
  schSectionName: z.ZodOptional<z.ZodString>;
132499
132511
  schSheetName: z.ZodOptional<z.ZodString>;
132500
132512
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
132501
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
132513
+ 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<{
132502
132514
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
132503
132515
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
132504
132516
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -137034,7 +137046,7 @@ declare const inductorProps: z.ZodObject<{
137034
137046
  schSectionName: z.ZodOptional<z.ZodString>;
137035
137047
  schSheetName: z.ZodOptional<z.ZodString>;
137036
137048
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
137037
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
137049
+ 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<{
137038
137050
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
137039
137051
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
137040
137052
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -141569,7 +141581,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
141569
141581
  schSectionName: z.ZodOptional<z.ZodString>;
141570
141582
  schSheetName: z.ZodOptional<z.ZodString>;
141571
141583
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
141572
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
141584
+ 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<{
141573
141585
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
141574
141586
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
141575
141587
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -148496,7 +148508,7 @@ declare const ledProps: z.ZodObject<{
148496
148508
  schSectionName: z.ZodOptional<z.ZodString>;
148497
148509
  schSheetName: z.ZodOptional<z.ZodString>;
148498
148510
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
148499
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
148511
+ 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<{
148500
148512
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
148501
148513
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
148502
148514
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -153051,7 +153063,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
153051
153063
  schSectionName: z.ZodOptional<z.ZodString>;
153052
153064
  schSheetName: z.ZodOptional<z.ZodString>;
153053
153065
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
153054
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
153066
+ 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<{
153055
153067
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
153056
153068
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
153057
153069
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -159240,7 +159252,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
159240
159252
  schSectionName: z.ZodOptional<z.ZodString>;
159241
159253
  schSheetName: z.ZodOptional<z.ZodString>;
159242
159254
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
159243
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
159255
+ 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<{
159244
159256
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
159245
159257
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
159246
159258
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -166277,7 +166289,7 @@ declare const powerSourceProps: z.ZodObject<{
166277
166289
  schSectionName: z.ZodOptional<z.ZodString>;
166278
166290
  schSheetName: z.ZodOptional<z.ZodString>;
166279
166291
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
166280
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
166292
+ 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<{
166281
166293
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
166282
166294
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
166283
166295
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -170822,7 +170834,7 @@ declare const voltageSourceProps: z.ZodObject<{
170822
170834
  schSectionName: z.ZodOptional<z.ZodString>;
170823
170835
  schSheetName: z.ZodOptional<z.ZodString>;
170824
170836
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
170825
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
170837
+ 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<{
170826
170838
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
170827
170839
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
170828
170840
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -175400,7 +175412,7 @@ declare const currentSourceProps: z.ZodObject<{
175400
175412
  schSectionName: z.ZodOptional<z.ZodString>;
175401
175413
  schSheetName: z.ZodOptional<z.ZodString>;
175402
175414
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
175403
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
175415
+ 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<{
175404
175416
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
175405
175417
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
175406
175418
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -179958,7 +179970,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
179958
179970
  schSectionName: z.ZodOptional<z.ZodString>;
179959
179971
  schSheetName: z.ZodOptional<z.ZodString>;
179960
179972
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
179961
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
179973
+ 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<{
179962
179974
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
179963
179975
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
179964
179976
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -184510,7 +184522,7 @@ declare const ammeterProps: z.ZodObject<{
184510
184522
  schSectionName: z.ZodOptional<z.ZodString>;
184511
184523
  schSheetName: z.ZodOptional<z.ZodString>;
184512
184524
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
184513
- cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
184525
+ 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<{
184514
184526
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
184515
184527
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
184516
184528
  y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -192395,4 +192407,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
192395
192407
  }
192396
192408
  declare const projectConfig: z.ZodType<ProjectConfig>;
192397
192409
 
192398
- 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 };
192410
+ 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
- url,
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
  }),
@@ -16607,6 +16607,7 @@ expectTypesMatch(true);
16607
16607
  import { distance as distance12 } from "circuit-json";
16608
16608
  import "zod";
16609
16609
  var breakoutProps = subcircuitGroupProps.extend({
16610
+ autorouter: autorouterProp.default("fanout"),
16610
16611
  padding: distance12.optional(),
16611
16612
  paddingLeft: distance12.optional(),
16612
16613
  paddingRight: distance12.optional(),