@tscircuit/props 0.0.520 → 0.0.522
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 +16 -0
- package/dist/index.d.ts +146 -1
- package/dist/index.js +127 -112
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +10 -0
- package/lib/components/group.ts +2 -0
- package/lib/components/schematic-section.ts +20 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7103,6 +7103,10 @@ interface CommonComponentProps<PinLabel extends string = string> extends CommonL
|
|
|
7103
7103
|
showAsTranslucentModel?: boolean;
|
|
7104
7104
|
mfn?: string;
|
|
7105
7105
|
manufacturerPartNumber?: string;
|
|
7106
|
+
/**
|
|
7107
|
+
*This component will be drawn as part of this section e.g. \"Power\
|
|
7108
|
+
*/
|
|
7109
|
+
schSectionName?: string;
|
|
7106
7110
|
}
|
|
7107
7111
|
declare const commonComponentProps: z.ZodObject<{
|
|
7108
7112
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -7197,6 +7201,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
7197
7201
|
key: z.ZodOptional<z.ZodAny>;
|
|
7198
7202
|
name: z.ZodString;
|
|
7199
7203
|
displayName: z.ZodOptional<z.ZodString>;
|
|
7204
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
7200
7205
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
7201
7206
|
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<{
|
|
7202
7207
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -11037,6 +11042,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
11037
11042
|
obstructsWithinBounds?: boolean | undefined;
|
|
11038
11043
|
mfn?: string | undefined;
|
|
11039
11044
|
manufacturerPartNumber?: string | undefined;
|
|
11045
|
+
schSectionName?: string | undefined;
|
|
11040
11046
|
}, {
|
|
11041
11047
|
name: string;
|
|
11042
11048
|
symbol?: SymbolProp | undefined;
|
|
@@ -11615,6 +11621,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
11615
11621
|
obstructsWithinBounds?: boolean | undefined;
|
|
11616
11622
|
mfn?: string | undefined;
|
|
11617
11623
|
manufacturerPartNumber?: string | undefined;
|
|
11624
|
+
schSectionName?: string | undefined;
|
|
11618
11625
|
}>;
|
|
11619
11626
|
declare const componentProps: z.ZodObject<{
|
|
11620
11627
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -11709,6 +11716,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
11709
11716
|
key: z.ZodOptional<z.ZodAny>;
|
|
11710
11717
|
name: z.ZodString;
|
|
11711
11718
|
displayName: z.ZodOptional<z.ZodString>;
|
|
11719
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
11712
11720
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
11713
11721
|
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<{
|
|
11714
11722
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -15549,6 +15557,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
15549
15557
|
obstructsWithinBounds?: boolean | undefined;
|
|
15550
15558
|
mfn?: string | undefined;
|
|
15551
15559
|
manufacturerPartNumber?: string | undefined;
|
|
15560
|
+
schSectionName?: string | undefined;
|
|
15552
15561
|
}, {
|
|
15553
15562
|
name: string;
|
|
15554
15563
|
symbol?: SymbolProp | undefined;
|
|
@@ -16127,6 +16136,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
16127
16136
|
obstructsWithinBounds?: boolean | undefined;
|
|
16128
16137
|
mfn?: string | undefined;
|
|
16129
16138
|
manufacturerPartNumber?: string | undefined;
|
|
16139
|
+
schSectionName?: string | undefined;
|
|
16130
16140
|
}>;
|
|
16131
16141
|
type ComponentProps = z.input<typeof componentProps>;
|
|
16132
16142
|
declare const lrPins: readonly ["pin1", "left", "pin2", "right"];
|
|
@@ -17836,6 +17846,7 @@ interface SubcircuitGroupProps extends BaseGroupProps {
|
|
|
17836
17846
|
minTraceToPadEdgeClearance?: Distance;
|
|
17837
17847
|
minPadEdgeToPadEdgeClearance?: Distance;
|
|
17838
17848
|
minBoardEdgeClearance?: Distance;
|
|
17849
|
+
minViaEdgeToPadEdgeClearance?: Distance;
|
|
17839
17850
|
minViaHoleDiameter?: Distance;
|
|
17840
17851
|
minViaPadDiameter?: Distance;
|
|
17841
17852
|
nominalTraceWidth?: Distance;
|
|
@@ -19688,6 +19699,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
19688
19699
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19689
19700
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19690
19701
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19702
|
+
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19691
19703
|
minPlatedHoleDrillEdgeToDrillEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19692
19704
|
minTraceToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19693
19705
|
minPadEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -20011,6 +20023,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20011
20023
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
20012
20024
|
schMaxTraceDistance?: number | undefined;
|
|
20013
20025
|
minViaHoleEdgeToViaHoleEdgeClearance?: number | undefined;
|
|
20026
|
+
minViaEdgeToPadEdgeClearance?: number | undefined;
|
|
20014
20027
|
minPlatedHoleDrillEdgeToDrillEdgeClearance?: number | undefined;
|
|
20015
20028
|
minTraceToPadEdgeClearance?: number | undefined;
|
|
20016
20029
|
minPadEdgeToPadEdgeClearance?: number | undefined;
|
|
@@ -20329,6 +20342,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20329
20342
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
20330
20343
|
schMaxTraceDistance?: string | number | undefined;
|
|
20331
20344
|
minViaHoleEdgeToViaHoleEdgeClearance?: string | number | undefined;
|
|
20345
|
+
minViaEdgeToPadEdgeClearance?: string | number | undefined;
|
|
20332
20346
|
minPlatedHoleDrillEdgeToDrillEdgeClearance?: string | number | undefined;
|
|
20333
20347
|
minTraceToPadEdgeClearance?: string | number | undefined;
|
|
20334
20348
|
minPadEdgeToPadEdgeClearance?: string | number | undefined;
|
|
@@ -21082,6 +21096,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21082
21096
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21083
21097
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21084
21098
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21099
|
+
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21085
21100
|
minPlatedHoleDrillEdgeToDrillEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21086
21101
|
minTraceToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21087
21102
|
minPadEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -21408,6 +21423,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21408
21423
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
21409
21424
|
schMaxTraceDistance?: number | undefined;
|
|
21410
21425
|
minViaHoleEdgeToViaHoleEdgeClearance?: number | undefined;
|
|
21426
|
+
minViaEdgeToPadEdgeClearance?: number | undefined;
|
|
21411
21427
|
minPlatedHoleDrillEdgeToDrillEdgeClearance?: number | undefined;
|
|
21412
21428
|
minTraceToPadEdgeClearance?: number | undefined;
|
|
21413
21429
|
minPadEdgeToPadEdgeClearance?: number | undefined;
|
|
@@ -21727,6 +21743,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21727
21743
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
21728
21744
|
schMaxTraceDistance?: string | number | undefined;
|
|
21729
21745
|
minViaHoleEdgeToViaHoleEdgeClearance?: string | number | undefined;
|
|
21746
|
+
minViaEdgeToPadEdgeClearance?: string | number | undefined;
|
|
21730
21747
|
minPlatedHoleDrillEdgeToDrillEdgeClearance?: string | number | undefined;
|
|
21731
21748
|
minTraceToPadEdgeClearance?: string | number | undefined;
|
|
21732
21749
|
minPadEdgeToPadEdgeClearance?: string | number | undefined;
|
|
@@ -23560,6 +23577,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
23560
23577
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23561
23578
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23562
23579
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23580
|
+
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23563
23581
|
minPlatedHoleDrillEdgeToDrillEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23564
23582
|
minTraceToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23565
23583
|
minPadEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -23886,6 +23904,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
23886
23904
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
23887
23905
|
schMaxTraceDistance?: number | undefined;
|
|
23888
23906
|
minViaHoleEdgeToViaHoleEdgeClearance?: number | undefined;
|
|
23907
|
+
minViaEdgeToPadEdgeClearance?: number | undefined;
|
|
23889
23908
|
minPlatedHoleDrillEdgeToDrillEdgeClearance?: number | undefined;
|
|
23890
23909
|
minTraceToPadEdgeClearance?: number | undefined;
|
|
23891
23910
|
minPadEdgeToPadEdgeClearance?: number | undefined;
|
|
@@ -24205,6 +24224,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
24205
24224
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
24206
24225
|
schMaxTraceDistance?: string | number | undefined;
|
|
24207
24226
|
minViaHoleEdgeToViaHoleEdgeClearance?: string | number | undefined;
|
|
24227
|
+
minViaEdgeToPadEdgeClearance?: string | number | undefined;
|
|
24208
24228
|
minPlatedHoleDrillEdgeToDrillEdgeClearance?: string | number | undefined;
|
|
24209
24229
|
minTraceToPadEdgeClearance?: string | number | undefined;
|
|
24210
24230
|
minPadEdgeToPadEdgeClearance?: string | number | undefined;
|
|
@@ -24989,6 +25009,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
24989
25009
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24990
25010
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24991
25011
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25012
|
+
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24992
25013
|
minPlatedHoleDrillEdgeToDrillEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24993
25014
|
minTraceToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24994
25015
|
minPadEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -25341,6 +25362,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25341
25362
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
25342
25363
|
schMaxTraceDistance?: number | undefined;
|
|
25343
25364
|
minViaHoleEdgeToViaHoleEdgeClearance?: number | undefined;
|
|
25365
|
+
minViaEdgeToPadEdgeClearance?: number | undefined;
|
|
25344
25366
|
minPlatedHoleDrillEdgeToDrillEdgeClearance?: number | undefined;
|
|
25345
25367
|
minTraceToPadEdgeClearance?: number | undefined;
|
|
25346
25368
|
minPadEdgeToPadEdgeClearance?: number | undefined;
|
|
@@ -25675,6 +25697,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25675
25697
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
25676
25698
|
schMaxTraceDistance?: string | number | undefined;
|
|
25677
25699
|
minViaHoleEdgeToViaHoleEdgeClearance?: string | number | undefined;
|
|
25700
|
+
minViaEdgeToPadEdgeClearance?: string | number | undefined;
|
|
25678
25701
|
minPlatedHoleDrillEdgeToDrillEdgeClearance?: string | number | undefined;
|
|
25679
25702
|
minTraceToPadEdgeClearance?: string | number | undefined;
|
|
25680
25703
|
minPadEdgeToPadEdgeClearance?: string | number | undefined;
|
|
@@ -28745,6 +28768,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
28745
28768
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28746
28769
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28747
28770
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28771
|
+
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28748
28772
|
minPlatedHoleDrillEdgeToDrillEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28749
28773
|
minTraceToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28750
28774
|
minPadEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -29074,6 +29098,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29074
29098
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
29075
29099
|
schMaxTraceDistance?: number | undefined;
|
|
29076
29100
|
minViaHoleEdgeToViaHoleEdgeClearance?: number | undefined;
|
|
29101
|
+
minViaEdgeToPadEdgeClearance?: number | undefined;
|
|
29077
29102
|
minPlatedHoleDrillEdgeToDrillEdgeClearance?: number | undefined;
|
|
29078
29103
|
minTraceToPadEdgeClearance?: number | undefined;
|
|
29079
29104
|
minPadEdgeToPadEdgeClearance?: number | undefined;
|
|
@@ -29392,6 +29417,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29392
29417
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
29393
29418
|
schMaxTraceDistance?: string | number | undefined;
|
|
29394
29419
|
minViaHoleEdgeToViaHoleEdgeClearance?: string | number | undefined;
|
|
29420
|
+
minViaEdgeToPadEdgeClearance?: string | number | undefined;
|
|
29395
29421
|
minPlatedHoleDrillEdgeToDrillEdgeClearance?: string | number | undefined;
|
|
29396
29422
|
minTraceToPadEdgeClearance?: string | number | undefined;
|
|
29397
29423
|
minPadEdgeToPadEdgeClearance?: string | number | undefined;
|
|
@@ -29584,6 +29610,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
29584
29610
|
key: z.ZodOptional<z.ZodAny>;
|
|
29585
29611
|
name: z.ZodString;
|
|
29586
29612
|
displayName: z.ZodOptional<z.ZodString>;
|
|
29613
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
29587
29614
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
29588
29615
|
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<{
|
|
29589
29616
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -33722,6 +33749,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
33722
33749
|
obstructsWithinBounds?: boolean | undefined;
|
|
33723
33750
|
mfn?: string | undefined;
|
|
33724
33751
|
manufacturerPartNumber?: string | undefined;
|
|
33752
|
+
schSectionName?: string | undefined;
|
|
33725
33753
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
33726
33754
|
schPinArrangement?: {
|
|
33727
33755
|
leftSize?: number | undefined;
|
|
@@ -34377,6 +34405,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
34377
34405
|
obstructsWithinBounds?: boolean | undefined;
|
|
34378
34406
|
mfn?: string | undefined;
|
|
34379
34407
|
manufacturerPartNumber?: string | undefined;
|
|
34408
|
+
schSectionName?: string | undefined;
|
|
34380
34409
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
34381
34410
|
schPinArrangement?: {
|
|
34382
34411
|
leftSize?: number | undefined;
|
|
@@ -34549,6 +34578,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
34549
34578
|
key: z.ZodOptional<z.ZodAny>;
|
|
34550
34579
|
name: z.ZodString;
|
|
34551
34580
|
displayName: z.ZodOptional<z.ZodString>;
|
|
34581
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
34552
34582
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
34553
34583
|
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<{
|
|
34554
34584
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -38687,6 +38717,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
38687
38717
|
obstructsWithinBounds?: boolean | undefined;
|
|
38688
38718
|
mfn?: string | undefined;
|
|
38689
38719
|
manufacturerPartNumber?: string | undefined;
|
|
38720
|
+
schSectionName?: string | undefined;
|
|
38690
38721
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
38691
38722
|
schPinArrangement?: {
|
|
38692
38723
|
leftSize?: number | undefined;
|
|
@@ -39342,6 +39373,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
39342
39373
|
obstructsWithinBounds?: boolean | undefined;
|
|
39343
39374
|
mfn?: string | undefined;
|
|
39344
39375
|
manufacturerPartNumber?: string | undefined;
|
|
39376
|
+
schSectionName?: string | undefined;
|
|
39345
39377
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
39346
39378
|
schPinArrangement?: {
|
|
39347
39379
|
leftSize?: number | undefined;
|
|
@@ -39513,6 +39545,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39513
39545
|
key: z.ZodOptional<z.ZodAny>;
|
|
39514
39546
|
name: z.ZodString;
|
|
39515
39547
|
displayName: z.ZodOptional<z.ZodString>;
|
|
39548
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
39516
39549
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
39517
39550
|
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<{
|
|
39518
39551
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -43651,6 +43684,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
43651
43684
|
obstructsWithinBounds?: boolean | undefined;
|
|
43652
43685
|
mfn?: string | undefined;
|
|
43653
43686
|
manufacturerPartNumber?: string | undefined;
|
|
43687
|
+
schSectionName?: string | undefined;
|
|
43654
43688
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
43655
43689
|
schPinArrangement?: {
|
|
43656
43690
|
leftSize?: number | undefined;
|
|
@@ -44306,6 +44340,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
44306
44340
|
obstructsWithinBounds?: boolean | undefined;
|
|
44307
44341
|
mfn?: string | undefined;
|
|
44308
44342
|
manufacturerPartNumber?: string | undefined;
|
|
44343
|
+
schSectionName?: string | undefined;
|
|
44309
44344
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
44310
44345
|
schPinArrangement?: {
|
|
44311
44346
|
leftSize?: number | undefined;
|
|
@@ -44510,6 +44545,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44510
44545
|
key: z.ZodOptional<z.ZodAny>;
|
|
44511
44546
|
name: z.ZodString;
|
|
44512
44547
|
displayName: z.ZodOptional<z.ZodString>;
|
|
44548
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
44513
44549
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
44514
44550
|
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<{
|
|
44515
44551
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -48636,6 +48672,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
48636
48672
|
obstructsWithinBounds?: boolean | undefined;
|
|
48637
48673
|
mfn?: string | undefined;
|
|
48638
48674
|
manufacturerPartNumber?: string | undefined;
|
|
48675
|
+
schSectionName?: string | undefined;
|
|
48639
48676
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
48640
48677
|
schPinArrangement?: {
|
|
48641
48678
|
leftSize?: number | undefined;
|
|
@@ -49285,6 +49322,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
49285
49322
|
obstructsWithinBounds?: boolean | undefined;
|
|
49286
49323
|
mfn?: string | undefined;
|
|
49287
49324
|
manufacturerPartNumber?: string | undefined;
|
|
49325
|
+
schSectionName?: string | undefined;
|
|
49288
49326
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
49289
49327
|
schPinArrangement?: {
|
|
49290
49328
|
leftSize?: number | undefined;
|
|
@@ -49459,6 +49497,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49459
49497
|
key: z.ZodOptional<z.ZodAny>;
|
|
49460
49498
|
name: z.ZodString;
|
|
49461
49499
|
displayName: z.ZodOptional<z.ZodString>;
|
|
49500
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
49462
49501
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
49463
49502
|
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<{
|
|
49464
49503
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -53588,6 +53627,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
53588
53627
|
obstructsWithinBounds?: boolean | undefined;
|
|
53589
53628
|
mfn?: string | undefined;
|
|
53590
53629
|
manufacturerPartNumber?: string | undefined;
|
|
53630
|
+
schSectionName?: string | undefined;
|
|
53591
53631
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
53592
53632
|
schPinArrangement?: {
|
|
53593
53633
|
leftSize?: number | undefined;
|
|
@@ -54239,6 +54279,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
54239
54279
|
obstructsWithinBounds?: boolean | undefined;
|
|
54240
54280
|
mfn?: string | undefined;
|
|
54241
54281
|
manufacturerPartNumber?: string | undefined;
|
|
54282
|
+
schSectionName?: string | undefined;
|
|
54242
54283
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
54243
54284
|
schPinArrangement?: {
|
|
54244
54285
|
leftSize?: number | undefined;
|
|
@@ -54411,6 +54452,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54411
54452
|
key: z.ZodOptional<z.ZodAny>;
|
|
54412
54453
|
name: z.ZodString;
|
|
54413
54454
|
displayName: z.ZodOptional<z.ZodString>;
|
|
54455
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
54414
54456
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
54415
54457
|
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<{
|
|
54416
54458
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -58551,6 +58593,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
58551
58593
|
obstructsWithinBounds?: boolean | undefined;
|
|
58552
58594
|
mfn?: string | undefined;
|
|
58553
58595
|
manufacturerPartNumber?: string | undefined;
|
|
58596
|
+
schSectionName?: string | undefined;
|
|
58554
58597
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
58555
58598
|
schPinArrangement?: {
|
|
58556
58599
|
leftSize?: number | undefined;
|
|
@@ -59207,6 +59250,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
59207
59250
|
obstructsWithinBounds?: boolean | undefined;
|
|
59208
59251
|
mfn?: string | undefined;
|
|
59209
59252
|
manufacturerPartNumber?: string | undefined;
|
|
59253
|
+
schSectionName?: string | undefined;
|
|
59210
59254
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
59211
59255
|
schPinArrangement?: {
|
|
59212
59256
|
leftSize?: number | undefined;
|
|
@@ -59389,6 +59433,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59389
59433
|
key: z.ZodOptional<z.ZodAny>;
|
|
59390
59434
|
name: z.ZodString;
|
|
59391
59435
|
displayName: z.ZodOptional<z.ZodString>;
|
|
59436
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
59392
59437
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
59393
59438
|
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<{
|
|
59394
59439
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -63233,6 +63278,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
63233
63278
|
obstructsWithinBounds?: boolean | undefined;
|
|
63234
63279
|
mfn?: string | undefined;
|
|
63235
63280
|
manufacturerPartNumber?: string | undefined;
|
|
63281
|
+
schSectionName?: string | undefined;
|
|
63236
63282
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
63237
63283
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
63238
63284
|
standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
|
|
@@ -63814,6 +63860,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
63814
63860
|
obstructsWithinBounds?: boolean | undefined;
|
|
63815
63861
|
mfn?: string | undefined;
|
|
63816
63862
|
manufacturerPartNumber?: string | undefined;
|
|
63863
|
+
schSectionName?: string | undefined;
|
|
63817
63864
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
63818
63865
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
63819
63866
|
standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
|
|
@@ -63939,6 +63986,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63939
63986
|
key: z.ZodOptional<z.ZodAny>;
|
|
63940
63987
|
name: z.ZodString;
|
|
63941
63988
|
displayName: z.ZodOptional<z.ZodString>;
|
|
63989
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
63942
63990
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
63943
63991
|
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<{
|
|
63944
63992
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -67786,6 +67834,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
67786
67834
|
obstructsWithinBounds?: boolean | undefined;
|
|
67787
67835
|
mfn?: string | undefined;
|
|
67788
67836
|
manufacturerPartNumber?: string | undefined;
|
|
67837
|
+
schSectionName?: string | undefined;
|
|
67789
67838
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
67790
67839
|
voltageRating?: string | number | undefined;
|
|
67791
67840
|
schShowRatings?: boolean | undefined;
|
|
@@ -68369,6 +68418,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
68369
68418
|
obstructsWithinBounds?: boolean | undefined;
|
|
68370
68419
|
mfn?: string | undefined;
|
|
68371
68420
|
manufacturerPartNumber?: string | undefined;
|
|
68421
|
+
schSectionName?: string | undefined;
|
|
68372
68422
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
68373
68423
|
voltageRating?: string | number | undefined;
|
|
68374
68424
|
schShowRatings?: boolean | undefined;
|
|
@@ -70417,6 +70467,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
70417
70467
|
key: z.ZodOptional<z.ZodAny>;
|
|
70418
70468
|
name: z.ZodString;
|
|
70419
70469
|
displayName: z.ZodOptional<z.ZodString>;
|
|
70470
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
70420
70471
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
70421
70472
|
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<{
|
|
70422
70473
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -74268,6 +74319,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
74268
74319
|
obstructsWithinBounds?: boolean | undefined;
|
|
74269
74320
|
mfn?: string | undefined;
|
|
74270
74321
|
manufacturerPartNumber?: string | undefined;
|
|
74322
|
+
schSectionName?: string | undefined;
|
|
74271
74323
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
74272
74324
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
74273
74325
|
tolerance?: number | undefined;
|
|
@@ -74855,6 +74907,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
74855
74907
|
obstructsWithinBounds?: boolean | undefined;
|
|
74856
74908
|
mfn?: string | undefined;
|
|
74857
74909
|
manufacturerPartNumber?: string | undefined;
|
|
74910
|
+
schSectionName?: string | undefined;
|
|
74858
74911
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
74859
74912
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
74860
74913
|
tolerance?: string | number | undefined;
|
|
@@ -74967,6 +75020,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
74967
75020
|
key: z.ZodOptional<z.ZodAny>;
|
|
74968
75021
|
name: z.ZodString;
|
|
74969
75022
|
displayName: z.ZodOptional<z.ZodString>;
|
|
75023
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
74970
75024
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
74971
75025
|
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<{
|
|
74972
75026
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -78812,6 +78866,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
78812
78866
|
obstructsWithinBounds?: boolean | undefined;
|
|
78813
78867
|
mfn?: string | undefined;
|
|
78814
78868
|
manufacturerPartNumber?: string | undefined;
|
|
78869
|
+
schSectionName?: string | undefined;
|
|
78815
78870
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3", string | readonly string[] | string[]>> | undefined;
|
|
78816
78871
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
78817
78872
|
}, {
|
|
@@ -79393,6 +79448,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
79393
79448
|
obstructsWithinBounds?: boolean | undefined;
|
|
79394
79449
|
mfn?: string | undefined;
|
|
79395
79450
|
manufacturerPartNumber?: string | undefined;
|
|
79451
|
+
schSectionName?: string | undefined;
|
|
79396
79452
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3", string | readonly string[] | string[]>> | undefined;
|
|
79397
79453
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
79398
79454
|
}>;
|
|
@@ -79500,6 +79556,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
79500
79556
|
key: z.ZodOptional<z.ZodAny>;
|
|
79501
79557
|
name: z.ZodString;
|
|
79502
79558
|
displayName: z.ZodOptional<z.ZodString>;
|
|
79559
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
79503
79560
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
79504
79561
|
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<{
|
|
79505
79562
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -83349,6 +83406,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
83349
83406
|
obstructsWithinBounds?: boolean | undefined;
|
|
83350
83407
|
mfn?: string | undefined;
|
|
83351
83408
|
manufacturerPartNumber?: string | undefined;
|
|
83409
|
+
schSectionName?: string | undefined;
|
|
83352
83410
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
83353
83411
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
83354
83412
|
pinVariant?: "two_pin" | "four_pin" | undefined;
|
|
@@ -83933,6 +83991,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
83933
83991
|
obstructsWithinBounds?: boolean | undefined;
|
|
83934
83992
|
mfn?: string | undefined;
|
|
83935
83993
|
manufacturerPartNumber?: string | undefined;
|
|
83994
|
+
schSectionName?: string | undefined;
|
|
83936
83995
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
83937
83996
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
83938
83997
|
pinVariant?: "two_pin" | "four_pin" | undefined;
|
|
@@ -84038,6 +84097,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
84038
84097
|
key: z.ZodOptional<z.ZodAny>;
|
|
84039
84098
|
name: z.ZodString;
|
|
84040
84099
|
displayName: z.ZodOptional<z.ZodString>;
|
|
84100
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
84041
84101
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
84042
84102
|
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<{
|
|
84043
84103
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -87884,6 +87944,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
87884
87944
|
obstructsWithinBounds?: boolean | undefined;
|
|
87885
87945
|
mfn?: string | undefined;
|
|
87886
87946
|
manufacturerPartNumber?: string | undefined;
|
|
87947
|
+
schSectionName?: string | undefined;
|
|
87887
87948
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
87888
87949
|
}, {
|
|
87889
87950
|
name: string;
|
|
@@ -88465,6 +88526,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
88465
88526
|
obstructsWithinBounds?: boolean | undefined;
|
|
88466
88527
|
mfn?: string | undefined;
|
|
88467
88528
|
manufacturerPartNumber?: string | undefined;
|
|
88529
|
+
schSectionName?: string | undefined;
|
|
88468
88530
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
88469
88531
|
}>;
|
|
88470
88532
|
|
|
@@ -89210,6 +89272,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89210
89272
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
89211
89273
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
89212
89274
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
89275
|
+
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
89213
89276
|
minPlatedHoleDrillEdgeToDrillEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
89214
89277
|
minTraceToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
89215
89278
|
minPadEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -89577,6 +89640,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89577
89640
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
89578
89641
|
schMaxTraceDistance?: number | undefined;
|
|
89579
89642
|
minViaHoleEdgeToViaHoleEdgeClearance?: number | undefined;
|
|
89643
|
+
minViaEdgeToPadEdgeClearance?: number | undefined;
|
|
89580
89644
|
minPlatedHoleDrillEdgeToDrillEdgeClearance?: number | undefined;
|
|
89581
89645
|
minTraceToPadEdgeClearance?: number | undefined;
|
|
89582
89646
|
minPadEdgeToPadEdgeClearance?: number | undefined;
|
|
@@ -89921,6 +89985,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89921
89985
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
89922
89986
|
schMaxTraceDistance?: string | number | undefined;
|
|
89923
89987
|
minViaHoleEdgeToViaHoleEdgeClearance?: string | number | undefined;
|
|
89988
|
+
minViaEdgeToPadEdgeClearance?: string | number | undefined;
|
|
89924
89989
|
minPlatedHoleDrillEdgeToDrillEdgeClearance?: string | number | undefined;
|
|
89925
89990
|
minTraceToPadEdgeClearance?: string | number | undefined;
|
|
89926
89991
|
minPadEdgeToPadEdgeClearance?: string | number | undefined;
|
|
@@ -90077,6 +90142,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
90077
90142
|
key: z.ZodOptional<z.ZodAny>;
|
|
90078
90143
|
name: z.ZodString;
|
|
90079
90144
|
displayName: z.ZodOptional<z.ZodString>;
|
|
90145
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
90080
90146
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
90081
90147
|
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<{
|
|
90082
90148
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -93933,6 +93999,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
93933
93999
|
obstructsWithinBounds?: boolean | undefined;
|
|
93934
94000
|
mfn?: string | undefined;
|
|
93935
94001
|
manufacturerPartNumber?: string | undefined;
|
|
94002
|
+
schSectionName?: string | undefined;
|
|
93936
94003
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
93937
94004
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
93938
94005
|
schSize?: number | "default" | "xs" | "sm" | "md" | undefined;
|
|
@@ -94521,6 +94588,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
94521
94588
|
obstructsWithinBounds?: boolean | undefined;
|
|
94522
94589
|
mfn?: string | undefined;
|
|
94523
94590
|
manufacturerPartNumber?: string | undefined;
|
|
94591
|
+
schSectionName?: string | undefined;
|
|
94524
94592
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
94525
94593
|
schShowRatings?: boolean | undefined;
|
|
94526
94594
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -94663,6 +94731,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
94663
94731
|
key: z.ZodOptional<z.ZodAny>;
|
|
94664
94732
|
name: z.ZodString;
|
|
94665
94733
|
displayName: z.ZodOptional<z.ZodString>;
|
|
94734
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
94666
94735
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
94667
94736
|
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<{
|
|
94668
94737
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -98506,6 +98575,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
98506
98575
|
obstructsWithinBounds?: boolean | undefined;
|
|
98507
98576
|
mfn?: string | undefined;
|
|
98508
98577
|
manufacturerPartNumber?: string | undefined;
|
|
98578
|
+
schSectionName?: string | undefined;
|
|
98509
98579
|
padDiameter?: number | undefined;
|
|
98510
98580
|
soldermaskPullback?: number | undefined;
|
|
98511
98581
|
}, {
|
|
@@ -99086,6 +99156,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
99086
99156
|
obstructsWithinBounds?: boolean | undefined;
|
|
99087
99157
|
mfn?: string | undefined;
|
|
99088
99158
|
manufacturerPartNumber?: string | undefined;
|
|
99159
|
+
schSectionName?: string | undefined;
|
|
99089
99160
|
padDiameter?: string | number | undefined;
|
|
99090
99161
|
soldermaskPullback?: string | number | undefined;
|
|
99091
99162
|
}>;
|
|
@@ -104012,6 +104083,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
104012
104083
|
key: z.ZodOptional<z.ZodAny>;
|
|
104013
104084
|
name: z.ZodString;
|
|
104014
104085
|
displayName: z.ZodOptional<z.ZodString>;
|
|
104086
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
104015
104087
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
104016
104088
|
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<{
|
|
104017
104089
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -107857,6 +107929,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
107857
107929
|
obstructsWithinBounds?: boolean | undefined;
|
|
107858
107930
|
mfn?: string | undefined;
|
|
107859
107931
|
manufacturerPartNumber?: string | undefined;
|
|
107932
|
+
schSectionName?: string | undefined;
|
|
107860
107933
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
107861
107934
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
107862
107935
|
capacity?: number | undefined;
|
|
@@ -108439,6 +108512,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
108439
108512
|
obstructsWithinBounds?: boolean | undefined;
|
|
108440
108513
|
mfn?: string | undefined;
|
|
108441
108514
|
manufacturerPartNumber?: string | undefined;
|
|
108515
|
+
schSectionName?: string | undefined;
|
|
108442
108516
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
108443
108517
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
108444
108518
|
capacity?: string | number | undefined;
|
|
@@ -109182,6 +109256,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
109182
109256
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
109183
109257
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
109184
109258
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
109259
|
+
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
109185
109260
|
minPlatedHoleDrillEdgeToDrillEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
109186
109261
|
minTraceToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
109187
109262
|
minPadEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -109650,6 +109725,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
109650
109725
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
109651
109726
|
schMaxTraceDistance?: number | undefined;
|
|
109652
109727
|
minViaHoleEdgeToViaHoleEdgeClearance?: number | undefined;
|
|
109728
|
+
minViaEdgeToPadEdgeClearance?: number | undefined;
|
|
109653
109729
|
minPlatedHoleDrillEdgeToDrillEdgeClearance?: number | undefined;
|
|
109654
109730
|
minTraceToPadEdgeClearance?: number | undefined;
|
|
109655
109731
|
minPadEdgeToPadEdgeClearance?: number | undefined;
|
|
@@ -110007,6 +110083,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
110007
110083
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
110008
110084
|
schMaxTraceDistance?: string | number | undefined;
|
|
110009
110085
|
minViaHoleEdgeToViaHoleEdgeClearance?: string | number | undefined;
|
|
110086
|
+
minViaEdgeToPadEdgeClearance?: string | number | undefined;
|
|
110010
110087
|
minPlatedHoleDrillEdgeToDrillEdgeClearance?: string | number | undefined;
|
|
110011
110088
|
minTraceToPadEdgeClearance?: string | number | undefined;
|
|
110012
110089
|
minPadEdgeToPadEdgeClearance?: string | number | undefined;
|
|
@@ -110243,6 +110320,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
110243
110320
|
key: z.ZodOptional<z.ZodAny>;
|
|
110244
110321
|
name: z.ZodString;
|
|
110245
110322
|
displayName: z.ZodOptional<z.ZodString>;
|
|
110323
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
110246
110324
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
110247
110325
|
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<{
|
|
110248
110326
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -114255,6 +114333,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
114255
114333
|
obstructsWithinBounds?: boolean | undefined;
|
|
114256
114334
|
mfn?: string | undefined;
|
|
114257
114335
|
manufacturerPartNumber?: string | undefined;
|
|
114336
|
+
schSectionName?: string | undefined;
|
|
114258
114337
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
114259
114338
|
schPinArrangement?: {
|
|
114260
114339
|
leftSize?: number | undefined;
|
|
@@ -114885,6 +114964,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
114885
114964
|
obstructsWithinBounds?: boolean | undefined;
|
|
114886
114965
|
mfn?: string | undefined;
|
|
114887
114966
|
manufacturerPartNumber?: string | undefined;
|
|
114967
|
+
schSectionName?: string | undefined;
|
|
114888
114968
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
114889
114969
|
schPinArrangement?: {
|
|
114890
114970
|
leftSize?: number | undefined;
|
|
@@ -115101,6 +115181,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
115101
115181
|
key: z.ZodOptional<z.ZodAny>;
|
|
115102
115182
|
name: z.ZodString;
|
|
115103
115183
|
displayName: z.ZodOptional<z.ZodString>;
|
|
115184
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
115104
115185
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
115105
115186
|
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<{
|
|
115106
115187
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -119239,6 +119320,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
119239
119320
|
obstructsWithinBounds?: boolean | undefined;
|
|
119240
119321
|
mfn?: string | undefined;
|
|
119241
119322
|
manufacturerPartNumber?: string | undefined;
|
|
119323
|
+
schSectionName?: string | undefined;
|
|
119242
119324
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
119243
119325
|
schPinArrangement?: {
|
|
119244
119326
|
leftSize?: number | undefined;
|
|
@@ -119894,6 +119976,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
119894
119976
|
obstructsWithinBounds?: boolean | undefined;
|
|
119895
119977
|
mfn?: string | undefined;
|
|
119896
119978
|
manufacturerPartNumber?: string | undefined;
|
|
119979
|
+
schSectionName?: string | undefined;
|
|
119897
119980
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
119898
119981
|
schPinArrangement?: {
|
|
119899
119982
|
leftSize?: number | undefined;
|
|
@@ -120704,6 +120787,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
120704
120787
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
120705
120788
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
120706
120789
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
120790
|
+
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
120707
120791
|
minPlatedHoleDrillEdgeToDrillEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
120708
120792
|
minTraceToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
120709
120793
|
minPadEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -121027,6 +121111,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121027
121111
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
121028
121112
|
schMaxTraceDistance?: number | undefined;
|
|
121029
121113
|
minViaHoleEdgeToViaHoleEdgeClearance?: number | undefined;
|
|
121114
|
+
minViaEdgeToPadEdgeClearance?: number | undefined;
|
|
121030
121115
|
minPlatedHoleDrillEdgeToDrillEdgeClearance?: number | undefined;
|
|
121031
121116
|
minTraceToPadEdgeClearance?: number | undefined;
|
|
121032
121117
|
minPadEdgeToPadEdgeClearance?: number | undefined;
|
|
@@ -121345,6 +121430,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121345
121430
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
121346
121431
|
schMaxTraceDistance?: string | number | undefined;
|
|
121347
121432
|
minViaHoleEdgeToViaHoleEdgeClearance?: string | number | undefined;
|
|
121433
|
+
minViaEdgeToPadEdgeClearance?: string | number | undefined;
|
|
121348
121434
|
minPlatedHoleDrillEdgeToDrillEdgeClearance?: string | number | undefined;
|
|
121349
121435
|
minTraceToPadEdgeClearance?: string | number | undefined;
|
|
121350
121436
|
minPadEdgeToPadEdgeClearance?: string | number | undefined;
|
|
@@ -121570,6 +121656,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
121570
121656
|
key: z.ZodOptional<z.ZodAny>;
|
|
121571
121657
|
name: z.ZodString;
|
|
121572
121658
|
displayName: z.ZodOptional<z.ZodString>;
|
|
121659
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
121573
121660
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
121574
121661
|
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<{
|
|
121575
121662
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -125414,6 +125501,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
125414
125501
|
obstructsWithinBounds?: boolean | undefined;
|
|
125415
125502
|
mfn?: string | undefined;
|
|
125416
125503
|
manufacturerPartNumber?: string | undefined;
|
|
125504
|
+
schSectionName?: string | undefined;
|
|
125417
125505
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
125418
125506
|
}, {
|
|
125419
125507
|
type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
|
|
@@ -125994,6 +126082,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
125994
126082
|
obstructsWithinBounds?: boolean | undefined;
|
|
125995
126083
|
mfn?: string | undefined;
|
|
125996
126084
|
manufacturerPartNumber?: string | undefined;
|
|
126085
|
+
schSectionName?: string | undefined;
|
|
125997
126086
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
125998
126087
|
}>;
|
|
125999
126088
|
declare const transistorPins: readonly ["pin1", "emitter", "pin2", "collector", "pin3", "base"];
|
|
@@ -126096,6 +126185,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
126096
126185
|
key: z.ZodOptional<z.ZodAny>;
|
|
126097
126186
|
name: z.ZodString;
|
|
126098
126187
|
displayName: z.ZodOptional<z.ZodString>;
|
|
126188
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
126099
126189
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
126100
126190
|
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<{
|
|
126101
126191
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -129941,6 +130031,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
129941
130031
|
obstructsWithinBounds?: boolean | undefined;
|
|
129942
130032
|
mfn?: string | undefined;
|
|
129943
130033
|
manufacturerPartNumber?: string | undefined;
|
|
130034
|
+
schSectionName?: string | undefined;
|
|
129944
130035
|
}, {
|
|
129945
130036
|
name: string;
|
|
129946
130037
|
channelType: "n" | "p";
|
|
@@ -130521,6 +130612,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
130521
130612
|
obstructsWithinBounds?: boolean | undefined;
|
|
130522
130613
|
mfn?: string | undefined;
|
|
130523
130614
|
manufacturerPartNumber?: string | undefined;
|
|
130615
|
+
schSectionName?: string | undefined;
|
|
130524
130616
|
}>;
|
|
130525
130617
|
declare const mosfetPins: readonly ["pin1", "drain", "pin2", "source", "pin3", "gate"];
|
|
130526
130618
|
type MosfetPinLabels = (typeof mosfetPins)[number];
|
|
@@ -130629,6 +130721,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
130629
130721
|
key: z.ZodOptional<z.ZodAny>;
|
|
130630
130722
|
name: z.ZodString;
|
|
130631
130723
|
displayName: z.ZodOptional<z.ZodString>;
|
|
130724
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
130632
130725
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
130633
130726
|
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<{
|
|
130634
130727
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -134471,6 +134564,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
134471
134564
|
obstructsWithinBounds?: boolean | undefined;
|
|
134472
134565
|
mfn?: string | undefined;
|
|
134473
134566
|
manufacturerPartNumber?: string | undefined;
|
|
134567
|
+
schSectionName?: string | undefined;
|
|
134474
134568
|
connections?: Partial<Record<"output" | "inverting_input" | "non_inverting_input" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
|
|
134475
134569
|
}, {
|
|
134476
134570
|
name: string;
|
|
@@ -135050,6 +135144,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
135050
135144
|
obstructsWithinBounds?: boolean | undefined;
|
|
135051
135145
|
mfn?: string | undefined;
|
|
135052
135146
|
manufacturerPartNumber?: string | undefined;
|
|
135147
|
+
schSectionName?: string | undefined;
|
|
135053
135148
|
connections?: Partial<Record<"output" | "inverting_input" | "non_inverting_input" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
|
|
135054
135149
|
}>;
|
|
135055
135150
|
/**
|
|
@@ -135159,6 +135254,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
135159
135254
|
key: z.ZodOptional<z.ZodAny>;
|
|
135160
135255
|
name: z.ZodString;
|
|
135161
135256
|
displayName: z.ZodOptional<z.ZodString>;
|
|
135257
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
135162
135258
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
135163
135259
|
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<{
|
|
135164
135260
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -139005,6 +139101,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
139005
139101
|
obstructsWithinBounds?: boolean | undefined;
|
|
139006
139102
|
mfn?: string | undefined;
|
|
139007
139103
|
manufacturerPartNumber?: string | undefined;
|
|
139104
|
+
schSectionName?: string | undefined;
|
|
139008
139105
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
139009
139106
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
139010
139107
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -139587,6 +139684,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
139587
139684
|
obstructsWithinBounds?: boolean | undefined;
|
|
139588
139685
|
mfn?: string | undefined;
|
|
139589
139686
|
manufacturerPartNumber?: string | undefined;
|
|
139687
|
+
schSectionName?: string | undefined;
|
|
139590
139688
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
139591
139689
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
139592
139690
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -139685,6 +139783,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
139685
139783
|
key: z.ZodOptional<z.ZodAny>;
|
|
139686
139784
|
name: z.ZodString;
|
|
139687
139785
|
displayName: z.ZodOptional<z.ZodString>;
|
|
139786
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
139688
139787
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
139689
139788
|
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<{
|
|
139690
139789
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -143536,6 +143635,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
143536
143635
|
obstructsWithinBounds?: boolean | undefined;
|
|
143537
143636
|
mfn?: string | undefined;
|
|
143538
143637
|
manufacturerPartNumber?: string | undefined;
|
|
143638
|
+
schSectionName?: string | undefined;
|
|
143539
143639
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
143540
143640
|
standard?: boolean | undefined;
|
|
143541
143641
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -144122,6 +144222,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
144122
144222
|
obstructsWithinBounds?: boolean | undefined;
|
|
144123
144223
|
mfn?: string | undefined;
|
|
144124
144224
|
manufacturerPartNumber?: string | undefined;
|
|
144225
|
+
schSectionName?: string | undefined;
|
|
144125
144226
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
144126
144227
|
standard?: boolean | undefined;
|
|
144127
144228
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -144708,6 +144809,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
144708
144809
|
obstructsWithinBounds?: boolean | undefined;
|
|
144709
144810
|
mfn?: string | undefined;
|
|
144710
144811
|
manufacturerPartNumber?: string | undefined;
|
|
144812
|
+
schSectionName?: string | undefined;
|
|
144711
144813
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
144712
144814
|
standard?: boolean | undefined;
|
|
144713
144815
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -145294,6 +145396,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
145294
145396
|
obstructsWithinBounds?: boolean | undefined;
|
|
145295
145397
|
mfn?: string | undefined;
|
|
145296
145398
|
manufacturerPartNumber?: string | undefined;
|
|
145399
|
+
schSectionName?: string | undefined;
|
|
145297
145400
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
145298
145401
|
standard?: boolean | undefined;
|
|
145299
145402
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -145886,6 +145989,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
145886
145989
|
obstructsWithinBounds?: boolean | undefined;
|
|
145887
145990
|
mfn?: string | undefined;
|
|
145888
145991
|
manufacturerPartNumber?: string | undefined;
|
|
145992
|
+
schSectionName?: string | undefined;
|
|
145889
145993
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
145890
145994
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
145891
145995
|
}, {
|
|
@@ -146466,6 +146570,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
146466
146570
|
obstructsWithinBounds?: boolean | undefined;
|
|
146467
146571
|
mfn?: string | undefined;
|
|
146468
146572
|
manufacturerPartNumber?: string | undefined;
|
|
146573
|
+
schSectionName?: string | undefined;
|
|
146469
146574
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
146470
146575
|
standard?: boolean | undefined;
|
|
146471
146576
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -146592,6 +146697,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
146592
146697
|
key: z.ZodOptional<z.ZodAny>;
|
|
146593
146698
|
name: z.ZodString;
|
|
146594
146699
|
displayName: z.ZodOptional<z.ZodString>;
|
|
146700
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
146595
146701
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
146596
146702
|
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<{
|
|
146597
146703
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -150439,6 +150545,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
150439
150545
|
obstructsWithinBounds?: boolean | undefined;
|
|
150440
150546
|
mfn?: string | undefined;
|
|
150441
150547
|
manufacturerPartNumber?: string | undefined;
|
|
150548
|
+
schSectionName?: string | undefined;
|
|
150442
150549
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
150443
150550
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
150444
150551
|
color?: string | undefined;
|
|
@@ -151023,6 +151130,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
151023
151130
|
obstructsWithinBounds?: boolean | undefined;
|
|
151024
151131
|
mfn?: string | undefined;
|
|
151025
151132
|
manufacturerPartNumber?: string | undefined;
|
|
151133
|
+
schSectionName?: string | undefined;
|
|
151026
151134
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
151027
151135
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
151028
151136
|
color?: string | undefined;
|
|
@@ -151140,6 +151248,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
151140
151248
|
key: z.ZodOptional<z.ZodAny>;
|
|
151141
151249
|
name: z.ZodString;
|
|
151142
151250
|
displayName: z.ZodOptional<z.ZodString>;
|
|
151251
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
151143
151252
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
151144
151253
|
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<{
|
|
151145
151254
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -154995,6 +155104,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
154995
155104
|
obstructsWithinBounds?: boolean | undefined;
|
|
154996
155105
|
mfn?: string | undefined;
|
|
154997
155106
|
manufacturerPartNumber?: string | undefined;
|
|
155107
|
+
schSectionName?: string | undefined;
|
|
154998
155108
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
154999
155109
|
spst?: boolean | undefined;
|
|
155000
155110
|
spdt?: boolean | undefined;
|
|
@@ -155584,6 +155694,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
155584
155694
|
obstructsWithinBounds?: boolean | undefined;
|
|
155585
155695
|
mfn?: string | undefined;
|
|
155586
155696
|
manufacturerPartNumber?: string | undefined;
|
|
155697
|
+
schSectionName?: string | undefined;
|
|
155587
155698
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
155588
155699
|
spst?: boolean | undefined;
|
|
155589
155700
|
spdt?: boolean | undefined;
|
|
@@ -156174,6 +156285,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
156174
156285
|
obstructsWithinBounds?: boolean | undefined;
|
|
156175
156286
|
mfn?: string | undefined;
|
|
156176
156287
|
manufacturerPartNumber?: string | undefined;
|
|
156288
|
+
schSectionName?: string | undefined;
|
|
156177
156289
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
156178
156290
|
spst?: boolean | undefined;
|
|
156179
156291
|
spdt?: boolean | undefined;
|
|
@@ -157303,6 +157415,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
157303
157415
|
key: z.ZodOptional<z.ZodAny>;
|
|
157304
157416
|
name: z.ZodString;
|
|
157305
157417
|
displayName: z.ZodOptional<z.ZodString>;
|
|
157418
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
157306
157419
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
157307
157420
|
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<{
|
|
157308
157421
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -161158,6 +161271,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
161158
161271
|
obstructsWithinBounds?: boolean | undefined;
|
|
161159
161272
|
mfn?: string | undefined;
|
|
161160
161273
|
manufacturerPartNumber?: string | undefined;
|
|
161274
|
+
schSectionName?: string | undefined;
|
|
161161
161275
|
width?: number | undefined;
|
|
161162
161276
|
height?: number | undefined;
|
|
161163
161277
|
connections?: {
|
|
@@ -161744,6 +161858,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
161744
161858
|
obstructsWithinBounds?: boolean | undefined;
|
|
161745
161859
|
mfn?: string | undefined;
|
|
161746
161860
|
manufacturerPartNumber?: string | undefined;
|
|
161861
|
+
schSectionName?: string | undefined;
|
|
161747
161862
|
width?: string | number | undefined;
|
|
161748
161863
|
height?: string | number | undefined;
|
|
161749
161864
|
connections?: {
|
|
@@ -162330,6 +162445,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
162330
162445
|
obstructsWithinBounds?: boolean | undefined;
|
|
162331
162446
|
mfn?: string | undefined;
|
|
162332
162447
|
manufacturerPartNumber?: string | undefined;
|
|
162448
|
+
schSectionName?: string | undefined;
|
|
162333
162449
|
width?: number | undefined;
|
|
162334
162450
|
height?: number | undefined;
|
|
162335
162451
|
connections?: {
|
|
@@ -162916,6 +163032,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
162916
163032
|
obstructsWithinBounds?: boolean | undefined;
|
|
162917
163033
|
mfn?: string | undefined;
|
|
162918
163034
|
manufacturerPartNumber?: string | undefined;
|
|
163035
|
+
schSectionName?: string | undefined;
|
|
162919
163036
|
width?: string | number | undefined;
|
|
162920
163037
|
height?: string | number | undefined;
|
|
162921
163038
|
connections?: {
|
|
@@ -164328,6 +164445,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
164328
164445
|
key: z.ZodOptional<z.ZodAny>;
|
|
164329
164446
|
name: z.ZodString;
|
|
164330
164447
|
displayName: z.ZodOptional<z.ZodString>;
|
|
164448
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
164331
164449
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
164332
164450
|
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<{
|
|
164333
164451
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -168171,6 +168289,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
168171
168289
|
obstructsWithinBounds?: boolean | undefined;
|
|
168172
168290
|
mfn?: string | undefined;
|
|
168173
168291
|
manufacturerPartNumber?: string | undefined;
|
|
168292
|
+
schSectionName?: string | undefined;
|
|
168174
168293
|
}, {
|
|
168175
168294
|
name: string;
|
|
168176
168295
|
voltage: string | number;
|
|
@@ -168750,6 +168869,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
168750
168869
|
obstructsWithinBounds?: boolean | undefined;
|
|
168751
168870
|
mfn?: string | undefined;
|
|
168752
168871
|
manufacturerPartNumber?: string | undefined;
|
|
168872
|
+
schSectionName?: string | undefined;
|
|
168753
168873
|
}>;
|
|
168754
168874
|
type PowerSourceProps = z.input<typeof powerSourceProps>;
|
|
168755
168875
|
|
|
@@ -168858,6 +168978,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
168858
168978
|
key: z.ZodOptional<z.ZodAny>;
|
|
168859
168979
|
name: z.ZodString;
|
|
168860
168980
|
displayName: z.ZodOptional<z.ZodString>;
|
|
168981
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
168861
168982
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
168862
168983
|
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<{
|
|
168863
168984
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -172706,6 +172827,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
172706
172827
|
obstructsWithinBounds?: boolean | undefined;
|
|
172707
172828
|
mfn?: string | undefined;
|
|
172708
172829
|
manufacturerPartNumber?: string | undefined;
|
|
172830
|
+
schSectionName?: string | undefined;
|
|
172709
172831
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
172710
172832
|
frequency?: number | undefined;
|
|
172711
172833
|
voltage?: number | undefined;
|
|
@@ -173291,6 +173413,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
173291
173413
|
obstructsWithinBounds?: boolean | undefined;
|
|
173292
173414
|
mfn?: string | undefined;
|
|
173293
173415
|
manufacturerPartNumber?: string | undefined;
|
|
173416
|
+
schSectionName?: string | undefined;
|
|
173294
173417
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
173295
173418
|
frequency?: string | number | undefined;
|
|
173296
173419
|
voltage?: string | number | undefined;
|
|
@@ -173405,6 +173528,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
173405
173528
|
key: z.ZodOptional<z.ZodAny>;
|
|
173406
173529
|
name: z.ZodString;
|
|
173407
173530
|
displayName: z.ZodOptional<z.ZodString>;
|
|
173531
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
173408
173532
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
173409
173533
|
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<{
|
|
173410
173534
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -177253,6 +177377,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
177253
177377
|
obstructsWithinBounds?: boolean | undefined;
|
|
177254
177378
|
mfn?: string | undefined;
|
|
177255
177379
|
manufacturerPartNumber?: string | undefined;
|
|
177380
|
+
schSectionName?: string | undefined;
|
|
177256
177381
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
177257
177382
|
frequency?: number | undefined;
|
|
177258
177383
|
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
@@ -177838,6 +177963,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
177838
177963
|
obstructsWithinBounds?: boolean | undefined;
|
|
177839
177964
|
mfn?: string | undefined;
|
|
177840
177965
|
manufacturerPartNumber?: string | undefined;
|
|
177966
|
+
schSectionName?: string | undefined;
|
|
177841
177967
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
177842
177968
|
frequency?: string | number | undefined;
|
|
177843
177969
|
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
@@ -177947,6 +178073,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
177947
178073
|
key: z.ZodOptional<z.ZodAny>;
|
|
177948
178074
|
name: z.ZodString;
|
|
177949
178075
|
displayName: z.ZodOptional<z.ZodString>;
|
|
178076
|
+
schSectionName: z.ZodOptional<z.ZodString>;
|
|
177950
178077
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
177951
178078
|
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<{
|
|
177952
178079
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -181793,6 +181920,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
181793
181920
|
obstructsWithinBounds?: boolean | undefined;
|
|
181794
181921
|
mfn?: string | undefined;
|
|
181795
181922
|
manufacturerPartNumber?: string | undefined;
|
|
181923
|
+
schSectionName?: string | undefined;
|
|
181796
181924
|
color?: string | undefined;
|
|
181797
181925
|
referenceTo?: string | undefined;
|
|
181798
181926
|
}, {
|
|
@@ -182374,6 +182502,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
182374
182502
|
obstructsWithinBounds?: boolean | undefined;
|
|
182375
182503
|
mfn?: string | undefined;
|
|
182376
182504
|
manufacturerPartNumber?: string | undefined;
|
|
182505
|
+
schSectionName?: string | undefined;
|
|
182377
182506
|
color?: string | undefined;
|
|
182378
182507
|
referenceTo?: string | undefined;
|
|
182379
182508
|
}>;
|
|
@@ -182897,6 +183026,22 @@ interface SchematicCellProps {
|
|
|
182897
183026
|
text?: string;
|
|
182898
183027
|
}
|
|
182899
183028
|
|
|
183029
|
+
interface SchematicSectionProps {
|
|
183030
|
+
displayName?: string;
|
|
183031
|
+
name: string;
|
|
183032
|
+
}
|
|
183033
|
+
declare const schematicSectionProps: z.ZodObject<{
|
|
183034
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
183035
|
+
name: z.ZodString;
|
|
183036
|
+
}, "strip", z.ZodTypeAny, {
|
|
183037
|
+
name: string;
|
|
183038
|
+
displayName?: string | undefined;
|
|
183039
|
+
}, {
|
|
183040
|
+
name: string;
|
|
183041
|
+
displayName?: string | undefined;
|
|
183042
|
+
}>;
|
|
183043
|
+
type InferredSchematicSectionProps = z.input<typeof schematicSectionProps>;
|
|
183044
|
+
|
|
182900
183045
|
declare const copperTextProps: z.ZodObject<{
|
|
182901
183046
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
182902
183047
|
pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -185216,4 +185361,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
185216
185361
|
}
|
|
185217
185362
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
185218
185363
|
|
|
185219
|
-
export { type AnalogSimulationProps, 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 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 CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, 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 CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, 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 InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, 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 NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalPlatedHoleProps, type PanelProps, 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 PillHoleProps, type PillPlatedHoleProps, 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 RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, 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 SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, 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, analogSimulationProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, 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, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, 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, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
185364
|
+
export { type AnalogSimulationProps, 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 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 CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, 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 CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, 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 InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, 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 NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalPlatedHoleProps, type PanelProps, 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 PillHoleProps, type PillPlatedHoleProps, 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 RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, 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 SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, 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, analogSimulationProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, 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, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, 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, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|