@tscircuit/props 0.0.555 → 0.0.557
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 +18 -0
- package/dist/index.d.ts +157 -2
- package/dist/index.js +127 -113
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +11 -1
- package/lib/components/group.ts +6 -0
- package/lib/components/schematic-sheet.ts +18 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7116,9 +7116,13 @@ interface CommonComponentProps<PinLabel extends string = string> extends CommonL
|
|
|
7116
7116
|
mfn?: string;
|
|
7117
7117
|
manufacturerPartNumber?: string;
|
|
7118
7118
|
/**
|
|
7119
|
-
*This component will be drawn as part of this section e.g.
|
|
7119
|
+
* This component will be drawn as part of this section e.g. "Power"
|
|
7120
7120
|
*/
|
|
7121
7121
|
schSectionName?: string;
|
|
7122
|
+
/**
|
|
7123
|
+
* This component will be drawn as part of this sheet e.g. "Main"
|
|
7124
|
+
*/
|
|
7125
|
+
schSheetName?: string;
|
|
7122
7126
|
}
|
|
7123
7127
|
declare const commonComponentProps: z.ZodObject<{
|
|
7124
7128
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -7214,6 +7218,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
7214
7218
|
name: z.ZodString;
|
|
7215
7219
|
displayName: z.ZodOptional<z.ZodString>;
|
|
7216
7220
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
7221
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
7217
7222
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
7218
7223
|
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<{
|
|
7219
7224
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -11055,6 +11060,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
11055
11060
|
mfn?: string | undefined;
|
|
11056
11061
|
manufacturerPartNumber?: string | undefined;
|
|
11057
11062
|
schSectionName?: string | undefined;
|
|
11063
|
+
schSheetName?: string | undefined;
|
|
11058
11064
|
}, {
|
|
11059
11065
|
name: string;
|
|
11060
11066
|
symbol?: SymbolProp | undefined;
|
|
@@ -11634,6 +11640,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
11634
11640
|
mfn?: string | undefined;
|
|
11635
11641
|
manufacturerPartNumber?: string | undefined;
|
|
11636
11642
|
schSectionName?: string | undefined;
|
|
11643
|
+
schSheetName?: string | undefined;
|
|
11637
11644
|
}>;
|
|
11638
11645
|
declare const componentProps: z.ZodObject<{
|
|
11639
11646
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -11729,6 +11736,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
11729
11736
|
name: z.ZodString;
|
|
11730
11737
|
displayName: z.ZodOptional<z.ZodString>;
|
|
11731
11738
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
11739
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
11732
11740
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
11733
11741
|
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<{
|
|
11734
11742
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -15570,6 +15578,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
15570
15578
|
mfn?: string | undefined;
|
|
15571
15579
|
manufacturerPartNumber?: string | undefined;
|
|
15572
15580
|
schSectionName?: string | undefined;
|
|
15581
|
+
schSheetName?: string | undefined;
|
|
15573
15582
|
}, {
|
|
15574
15583
|
name: string;
|
|
15575
15584
|
symbol?: SymbolProp | undefined;
|
|
@@ -16149,6 +16158,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
16149
16158
|
mfn?: string | undefined;
|
|
16150
16159
|
manufacturerPartNumber?: string | undefined;
|
|
16151
16160
|
schSectionName?: string | undefined;
|
|
16161
|
+
schSheetName?: string | undefined;
|
|
16152
16162
|
}>;
|
|
16153
16163
|
type ComponentProps = z.input<typeof componentProps>;
|
|
16154
16164
|
declare const lrPins: readonly ["pin1", "left", "pin2", "right"];
|
|
@@ -17943,6 +17953,10 @@ interface SubcircuitGroupProps extends BaseGroupProps, RoutingTolerances {
|
|
|
17943
17953
|
* Serialized circuit JSON describing a precompiled subcircuit
|
|
17944
17954
|
*/
|
|
17945
17955
|
circuitJson?: any[];
|
|
17956
|
+
/**
|
|
17957
|
+
* Nets from this subcircuit that should be exposed to parent circuits
|
|
17958
|
+
*/
|
|
17959
|
+
exposedNets?: string[];
|
|
17946
17960
|
/**
|
|
17947
17961
|
* If true, we'll automatically layout the schematic for this group. Must be
|
|
17948
17962
|
* a subcircuit (currently). This is eventually going to be replaced with more
|
|
@@ -19635,6 +19649,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
19635
19649
|
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19636
19650
|
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19637
19651
|
circuitJson: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
19652
|
+
exposedNets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
19638
19653
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19639
19654
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19640
19655
|
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -20079,6 +20094,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20079
20094
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
20080
20095
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
20081
20096
|
circuitJson?: any[] | undefined;
|
|
20097
|
+
exposedNets?: string[] | undefined;
|
|
20082
20098
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
20083
20099
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
20084
20100
|
schMaxTraceDistance?: number | undefined;
|
|
@@ -20398,6 +20414,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20398
20414
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
20399
20415
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
20400
20416
|
circuitJson?: any[] | undefined;
|
|
20417
|
+
exposedNets?: string[] | undefined;
|
|
20401
20418
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
20402
20419
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
20403
20420
|
schMaxTraceDistance?: string | number | undefined;
|
|
@@ -21032,6 +21049,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21032
21049
|
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21033
21050
|
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21034
21051
|
circuitJson: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
21052
|
+
exposedNets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
21035
21053
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21036
21054
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21037
21055
|
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -21479,6 +21497,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21479
21497
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
21480
21498
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
21481
21499
|
circuitJson?: any[] | undefined;
|
|
21500
|
+
exposedNets?: string[] | undefined;
|
|
21482
21501
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
21483
21502
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
21484
21503
|
schMaxTraceDistance?: number | undefined;
|
|
@@ -21799,6 +21818,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21799
21818
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
21800
21819
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
21801
21820
|
circuitJson?: any[] | undefined;
|
|
21821
|
+
exposedNets?: string[] | undefined;
|
|
21802
21822
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
21803
21823
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
21804
21824
|
schMaxTraceDistance?: string | number | undefined;
|
|
@@ -23513,6 +23533,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
23513
23533
|
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23514
23534
|
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23515
23535
|
circuitJson: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
23536
|
+
exposedNets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
23516
23537
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23517
23538
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23518
23539
|
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -23960,6 +23981,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
23960
23981
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
23961
23982
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
23962
23983
|
circuitJson?: any[] | undefined;
|
|
23984
|
+
exposedNets?: string[] | undefined;
|
|
23963
23985
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
23964
23986
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
23965
23987
|
schMaxTraceDistance?: number | undefined;
|
|
@@ -24280,6 +24302,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
24280
24302
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
24281
24303
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
24282
24304
|
circuitJson?: any[] | undefined;
|
|
24305
|
+
exposedNets?: string[] | undefined;
|
|
24283
24306
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
24284
24307
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
24285
24308
|
schMaxTraceDistance?: string | number | undefined;
|
|
@@ -24945,6 +24968,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
24945
24968
|
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24946
24969
|
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24947
24970
|
circuitJson: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
24971
|
+
exposedNets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
24948
24972
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24949
24973
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24950
24974
|
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -25418,6 +25442,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25418
25442
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
25419
25443
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
25420
25444
|
circuitJson?: any[] | undefined;
|
|
25445
|
+
exposedNets?: string[] | undefined;
|
|
25421
25446
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
25422
25447
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
25423
25448
|
schMaxTraceDistance?: number | undefined;
|
|
@@ -25753,6 +25778,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25753
25778
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
25754
25779
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
25755
25780
|
circuitJson?: any[] | undefined;
|
|
25781
|
+
exposedNets?: string[] | undefined;
|
|
25756
25782
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
25757
25783
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
25758
25784
|
schMaxTraceDistance?: string | number | undefined;
|
|
@@ -28704,6 +28730,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
28704
28730
|
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28705
28731
|
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28706
28732
|
circuitJson: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
28733
|
+
exposedNets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
28707
28734
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28708
28735
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28709
28736
|
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -29154,6 +29181,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29154
29181
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
29155
29182
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
29156
29183
|
circuitJson?: any[] | undefined;
|
|
29184
|
+
exposedNets?: string[] | undefined;
|
|
29157
29185
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
29158
29186
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
29159
29187
|
schMaxTraceDistance?: number | undefined;
|
|
@@ -29473,6 +29501,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29473
29501
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
29474
29502
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
29475
29503
|
circuitJson?: any[] | undefined;
|
|
29504
|
+
exposedNets?: string[] | undefined;
|
|
29476
29505
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
29477
29506
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
29478
29507
|
schMaxTraceDistance?: string | number | undefined;
|
|
@@ -29713,6 +29742,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
29713
29742
|
name: z.ZodString;
|
|
29714
29743
|
displayName: z.ZodOptional<z.ZodString>;
|
|
29715
29744
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
29745
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
29716
29746
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
29717
29747
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
29718
29748
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -33853,6 +33883,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
33853
33883
|
mfn?: string | undefined;
|
|
33854
33884
|
manufacturerPartNumber?: string | undefined;
|
|
33855
33885
|
schSectionName?: string | undefined;
|
|
33886
|
+
schSheetName?: string | undefined;
|
|
33856
33887
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
33857
33888
|
schPinArrangement?: {
|
|
33858
33889
|
leftSize?: number | undefined;
|
|
@@ -34510,6 +34541,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
34510
34541
|
mfn?: string | undefined;
|
|
34511
34542
|
manufacturerPartNumber?: string | undefined;
|
|
34512
34543
|
schSectionName?: string | undefined;
|
|
34544
|
+
schSheetName?: string | undefined;
|
|
34513
34545
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
34514
34546
|
schPinArrangement?: {
|
|
34515
34547
|
leftSize?: number | undefined;
|
|
@@ -34684,6 +34716,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
34684
34716
|
name: z.ZodString;
|
|
34685
34717
|
displayName: z.ZodOptional<z.ZodString>;
|
|
34686
34718
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
34719
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
34687
34720
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
34688
34721
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
34689
34722
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -38824,6 +38857,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
38824
38857
|
mfn?: string | undefined;
|
|
38825
38858
|
manufacturerPartNumber?: string | undefined;
|
|
38826
38859
|
schSectionName?: string | undefined;
|
|
38860
|
+
schSheetName?: string | undefined;
|
|
38827
38861
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
38828
38862
|
schPinArrangement?: {
|
|
38829
38863
|
leftSize?: number | undefined;
|
|
@@ -39481,6 +39515,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
39481
39515
|
mfn?: string | undefined;
|
|
39482
39516
|
manufacturerPartNumber?: string | undefined;
|
|
39483
39517
|
schSectionName?: string | undefined;
|
|
39518
|
+
schSheetName?: string | undefined;
|
|
39484
39519
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
39485
39520
|
schPinArrangement?: {
|
|
39486
39521
|
leftSize?: number | undefined;
|
|
@@ -39654,6 +39689,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39654
39689
|
name: z.ZodString;
|
|
39655
39690
|
displayName: z.ZodOptional<z.ZodString>;
|
|
39656
39691
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
39692
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
39657
39693
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
39658
39694
|
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<{
|
|
39659
39695
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -43794,6 +43830,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
43794
43830
|
mfn?: string | undefined;
|
|
43795
43831
|
manufacturerPartNumber?: string | undefined;
|
|
43796
43832
|
schSectionName?: string | undefined;
|
|
43833
|
+
schSheetName?: string | undefined;
|
|
43797
43834
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
43798
43835
|
schPinArrangement?: {
|
|
43799
43836
|
leftSize?: number | undefined;
|
|
@@ -44451,6 +44488,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
44451
44488
|
mfn?: string | undefined;
|
|
44452
44489
|
manufacturerPartNumber?: string | undefined;
|
|
44453
44490
|
schSectionName?: string | undefined;
|
|
44491
|
+
schSheetName?: string | undefined;
|
|
44454
44492
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
44455
44493
|
schPinArrangement?: {
|
|
44456
44494
|
leftSize?: number | undefined;
|
|
@@ -44657,6 +44695,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44657
44695
|
name: z.ZodString;
|
|
44658
44696
|
displayName: z.ZodOptional<z.ZodString>;
|
|
44659
44697
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
44698
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
44660
44699
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
44661
44700
|
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<{
|
|
44662
44701
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -48784,6 +48823,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
48784
48823
|
mfn?: string | undefined;
|
|
48785
48824
|
manufacturerPartNumber?: string | undefined;
|
|
48786
48825
|
schSectionName?: string | undefined;
|
|
48826
|
+
schSheetName?: string | undefined;
|
|
48787
48827
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
48788
48828
|
schPinArrangement?: {
|
|
48789
48829
|
leftSize?: number | undefined;
|
|
@@ -49434,6 +49474,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
49434
49474
|
mfn?: string | undefined;
|
|
49435
49475
|
manufacturerPartNumber?: string | undefined;
|
|
49436
49476
|
schSectionName?: string | undefined;
|
|
49477
|
+
schSheetName?: string | undefined;
|
|
49437
49478
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
49438
49479
|
schPinArrangement?: {
|
|
49439
49480
|
leftSize?: number | undefined;
|
|
@@ -49609,6 +49650,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49609
49650
|
name: z.ZodString;
|
|
49610
49651
|
displayName: z.ZodOptional<z.ZodString>;
|
|
49611
49652
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
49653
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
49612
49654
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
49613
49655
|
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<{
|
|
49614
49656
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -53739,6 +53781,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
53739
53781
|
mfn?: string | undefined;
|
|
53740
53782
|
manufacturerPartNumber?: string | undefined;
|
|
53741
53783
|
schSectionName?: string | undefined;
|
|
53784
|
+
schSheetName?: string | undefined;
|
|
53742
53785
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
53743
53786
|
schPinArrangement?: {
|
|
53744
53787
|
leftSize?: number | undefined;
|
|
@@ -54391,6 +54434,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
54391
54434
|
mfn?: string | undefined;
|
|
54392
54435
|
manufacturerPartNumber?: string | undefined;
|
|
54393
54436
|
schSectionName?: string | undefined;
|
|
54437
|
+
schSheetName?: string | undefined;
|
|
54394
54438
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
54395
54439
|
schPinArrangement?: {
|
|
54396
54440
|
leftSize?: number | undefined;
|
|
@@ -54564,6 +54608,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54564
54608
|
name: z.ZodString;
|
|
54565
54609
|
displayName: z.ZodOptional<z.ZodString>;
|
|
54566
54610
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
54611
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
54567
54612
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
54568
54613
|
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<{
|
|
54569
54614
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -58706,6 +58751,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
58706
58751
|
mfn?: string | undefined;
|
|
58707
58752
|
manufacturerPartNumber?: string | undefined;
|
|
58708
58753
|
schSectionName?: string | undefined;
|
|
58754
|
+
schSheetName?: string | undefined;
|
|
58709
58755
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
58710
58756
|
schPinArrangement?: {
|
|
58711
58757
|
leftSize?: number | undefined;
|
|
@@ -59364,6 +59410,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
59364
59410
|
mfn?: string | undefined;
|
|
59365
59411
|
manufacturerPartNumber?: string | undefined;
|
|
59366
59412
|
schSectionName?: string | undefined;
|
|
59413
|
+
schSheetName?: string | undefined;
|
|
59367
59414
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
59368
59415
|
schPinArrangement?: {
|
|
59369
59416
|
leftSize?: number | undefined;
|
|
@@ -59548,6 +59595,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59548
59595
|
name: z.ZodString;
|
|
59549
59596
|
displayName: z.ZodOptional<z.ZodString>;
|
|
59550
59597
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
59598
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
59551
59599
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
59552
59600
|
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<{
|
|
59553
59601
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -63393,6 +63441,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
63393
63441
|
mfn?: string | undefined;
|
|
63394
63442
|
manufacturerPartNumber?: string | undefined;
|
|
63395
63443
|
schSectionName?: string | undefined;
|
|
63444
|
+
schSheetName?: string | undefined;
|
|
63396
63445
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
63397
63446
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
63398
63447
|
standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
|
|
@@ -63975,6 +64024,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
63975
64024
|
mfn?: string | undefined;
|
|
63976
64025
|
manufacturerPartNumber?: string | undefined;
|
|
63977
64026
|
schSectionName?: string | undefined;
|
|
64027
|
+
schSheetName?: string | undefined;
|
|
63978
64028
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
63979
64029
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
63980
64030
|
standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
|
|
@@ -64101,6 +64151,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
64101
64151
|
name: z.ZodString;
|
|
64102
64152
|
displayName: z.ZodOptional<z.ZodString>;
|
|
64103
64153
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
64154
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
64104
64155
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
64105
64156
|
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<{
|
|
64106
64157
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -67949,6 +68000,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
67949
68000
|
mfn?: string | undefined;
|
|
67950
68001
|
manufacturerPartNumber?: string | undefined;
|
|
67951
68002
|
schSectionName?: string | undefined;
|
|
68003
|
+
schSheetName?: string | undefined;
|
|
67952
68004
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
67953
68005
|
voltageRating?: string | number | undefined;
|
|
67954
68006
|
schShowRatings?: boolean | undefined;
|
|
@@ -68533,6 +68585,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
68533
68585
|
mfn?: string | undefined;
|
|
68534
68586
|
manufacturerPartNumber?: string | undefined;
|
|
68535
68587
|
schSectionName?: string | undefined;
|
|
68588
|
+
schSheetName?: string | undefined;
|
|
68536
68589
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
68537
68590
|
voltageRating?: string | number | undefined;
|
|
68538
68591
|
schShowRatings?: boolean | undefined;
|
|
@@ -70579,6 +70632,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
70579
70632
|
name: z.ZodString;
|
|
70580
70633
|
displayName: z.ZodOptional<z.ZodString>;
|
|
70581
70634
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
70635
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
70582
70636
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
70583
70637
|
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<{
|
|
70584
70638
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -74432,6 +74486,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
74432
74486
|
mfn?: string | undefined;
|
|
74433
74487
|
manufacturerPartNumber?: string | undefined;
|
|
74434
74488
|
schSectionName?: string | undefined;
|
|
74489
|
+
schSheetName?: string | undefined;
|
|
74435
74490
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
74436
74491
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
74437
74492
|
tolerance?: number | undefined;
|
|
@@ -75020,6 +75075,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
75020
75075
|
mfn?: string | undefined;
|
|
75021
75076
|
manufacturerPartNumber?: string | undefined;
|
|
75022
75077
|
schSectionName?: string | undefined;
|
|
75078
|
+
schSheetName?: string | undefined;
|
|
75023
75079
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
75024
75080
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
75025
75081
|
tolerance?: string | number | undefined;
|
|
@@ -75133,6 +75189,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
75133
75189
|
name: z.ZodString;
|
|
75134
75190
|
displayName: z.ZodOptional<z.ZodString>;
|
|
75135
75191
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
75192
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
75136
75193
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
75137
75194
|
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<{
|
|
75138
75195
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -78979,6 +79036,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
78979
79036
|
mfn?: string | undefined;
|
|
78980
79037
|
manufacturerPartNumber?: string | undefined;
|
|
78981
79038
|
schSectionName?: string | undefined;
|
|
79039
|
+
schSheetName?: string | undefined;
|
|
78982
79040
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3", string | readonly string[] | string[]>> | undefined;
|
|
78983
79041
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
78984
79042
|
}, {
|
|
@@ -79561,6 +79619,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
79561
79619
|
mfn?: string | undefined;
|
|
79562
79620
|
manufacturerPartNumber?: string | undefined;
|
|
79563
79621
|
schSectionName?: string | undefined;
|
|
79622
|
+
schSheetName?: string | undefined;
|
|
79564
79623
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3", string | readonly string[] | string[]>> | undefined;
|
|
79565
79624
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
79566
79625
|
}>;
|
|
@@ -79669,6 +79728,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
79669
79728
|
name: z.ZodString;
|
|
79670
79729
|
displayName: z.ZodOptional<z.ZodString>;
|
|
79671
79730
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
79731
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
79672
79732
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
79673
79733
|
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<{
|
|
79674
79734
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -83519,6 +83579,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
83519
83579
|
mfn?: string | undefined;
|
|
83520
83580
|
manufacturerPartNumber?: string | undefined;
|
|
83521
83581
|
schSectionName?: string | undefined;
|
|
83582
|
+
schSheetName?: string | undefined;
|
|
83522
83583
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
83523
83584
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
83524
83585
|
pinVariant?: "two_pin" | "four_pin" | undefined;
|
|
@@ -84104,6 +84165,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
84104
84165
|
mfn?: string | undefined;
|
|
84105
84166
|
manufacturerPartNumber?: string | undefined;
|
|
84106
84167
|
schSectionName?: string | undefined;
|
|
84168
|
+
schSheetName?: string | undefined;
|
|
84107
84169
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
84108
84170
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
84109
84171
|
pinVariant?: "two_pin" | "four_pin" | undefined;
|
|
@@ -84210,6 +84272,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
84210
84272
|
name: z.ZodString;
|
|
84211
84273
|
displayName: z.ZodOptional<z.ZodString>;
|
|
84212
84274
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
84275
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
84213
84276
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
84214
84277
|
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<{
|
|
84215
84278
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -88057,6 +88120,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
88057
88120
|
mfn?: string | undefined;
|
|
88058
88121
|
manufacturerPartNumber?: string | undefined;
|
|
88059
88122
|
schSectionName?: string | undefined;
|
|
88123
|
+
schSheetName?: string | undefined;
|
|
88060
88124
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
88061
88125
|
}, {
|
|
88062
88126
|
name: string;
|
|
@@ -88639,6 +88703,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
88639
88703
|
mfn?: string | undefined;
|
|
88640
88704
|
manufacturerPartNumber?: string | undefined;
|
|
88641
88705
|
schSectionName?: string | undefined;
|
|
88706
|
+
schSheetName?: string | undefined;
|
|
88642
88707
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
88643
88708
|
}>;
|
|
88644
88709
|
|
|
@@ -89235,6 +89300,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89235
89300
|
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
89236
89301
|
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
89237
89302
|
circuitJson: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
89303
|
+
exposedNets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
89238
89304
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
89239
89305
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
89240
89306
|
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -89723,6 +89789,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89723
89789
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
89724
89790
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
89725
89791
|
circuitJson?: any[] | undefined;
|
|
89792
|
+
exposedNets?: string[] | undefined;
|
|
89726
89793
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
89727
89794
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
89728
89795
|
schMaxTraceDistance?: number | undefined;
|
|
@@ -90068,6 +90135,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
90068
90135
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
90069
90136
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
90070
90137
|
circuitJson?: any[] | undefined;
|
|
90138
|
+
exposedNets?: string[] | undefined;
|
|
90071
90139
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
90072
90140
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
90073
90141
|
schMaxTraceDistance?: string | number | undefined;
|
|
@@ -90255,6 +90323,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
90255
90323
|
name: z.ZodString;
|
|
90256
90324
|
displayName: z.ZodOptional<z.ZodString>;
|
|
90257
90325
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
90326
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
90258
90327
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
90259
90328
|
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<{
|
|
90260
90329
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -94112,6 +94181,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
94112
94181
|
mfn?: string | undefined;
|
|
94113
94182
|
manufacturerPartNumber?: string | undefined;
|
|
94114
94183
|
schSectionName?: string | undefined;
|
|
94184
|
+
schSheetName?: string | undefined;
|
|
94115
94185
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
94116
94186
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
94117
94187
|
schSize?: number | "default" | "xs" | "sm" | "md" | undefined;
|
|
@@ -94701,6 +94771,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
94701
94771
|
mfn?: string | undefined;
|
|
94702
94772
|
manufacturerPartNumber?: string | undefined;
|
|
94703
94773
|
schSectionName?: string | undefined;
|
|
94774
|
+
schSheetName?: string | undefined;
|
|
94704
94775
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
94705
94776
|
schShowRatings?: boolean | undefined;
|
|
94706
94777
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -94848,6 +94919,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
94848
94919
|
name: z.ZodString;
|
|
94849
94920
|
displayName: z.ZodOptional<z.ZodString>;
|
|
94850
94921
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
94922
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
94851
94923
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
94852
94924
|
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<{
|
|
94853
94925
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -98693,6 +98765,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
98693
98765
|
mfn?: string | undefined;
|
|
98694
98766
|
manufacturerPartNumber?: string | undefined;
|
|
98695
98767
|
schSectionName?: string | undefined;
|
|
98768
|
+
schSheetName?: string | undefined;
|
|
98696
98769
|
soldermaskPullback?: number | undefined;
|
|
98697
98770
|
}, {
|
|
98698
98771
|
name: string;
|
|
@@ -99274,6 +99347,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
99274
99347
|
mfn?: string | undefined;
|
|
99275
99348
|
manufacturerPartNumber?: string | undefined;
|
|
99276
99349
|
schSectionName?: string | undefined;
|
|
99350
|
+
schSheetName?: string | undefined;
|
|
99277
99351
|
soldermaskPullback?: string | number | undefined;
|
|
99278
99352
|
}>;
|
|
99279
99353
|
|
|
@@ -104393,6 +104467,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
104393
104467
|
name: z.ZodString;
|
|
104394
104468
|
displayName: z.ZodOptional<z.ZodString>;
|
|
104395
104469
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
104470
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
104396
104471
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
104397
104472
|
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<{
|
|
104398
104473
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -108239,6 +108314,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
108239
108314
|
mfn?: string | undefined;
|
|
108240
108315
|
manufacturerPartNumber?: string | undefined;
|
|
108241
108316
|
schSectionName?: string | undefined;
|
|
108317
|
+
schSheetName?: string | undefined;
|
|
108242
108318
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
108243
108319
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
108244
108320
|
capacity?: number | undefined;
|
|
@@ -108822,6 +108898,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
108822
108898
|
mfn?: string | undefined;
|
|
108823
108899
|
manufacturerPartNumber?: string | undefined;
|
|
108824
108900
|
schSectionName?: string | undefined;
|
|
108901
|
+
schSheetName?: string | undefined;
|
|
108825
108902
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
108826
108903
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
108827
108904
|
capacity?: string | number | undefined;
|
|
@@ -109416,6 +109493,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
109416
109493
|
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
109417
109494
|
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
109418
109495
|
circuitJson: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
109496
|
+
exposedNets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
109419
109497
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
109420
109498
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
109421
109499
|
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -110005,6 +110083,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
110005
110083
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
110006
110084
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
110007
110085
|
circuitJson?: any[] | undefined;
|
|
110086
|
+
exposedNets?: string[] | undefined;
|
|
110008
110087
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
110009
110088
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
110010
110089
|
schMaxTraceDistance?: number | undefined;
|
|
@@ -110363,6 +110442,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
110363
110442
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
110364
110443
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
110365
110444
|
circuitJson?: any[] | undefined;
|
|
110445
|
+
exposedNets?: string[] | undefined;
|
|
110366
110446
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
110367
110447
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
110368
110448
|
schMaxTraceDistance?: string | number | undefined;
|
|
@@ -110630,6 +110710,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
110630
110710
|
name: z.ZodString;
|
|
110631
110711
|
displayName: z.ZodOptional<z.ZodString>;
|
|
110632
110712
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
110713
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
110633
110714
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
110634
110715
|
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<{
|
|
110635
110716
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -114643,6 +114724,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
114643
114724
|
mfn?: string | undefined;
|
|
114644
114725
|
manufacturerPartNumber?: string | undefined;
|
|
114645
114726
|
schSectionName?: string | undefined;
|
|
114727
|
+
schSheetName?: string | undefined;
|
|
114646
114728
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
114647
114729
|
schPinArrangement?: {
|
|
114648
114730
|
leftSize?: number | undefined;
|
|
@@ -115274,6 +115356,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
115274
115356
|
mfn?: string | undefined;
|
|
115275
115357
|
manufacturerPartNumber?: string | undefined;
|
|
115276
115358
|
schSectionName?: string | undefined;
|
|
115359
|
+
schSheetName?: string | undefined;
|
|
115277
115360
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
115278
115361
|
schPinArrangement?: {
|
|
115279
115362
|
leftSize?: number | undefined;
|
|
@@ -115491,6 +115574,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
115491
115574
|
name: z.ZodString;
|
|
115492
115575
|
displayName: z.ZodOptional<z.ZodString>;
|
|
115493
115576
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
115577
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
115494
115578
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
115495
115579
|
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<{
|
|
115496
115580
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -119631,6 +119715,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
119631
119715
|
mfn?: string | undefined;
|
|
119632
119716
|
manufacturerPartNumber?: string | undefined;
|
|
119633
119717
|
schSectionName?: string | undefined;
|
|
119718
|
+
schSheetName?: string | undefined;
|
|
119634
119719
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
119635
119720
|
schPinArrangement?: {
|
|
119636
119721
|
leftSize?: number | undefined;
|
|
@@ -120288,6 +120373,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
120288
120373
|
mfn?: string | undefined;
|
|
120289
120374
|
manufacturerPartNumber?: string | undefined;
|
|
120290
120375
|
schSectionName?: string | undefined;
|
|
120376
|
+
schSheetName?: string | undefined;
|
|
120291
120377
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
120292
120378
|
schPinArrangement?: {
|
|
120293
120379
|
leftSize?: number | undefined;
|
|
@@ -120950,6 +121036,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
120950
121036
|
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
120951
121037
|
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
120952
121038
|
circuitJson: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
121039
|
+
exposedNets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
120953
121040
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
120954
121041
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
120955
121042
|
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -121394,6 +121481,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121394
121481
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
121395
121482
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
121396
121483
|
circuitJson?: any[] | undefined;
|
|
121484
|
+
exposedNets?: string[] | undefined;
|
|
121397
121485
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
121398
121486
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
121399
121487
|
schMaxTraceDistance?: number | undefined;
|
|
@@ -121713,6 +121801,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121713
121801
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
121714
121802
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
121715
121803
|
circuitJson?: any[] | undefined;
|
|
121804
|
+
exposedNets?: string[] | undefined;
|
|
121716
121805
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
121717
121806
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
121718
121807
|
schMaxTraceDistance?: string | number | undefined;
|
|
@@ -122077,6 +122166,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
122077
122166
|
name: z.ZodString;
|
|
122078
122167
|
displayName: z.ZodOptional<z.ZodString>;
|
|
122079
122168
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
122169
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
122080
122170
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
122081
122171
|
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<{
|
|
122082
122172
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -125922,6 +126012,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
125922
126012
|
mfn?: string | undefined;
|
|
125923
126013
|
manufacturerPartNumber?: string | undefined;
|
|
125924
126014
|
schSectionName?: string | undefined;
|
|
126015
|
+
schSheetName?: string | undefined;
|
|
125925
126016
|
connections?: Partial<Record<"pin1" | "pin2" | "source" | "pin3" | "emitter" | "collector" | "base" | "gate" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
125926
126017
|
}, {
|
|
125927
126018
|
type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
|
|
@@ -126503,6 +126594,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
126503
126594
|
mfn?: string | undefined;
|
|
126504
126595
|
manufacturerPartNumber?: string | undefined;
|
|
126505
126596
|
schSectionName?: string | undefined;
|
|
126597
|
+
schSheetName?: string | undefined;
|
|
126506
126598
|
connections?: Partial<Record<"pin1" | "pin2" | "source" | "pin3" | "emitter" | "collector" | "base" | "gate" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
126507
126599
|
}>;
|
|
126508
126600
|
declare const transistorPins: readonly ["pin1", "emitter", "pin2", "collector", "pin3", "base"];
|
|
@@ -126606,6 +126698,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
126606
126698
|
name: z.ZodString;
|
|
126607
126699
|
displayName: z.ZodOptional<z.ZodString>;
|
|
126608
126700
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
126701
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
126609
126702
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
126610
126703
|
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<{
|
|
126611
126704
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -130452,6 +130545,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
130452
130545
|
mfn?: string | undefined;
|
|
130453
130546
|
manufacturerPartNumber?: string | undefined;
|
|
130454
130547
|
schSectionName?: string | undefined;
|
|
130548
|
+
schSheetName?: string | undefined;
|
|
130455
130549
|
}, {
|
|
130456
130550
|
name: string;
|
|
130457
130551
|
channelType: "n" | "p";
|
|
@@ -131033,6 +131127,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
131033
131127
|
mfn?: string | undefined;
|
|
131034
131128
|
manufacturerPartNumber?: string | undefined;
|
|
131035
131129
|
schSectionName?: string | undefined;
|
|
131130
|
+
schSheetName?: string | undefined;
|
|
131036
131131
|
}>;
|
|
131037
131132
|
declare const mosfetPins: readonly ["pin1", "drain", "pin2", "source", "pin3", "gate"];
|
|
131038
131133
|
type MosfetPinLabels = (typeof mosfetPins)[number];
|
|
@@ -131142,6 +131237,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
131142
131237
|
name: z.ZodString;
|
|
131143
131238
|
displayName: z.ZodOptional<z.ZodString>;
|
|
131144
131239
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
131240
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
131145
131241
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
131146
131242
|
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<{
|
|
131147
131243
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -134985,6 +135081,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
134985
135081
|
mfn?: string | undefined;
|
|
134986
135082
|
manufacturerPartNumber?: string | undefined;
|
|
134987
135083
|
schSectionName?: string | undefined;
|
|
135084
|
+
schSheetName?: string | undefined;
|
|
134988
135085
|
connections?: Partial<Record<"output" | "inverting_input" | "non_inverting_input" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
|
|
134989
135086
|
}, {
|
|
134990
135087
|
name: string;
|
|
@@ -135565,6 +135662,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
135565
135662
|
mfn?: string | undefined;
|
|
135566
135663
|
manufacturerPartNumber?: string | undefined;
|
|
135567
135664
|
schSectionName?: string | undefined;
|
|
135665
|
+
schSheetName?: string | undefined;
|
|
135568
135666
|
connections?: Partial<Record<"output" | "inverting_input" | "non_inverting_input" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
|
|
135569
135667
|
}>;
|
|
135570
135668
|
/**
|
|
@@ -135675,6 +135773,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
135675
135773
|
name: z.ZodString;
|
|
135676
135774
|
displayName: z.ZodOptional<z.ZodString>;
|
|
135677
135775
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
135776
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
135678
135777
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
135679
135778
|
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<{
|
|
135680
135779
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -139522,6 +139621,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
139522
139621
|
mfn?: string | undefined;
|
|
139523
139622
|
manufacturerPartNumber?: string | undefined;
|
|
139524
139623
|
schSectionName?: string | undefined;
|
|
139624
|
+
schSheetName?: string | undefined;
|
|
139525
139625
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
139526
139626
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
139527
139627
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -140105,6 +140205,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
140105
140205
|
mfn?: string | undefined;
|
|
140106
140206
|
manufacturerPartNumber?: string | undefined;
|
|
140107
140207
|
schSectionName?: string | undefined;
|
|
140208
|
+
schSheetName?: string | undefined;
|
|
140108
140209
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
140109
140210
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
140110
140211
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -140204,6 +140305,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
140204
140305
|
name: z.ZodString;
|
|
140205
140306
|
displayName: z.ZodOptional<z.ZodString>;
|
|
140206
140307
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
140308
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
140207
140309
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
140208
140310
|
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<{
|
|
140209
140311
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -144056,6 +144158,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
144056
144158
|
mfn?: string | undefined;
|
|
144057
144159
|
manufacturerPartNumber?: string | undefined;
|
|
144058
144160
|
schSectionName?: string | undefined;
|
|
144161
|
+
schSheetName?: string | undefined;
|
|
144059
144162
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
144060
144163
|
standard?: boolean | undefined;
|
|
144061
144164
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -144643,6 +144746,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
144643
144746
|
mfn?: string | undefined;
|
|
144644
144747
|
manufacturerPartNumber?: string | undefined;
|
|
144645
144748
|
schSectionName?: string | undefined;
|
|
144749
|
+
schSheetName?: string | undefined;
|
|
144646
144750
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
144647
144751
|
standard?: boolean | undefined;
|
|
144648
144752
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -145230,6 +145334,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
145230
145334
|
mfn?: string | undefined;
|
|
145231
145335
|
manufacturerPartNumber?: string | undefined;
|
|
145232
145336
|
schSectionName?: string | undefined;
|
|
145337
|
+
schSheetName?: string | undefined;
|
|
145233
145338
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
145234
145339
|
standard?: boolean | undefined;
|
|
145235
145340
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -145817,6 +145922,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
145817
145922
|
mfn?: string | undefined;
|
|
145818
145923
|
manufacturerPartNumber?: string | undefined;
|
|
145819
145924
|
schSectionName?: string | undefined;
|
|
145925
|
+
schSheetName?: string | undefined;
|
|
145820
145926
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
145821
145927
|
standard?: boolean | undefined;
|
|
145822
145928
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -146410,6 +146516,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
146410
146516
|
mfn?: string | undefined;
|
|
146411
146517
|
manufacturerPartNumber?: string | undefined;
|
|
146412
146518
|
schSectionName?: string | undefined;
|
|
146519
|
+
schSheetName?: string | undefined;
|
|
146413
146520
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
146414
146521
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
146415
146522
|
}, {
|
|
@@ -146991,6 +147098,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
146991
147098
|
mfn?: string | undefined;
|
|
146992
147099
|
manufacturerPartNumber?: string | undefined;
|
|
146993
147100
|
schSectionName?: string | undefined;
|
|
147101
|
+
schSheetName?: string | undefined;
|
|
146994
147102
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
146995
147103
|
standard?: boolean | undefined;
|
|
146996
147104
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -147118,6 +147226,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
147118
147226
|
name: z.ZodString;
|
|
147119
147227
|
displayName: z.ZodOptional<z.ZodString>;
|
|
147120
147228
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
147229
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
147121
147230
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
147122
147231
|
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<{
|
|
147123
147232
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -150966,6 +151075,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
150966
151075
|
mfn?: string | undefined;
|
|
150967
151076
|
manufacturerPartNumber?: string | undefined;
|
|
150968
151077
|
schSectionName?: string | undefined;
|
|
151078
|
+
schSheetName?: string | undefined;
|
|
150969
151079
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
150970
151080
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
150971
151081
|
color?: string | undefined;
|
|
@@ -151551,6 +151661,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
151551
151661
|
mfn?: string | undefined;
|
|
151552
151662
|
manufacturerPartNumber?: string | undefined;
|
|
151553
151663
|
schSectionName?: string | undefined;
|
|
151664
|
+
schSheetName?: string | undefined;
|
|
151554
151665
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
151555
151666
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
151556
151667
|
color?: string | undefined;
|
|
@@ -151669,6 +151780,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
151669
151780
|
name: z.ZodString;
|
|
151670
151781
|
displayName: z.ZodOptional<z.ZodString>;
|
|
151671
151782
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
151783
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
151672
151784
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
151673
151785
|
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<{
|
|
151674
151786
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -155525,6 +155637,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
155525
155637
|
mfn?: string | undefined;
|
|
155526
155638
|
manufacturerPartNumber?: string | undefined;
|
|
155527
155639
|
schSectionName?: string | undefined;
|
|
155640
|
+
schSheetName?: string | undefined;
|
|
155528
155641
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
155529
155642
|
spst?: boolean | undefined;
|
|
155530
155643
|
spdt?: boolean | undefined;
|
|
@@ -156115,6 +156228,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
156115
156228
|
mfn?: string | undefined;
|
|
156116
156229
|
manufacturerPartNumber?: string | undefined;
|
|
156117
156230
|
schSectionName?: string | undefined;
|
|
156231
|
+
schSheetName?: string | undefined;
|
|
156118
156232
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
156119
156233
|
spst?: boolean | undefined;
|
|
156120
156234
|
spdt?: boolean | undefined;
|
|
@@ -156706,6 +156820,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
156706
156820
|
mfn?: string | undefined;
|
|
156707
156821
|
manufacturerPartNumber?: string | undefined;
|
|
156708
156822
|
schSectionName?: string | undefined;
|
|
156823
|
+
schSheetName?: string | undefined;
|
|
156709
156824
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
156710
156825
|
spst?: boolean | undefined;
|
|
156711
156826
|
spdt?: boolean | undefined;
|
|
@@ -157850,6 +157965,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
157850
157965
|
name: z.ZodString;
|
|
157851
157966
|
displayName: z.ZodOptional<z.ZodString>;
|
|
157852
157967
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
157968
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
157853
157969
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
157854
157970
|
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<{
|
|
157855
157971
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -161706,6 +161822,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
161706
161822
|
mfn?: string | undefined;
|
|
161707
161823
|
manufacturerPartNumber?: string | undefined;
|
|
161708
161824
|
schSectionName?: string | undefined;
|
|
161825
|
+
schSheetName?: string | undefined;
|
|
161709
161826
|
width?: number | undefined;
|
|
161710
161827
|
height?: number | undefined;
|
|
161711
161828
|
connections?: {
|
|
@@ -162293,6 +162410,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
162293
162410
|
mfn?: string | undefined;
|
|
162294
162411
|
manufacturerPartNumber?: string | undefined;
|
|
162295
162412
|
schSectionName?: string | undefined;
|
|
162413
|
+
schSheetName?: string | undefined;
|
|
162296
162414
|
width?: string | number | undefined;
|
|
162297
162415
|
height?: string | number | undefined;
|
|
162298
162416
|
connections?: {
|
|
@@ -162880,6 +162998,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
162880
162998
|
mfn?: string | undefined;
|
|
162881
162999
|
manufacturerPartNumber?: string | undefined;
|
|
162882
163000
|
schSectionName?: string | undefined;
|
|
163001
|
+
schSheetName?: string | undefined;
|
|
162883
163002
|
width?: number | undefined;
|
|
162884
163003
|
height?: number | undefined;
|
|
162885
163004
|
connections?: {
|
|
@@ -163467,6 +163586,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
163467
163586
|
mfn?: string | undefined;
|
|
163468
163587
|
manufacturerPartNumber?: string | undefined;
|
|
163469
163588
|
schSectionName?: string | undefined;
|
|
163589
|
+
schSheetName?: string | undefined;
|
|
163470
163590
|
width?: string | number | undefined;
|
|
163471
163591
|
height?: string | number | undefined;
|
|
163472
163592
|
connections?: {
|
|
@@ -164882,6 +165002,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
164882
165002
|
name: z.ZodString;
|
|
164883
165003
|
displayName: z.ZodOptional<z.ZodString>;
|
|
164884
165004
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
165005
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
164885
165006
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
164886
165007
|
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<{
|
|
164887
165008
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -168726,6 +168847,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
168726
168847
|
mfn?: string | undefined;
|
|
168727
168848
|
manufacturerPartNumber?: string | undefined;
|
|
168728
168849
|
schSectionName?: string | undefined;
|
|
168850
|
+
schSheetName?: string | undefined;
|
|
168729
168851
|
}, {
|
|
168730
168852
|
name: string;
|
|
168731
168853
|
voltage: string | number;
|
|
@@ -169306,6 +169428,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
169306
169428
|
mfn?: string | undefined;
|
|
169307
169429
|
manufacturerPartNumber?: string | undefined;
|
|
169308
169430
|
schSectionName?: string | undefined;
|
|
169431
|
+
schSheetName?: string | undefined;
|
|
169309
169432
|
}>;
|
|
169310
169433
|
type PowerSourceProps = z.input<typeof powerSourceProps>;
|
|
169311
169434
|
|
|
@@ -169420,6 +169543,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
169420
169543
|
name: z.ZodString;
|
|
169421
169544
|
displayName: z.ZodOptional<z.ZodString>;
|
|
169422
169545
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
169546
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
169423
169547
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
169424
169548
|
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<{
|
|
169425
169549
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -173274,6 +173398,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
173274
173398
|
mfn?: string | undefined;
|
|
173275
173399
|
manufacturerPartNumber?: string | undefined;
|
|
173276
173400
|
schSectionName?: string | undefined;
|
|
173401
|
+
schSheetName?: string | undefined;
|
|
173277
173402
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
173278
173403
|
frequency?: number | undefined;
|
|
173279
173404
|
voltage?: number | undefined;
|
|
@@ -173865,6 +173990,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
173865
173990
|
mfn?: string | undefined;
|
|
173866
173991
|
manufacturerPartNumber?: string | undefined;
|
|
173867
173992
|
schSectionName?: string | undefined;
|
|
173993
|
+
schSheetName?: string | undefined;
|
|
173868
173994
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
173869
173995
|
frequency?: string | number | undefined;
|
|
173870
173996
|
voltage?: string | number | undefined;
|
|
@@ -173985,6 +174111,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
173985
174111
|
name: z.ZodString;
|
|
173986
174112
|
displayName: z.ZodOptional<z.ZodString>;
|
|
173987
174113
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
174114
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
173988
174115
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
173989
174116
|
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<{
|
|
173990
174117
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -177834,6 +177961,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
177834
177961
|
mfn?: string | undefined;
|
|
177835
177962
|
manufacturerPartNumber?: string | undefined;
|
|
177836
177963
|
schSectionName?: string | undefined;
|
|
177964
|
+
schSheetName?: string | undefined;
|
|
177837
177965
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
177838
177966
|
frequency?: number | undefined;
|
|
177839
177967
|
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
@@ -178420,6 +178548,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
178420
178548
|
mfn?: string | undefined;
|
|
178421
178549
|
manufacturerPartNumber?: string | undefined;
|
|
178422
178550
|
schSectionName?: string | undefined;
|
|
178551
|
+
schSheetName?: string | undefined;
|
|
178423
178552
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
178424
178553
|
frequency?: string | number | undefined;
|
|
178425
178554
|
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
@@ -178534,6 +178663,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
178534
178663
|
name: z.ZodString;
|
|
178535
178664
|
displayName: z.ZodOptional<z.ZodString>;
|
|
178536
178665
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
178666
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
178537
178667
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
178538
178668
|
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<{
|
|
178539
178669
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -182385,6 +182515,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
182385
182515
|
mfn?: string | undefined;
|
|
182386
182516
|
manufacturerPartNumber?: string | undefined;
|
|
182387
182517
|
schSectionName?: string | undefined;
|
|
182518
|
+
schSheetName?: string | undefined;
|
|
182388
182519
|
color?: string | undefined;
|
|
182389
182520
|
referenceTo?: string | undefined;
|
|
182390
182521
|
graphDisplayName?: string | undefined;
|
|
@@ -182971,6 +183102,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
182971
183102
|
mfn?: string | undefined;
|
|
182972
183103
|
manufacturerPartNumber?: string | undefined;
|
|
182973
183104
|
schSectionName?: string | undefined;
|
|
183105
|
+
schSheetName?: string | undefined;
|
|
182974
183106
|
color?: string | undefined;
|
|
182975
183107
|
referenceTo?: string | undefined;
|
|
182976
183108
|
graphDisplayName?: string | undefined;
|
|
@@ -183083,6 +183215,7 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
183083
183215
|
name: z.ZodString;
|
|
183084
183216
|
displayName: z.ZodOptional<z.ZodString>;
|
|
183085
183217
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
183218
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
183086
183219
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
183087
183220
|
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<{
|
|
183088
183221
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -186932,6 +187065,7 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
186932
187065
|
mfn?: string | undefined;
|
|
186933
187066
|
manufacturerPartNumber?: string | undefined;
|
|
186934
187067
|
schSectionName?: string | undefined;
|
|
187068
|
+
schSheetName?: string | undefined;
|
|
186935
187069
|
color?: string | undefined;
|
|
186936
187070
|
graphDisplayName?: string | undefined;
|
|
186937
187071
|
graphCenter?: number | undefined;
|
|
@@ -187517,6 +187651,7 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
187517
187651
|
mfn?: string | undefined;
|
|
187518
187652
|
manufacturerPartNumber?: string | undefined;
|
|
187519
187653
|
schSectionName?: string | undefined;
|
|
187654
|
+
schSheetName?: string | undefined;
|
|
187520
187655
|
color?: string | undefined;
|
|
187521
187656
|
graphDisplayName?: string | undefined;
|
|
187522
187657
|
graphCenter?: number | undefined;
|
|
@@ -188076,6 +188211,26 @@ declare const schematicSectionProps: z.ZodObject<{
|
|
|
188076
188211
|
}>;
|
|
188077
188212
|
type InferredSchematicSectionProps = z.input<typeof schematicSectionProps>;
|
|
188078
188213
|
|
|
188214
|
+
interface SchematicSheetProps {
|
|
188215
|
+
name: string;
|
|
188216
|
+
displayName: string;
|
|
188217
|
+
children?: any;
|
|
188218
|
+
}
|
|
188219
|
+
declare const schematicSheetProps: z.ZodObject<{
|
|
188220
|
+
name: z.ZodString;
|
|
188221
|
+
displayName: z.ZodString;
|
|
188222
|
+
children: z.ZodOptional<z.ZodAny>;
|
|
188223
|
+
}, "strip", z.ZodTypeAny, {
|
|
188224
|
+
name: string;
|
|
188225
|
+
displayName: string;
|
|
188226
|
+
children?: any;
|
|
188227
|
+
}, {
|
|
188228
|
+
name: string;
|
|
188229
|
+
displayName: string;
|
|
188230
|
+
children?: any;
|
|
188231
|
+
}>;
|
|
188232
|
+
type InferredSchematicSheetProps = z.input<typeof schematicSheetProps>;
|
|
188233
|
+
|
|
188079
188234
|
declare const copperTextProps: z.ZodObject<{
|
|
188080
188235
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
188081
188236
|
pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -190560,4 +190715,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
190560
190715
|
}
|
|
190561
190716
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
190562
190717
|
|
|
190563
|
-
export { type AmmeterPinLabels, type AmmeterProps, 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 CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type 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 JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, 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 RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, 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, customDrcCheckFn, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, 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, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
190718
|
+
export { type AmmeterPinLabels, type AmmeterProps, 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 CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicSheetProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, 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 RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSheetProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, 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, customDrcCheckFn, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, 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, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSheetProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|