@tscircuit/props 0.0.595 → 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/dist/index.d.ts +42 -35
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/lib/common/cadModel.ts +10 -2
- 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]>;
|
|
@@ -30104,7 +30111,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
30104
30111
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
30105
30112
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
30106
30113
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
30107
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
30108
30115
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
30109
30116
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
30110
30117
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -35084,7 +35091,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
35084
35091
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
35085
35092
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
35086
35093
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
35087
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
35088
35095
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
35089
35096
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
35090
35097
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -40063,7 +40070,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40063
40070
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
40064
40071
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
40065
40072
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
40066
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
40067
40074
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
40068
40075
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
40069
40076
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -45075,7 +45082,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45075
45082
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
45076
45083
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
45077
45084
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
45078
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
45079
45086
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
45080
45087
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
45081
45088
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -50030,7 +50037,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50030
50037
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
50031
50038
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
50032
50039
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
50033
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
50034
50041
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
50035
50042
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
50036
50043
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -54988,7 +54995,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54988
54995
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
54989
54996
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
54990
54997
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
54991
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
54992
54999
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
54993
55000
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
54994
55001
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -59981,7 +59988,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59981
59988
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
59982
59989
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
59983
59990
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
59984
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
59985
59992
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
59986
59993
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
59987
59994
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -64537,7 +64544,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
64537
64544
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
64538
64545
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
64539
64546
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
64540
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
64541
64548
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
64542
64549
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
64543
64550
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -71018,7 +71025,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
71018
71025
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
71019
71026
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
71020
71027
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
71021
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
71022
71029
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
71023
71030
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
71024
71031
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -75575,7 +75582,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
75575
75582
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
75576
75583
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
75577
75584
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
75578
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
75579
75586
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
75580
75587
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
75581
75588
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -80116,7 +80123,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
80116
80123
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
80117
80124
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
80118
80125
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
80119
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
80120
80127
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
80121
80128
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
80122
80129
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -84663,7 +84670,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
84663
84670
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
84664
84671
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
84665
84672
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
84666
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
84667
84674
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
84668
84675
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
84669
84676
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -90720,7 +90727,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
90720
90727
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
90721
90728
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
90722
90729
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
90723
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
90724
90731
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
90725
90732
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
90726
90733
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -95316,7 +95323,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
95316
95323
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
95317
95324
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
95318
95325
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
95319
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
95320
95327
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
95321
95328
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
95322
95329
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -104922,7 +104929,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
104922
104929
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
104923
104930
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
104924
104931
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
104925
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
104926
104933
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
104927
104934
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
104928
104935
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -111172,7 +111179,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
111172
111179
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
111173
111180
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
111174
111181
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
111175
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
111176
111183
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
111177
111184
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
111178
111185
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -116036,7 +116043,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
116036
116043
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
116037
116044
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
116038
116045
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
116039
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
116040
116047
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
116041
116048
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
116042
116049
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -123413,7 +123420,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
123413
123420
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
123414
123421
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
123415
123422
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
123416
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
123417
123424
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
123418
123425
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
123419
123426
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -127954,7 +127961,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
127954
127961
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
127955
127962
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
127956
127963
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
127957
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
127958
127965
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
127959
127966
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
127960
127967
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -132503,7 +132510,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
132503
132510
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
132504
132511
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
132505
132512
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
132506
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
132507
132514
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
132508
132515
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
132509
132516
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -137039,7 +137046,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
137039
137046
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
137040
137047
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
137041
137048
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
137042
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
137043
137050
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
137044
137051
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
137045
137052
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -141574,7 +141581,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
141574
141581
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
141575
141582
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
141576
141583
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
141577
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
141578
141585
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
141579
141586
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
141580
141587
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -148501,7 +148508,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
148501
148508
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
148502
148509
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
148503
148510
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
148504
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
148505
148512
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
148506
148513
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
148507
148514
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -153056,7 +153063,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
153056
153063
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
153057
153064
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
153058
153065
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
153059
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
153060
153067
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
153061
153068
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
153062
153069
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -159245,7 +159252,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
159245
159252
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
159246
159253
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
159247
159254
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
159248
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
159249
159256
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
159250
159257
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
159251
159258
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -166282,7 +166289,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
166282
166289
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
166283
166290
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
166284
166291
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
166285
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
166286
166293
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
166287
166294
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
166288
166295
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -170827,7 +170834,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
170827
170834
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
170828
170835
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
170829
170836
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
170830
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
170831
170838
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
170832
170839
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
170833
170840
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -175405,7 +175412,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
175405
175412
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
175406
175413
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
175407
175414
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
175408
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
175409
175416
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
175410
175417
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
175411
175418
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -179963,7 +179970,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
179963
179970
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
179964
179971
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
179965
179972
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
179966
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
179967
179974
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
179968
179975
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
179969
179976
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -184515,7 +184522,7 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
184515
184522
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
184516
184523
|
schSheetName: z.ZodOptional<z.ZodString>;
|
|
184517
184524
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
184518
|
-
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.
|
|
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<{
|
|
184519
184526
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
184520
184527
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
184521
184528
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -192400,4 +192407,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
192400
192407
|
}
|
|
192401
192408
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
192402
192409
|
|
|
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 };
|
|
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