@tscircuit/props 0.0.554 → 0.0.556
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 +25 -2
- package/dist/index.d.ts +161 -88
- package/dist/index.js +133 -126
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +11 -1
- package/lib/components/ammeter.ts +8 -16
- package/lib/components/schematic-sheet.ts +18 -0
- package/lib/components/voltageprobe.ts +8 -16
- 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"];
|
|
@@ -29713,6 +29723,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
29713
29723
|
name: z.ZodString;
|
|
29714
29724
|
displayName: z.ZodOptional<z.ZodString>;
|
|
29715
29725
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
29726
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
29716
29727
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
29717
29728
|
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
29729
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -33853,6 +33864,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
33853
33864
|
mfn?: string | undefined;
|
|
33854
33865
|
manufacturerPartNumber?: string | undefined;
|
|
33855
33866
|
schSectionName?: string | undefined;
|
|
33867
|
+
schSheetName?: string | undefined;
|
|
33856
33868
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
33857
33869
|
schPinArrangement?: {
|
|
33858
33870
|
leftSize?: number | undefined;
|
|
@@ -34510,6 +34522,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
34510
34522
|
mfn?: string | undefined;
|
|
34511
34523
|
manufacturerPartNumber?: string | undefined;
|
|
34512
34524
|
schSectionName?: string | undefined;
|
|
34525
|
+
schSheetName?: string | undefined;
|
|
34513
34526
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
34514
34527
|
schPinArrangement?: {
|
|
34515
34528
|
leftSize?: number | undefined;
|
|
@@ -34684,6 +34697,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
34684
34697
|
name: z.ZodString;
|
|
34685
34698
|
displayName: z.ZodOptional<z.ZodString>;
|
|
34686
34699
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
34700
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
34687
34701
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
34688
34702
|
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
34703
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -38824,6 +38838,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
38824
38838
|
mfn?: string | undefined;
|
|
38825
38839
|
manufacturerPartNumber?: string | undefined;
|
|
38826
38840
|
schSectionName?: string | undefined;
|
|
38841
|
+
schSheetName?: string | undefined;
|
|
38827
38842
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
38828
38843
|
schPinArrangement?: {
|
|
38829
38844
|
leftSize?: number | undefined;
|
|
@@ -39481,6 +39496,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
39481
39496
|
mfn?: string | undefined;
|
|
39482
39497
|
manufacturerPartNumber?: string | undefined;
|
|
39483
39498
|
schSectionName?: string | undefined;
|
|
39499
|
+
schSheetName?: string | undefined;
|
|
39484
39500
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
39485
39501
|
schPinArrangement?: {
|
|
39486
39502
|
leftSize?: number | undefined;
|
|
@@ -39654,6 +39670,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39654
39670
|
name: z.ZodString;
|
|
39655
39671
|
displayName: z.ZodOptional<z.ZodString>;
|
|
39656
39672
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
39673
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
39657
39674
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
39658
39675
|
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
39676
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -43794,6 +43811,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
43794
43811
|
mfn?: string | undefined;
|
|
43795
43812
|
manufacturerPartNumber?: string | undefined;
|
|
43796
43813
|
schSectionName?: string | undefined;
|
|
43814
|
+
schSheetName?: string | undefined;
|
|
43797
43815
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
43798
43816
|
schPinArrangement?: {
|
|
43799
43817
|
leftSize?: number | undefined;
|
|
@@ -44451,6 +44469,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
44451
44469
|
mfn?: string | undefined;
|
|
44452
44470
|
manufacturerPartNumber?: string | undefined;
|
|
44453
44471
|
schSectionName?: string | undefined;
|
|
44472
|
+
schSheetName?: string | undefined;
|
|
44454
44473
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
44455
44474
|
schPinArrangement?: {
|
|
44456
44475
|
leftSize?: number | undefined;
|
|
@@ -44657,6 +44676,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44657
44676
|
name: z.ZodString;
|
|
44658
44677
|
displayName: z.ZodOptional<z.ZodString>;
|
|
44659
44678
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
44679
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
44660
44680
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
44661
44681
|
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
44682
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -48784,6 +48804,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
48784
48804
|
mfn?: string | undefined;
|
|
48785
48805
|
manufacturerPartNumber?: string | undefined;
|
|
48786
48806
|
schSectionName?: string | undefined;
|
|
48807
|
+
schSheetName?: string | undefined;
|
|
48787
48808
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
48788
48809
|
schPinArrangement?: {
|
|
48789
48810
|
leftSize?: number | undefined;
|
|
@@ -49434,6 +49455,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
49434
49455
|
mfn?: string | undefined;
|
|
49435
49456
|
manufacturerPartNumber?: string | undefined;
|
|
49436
49457
|
schSectionName?: string | undefined;
|
|
49458
|
+
schSheetName?: string | undefined;
|
|
49437
49459
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
49438
49460
|
schPinArrangement?: {
|
|
49439
49461
|
leftSize?: number | undefined;
|
|
@@ -49609,6 +49631,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49609
49631
|
name: z.ZodString;
|
|
49610
49632
|
displayName: z.ZodOptional<z.ZodString>;
|
|
49611
49633
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
49634
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
49612
49635
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
49613
49636
|
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
49637
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -53739,6 +53762,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
53739
53762
|
mfn?: string | undefined;
|
|
53740
53763
|
manufacturerPartNumber?: string | undefined;
|
|
53741
53764
|
schSectionName?: string | undefined;
|
|
53765
|
+
schSheetName?: string | undefined;
|
|
53742
53766
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
53743
53767
|
schPinArrangement?: {
|
|
53744
53768
|
leftSize?: number | undefined;
|
|
@@ -54391,6 +54415,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
54391
54415
|
mfn?: string | undefined;
|
|
54392
54416
|
manufacturerPartNumber?: string | undefined;
|
|
54393
54417
|
schSectionName?: string | undefined;
|
|
54418
|
+
schSheetName?: string | undefined;
|
|
54394
54419
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
54395
54420
|
schPinArrangement?: {
|
|
54396
54421
|
leftSize?: number | undefined;
|
|
@@ -54564,6 +54589,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54564
54589
|
name: z.ZodString;
|
|
54565
54590
|
displayName: z.ZodOptional<z.ZodString>;
|
|
54566
54591
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
54592
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
54567
54593
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
54568
54594
|
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
54595
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -58706,6 +58732,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
58706
58732
|
mfn?: string | undefined;
|
|
58707
58733
|
manufacturerPartNumber?: string | undefined;
|
|
58708
58734
|
schSectionName?: string | undefined;
|
|
58735
|
+
schSheetName?: string | undefined;
|
|
58709
58736
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
58710
58737
|
schPinArrangement?: {
|
|
58711
58738
|
leftSize?: number | undefined;
|
|
@@ -59364,6 +59391,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
59364
59391
|
mfn?: string | undefined;
|
|
59365
59392
|
manufacturerPartNumber?: string | undefined;
|
|
59366
59393
|
schSectionName?: string | undefined;
|
|
59394
|
+
schSheetName?: string | undefined;
|
|
59367
59395
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
59368
59396
|
schPinArrangement?: {
|
|
59369
59397
|
leftSize?: number | undefined;
|
|
@@ -59548,6 +59576,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59548
59576
|
name: z.ZodString;
|
|
59549
59577
|
displayName: z.ZodOptional<z.ZodString>;
|
|
59550
59578
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
59579
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
59551
59580
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
59552
59581
|
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
59582
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -63393,6 +63422,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
63393
63422
|
mfn?: string | undefined;
|
|
63394
63423
|
manufacturerPartNumber?: string | undefined;
|
|
63395
63424
|
schSectionName?: string | undefined;
|
|
63425
|
+
schSheetName?: string | undefined;
|
|
63396
63426
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
63397
63427
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
63398
63428
|
standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
|
|
@@ -63975,6 +64005,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
63975
64005
|
mfn?: string | undefined;
|
|
63976
64006
|
manufacturerPartNumber?: string | undefined;
|
|
63977
64007
|
schSectionName?: string | undefined;
|
|
64008
|
+
schSheetName?: string | undefined;
|
|
63978
64009
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
63979
64010
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
63980
64011
|
standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
|
|
@@ -64101,6 +64132,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
64101
64132
|
name: z.ZodString;
|
|
64102
64133
|
displayName: z.ZodOptional<z.ZodString>;
|
|
64103
64134
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
64135
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
64104
64136
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
64105
64137
|
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
64138
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -67949,6 +67981,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
67949
67981
|
mfn?: string | undefined;
|
|
67950
67982
|
manufacturerPartNumber?: string | undefined;
|
|
67951
67983
|
schSectionName?: string | undefined;
|
|
67984
|
+
schSheetName?: string | undefined;
|
|
67952
67985
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
67953
67986
|
voltageRating?: string | number | undefined;
|
|
67954
67987
|
schShowRatings?: boolean | undefined;
|
|
@@ -68533,6 +68566,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
68533
68566
|
mfn?: string | undefined;
|
|
68534
68567
|
manufacturerPartNumber?: string | undefined;
|
|
68535
68568
|
schSectionName?: string | undefined;
|
|
68569
|
+
schSheetName?: string | undefined;
|
|
68536
68570
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
68537
68571
|
voltageRating?: string | number | undefined;
|
|
68538
68572
|
schShowRatings?: boolean | undefined;
|
|
@@ -70579,6 +70613,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
70579
70613
|
name: z.ZodString;
|
|
70580
70614
|
displayName: z.ZodOptional<z.ZodString>;
|
|
70581
70615
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
70616
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
70582
70617
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
70583
70618
|
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
70619
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -74432,6 +74467,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
74432
74467
|
mfn?: string | undefined;
|
|
74433
74468
|
manufacturerPartNumber?: string | undefined;
|
|
74434
74469
|
schSectionName?: string | undefined;
|
|
74470
|
+
schSheetName?: string | undefined;
|
|
74435
74471
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
74436
74472
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
74437
74473
|
tolerance?: number | undefined;
|
|
@@ -75020,6 +75056,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
75020
75056
|
mfn?: string | undefined;
|
|
75021
75057
|
manufacturerPartNumber?: string | undefined;
|
|
75022
75058
|
schSectionName?: string | undefined;
|
|
75059
|
+
schSheetName?: string | undefined;
|
|
75023
75060
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
75024
75061
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
75025
75062
|
tolerance?: string | number | undefined;
|
|
@@ -75133,6 +75170,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
75133
75170
|
name: z.ZodString;
|
|
75134
75171
|
displayName: z.ZodOptional<z.ZodString>;
|
|
75135
75172
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
75173
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
75136
75174
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
75137
75175
|
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
75176
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -78979,6 +79017,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
78979
79017
|
mfn?: string | undefined;
|
|
78980
79018
|
manufacturerPartNumber?: string | undefined;
|
|
78981
79019
|
schSectionName?: string | undefined;
|
|
79020
|
+
schSheetName?: string | undefined;
|
|
78982
79021
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3", string | readonly string[] | string[]>> | undefined;
|
|
78983
79022
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
78984
79023
|
}, {
|
|
@@ -79561,6 +79600,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
79561
79600
|
mfn?: string | undefined;
|
|
79562
79601
|
manufacturerPartNumber?: string | undefined;
|
|
79563
79602
|
schSectionName?: string | undefined;
|
|
79603
|
+
schSheetName?: string | undefined;
|
|
79564
79604
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3", string | readonly string[] | string[]>> | undefined;
|
|
79565
79605
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
79566
79606
|
}>;
|
|
@@ -79669,6 +79709,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
79669
79709
|
name: z.ZodString;
|
|
79670
79710
|
displayName: z.ZodOptional<z.ZodString>;
|
|
79671
79711
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
79712
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
79672
79713
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
79673
79714
|
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
79715
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -83519,6 +83560,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
83519
83560
|
mfn?: string | undefined;
|
|
83520
83561
|
manufacturerPartNumber?: string | undefined;
|
|
83521
83562
|
schSectionName?: string | undefined;
|
|
83563
|
+
schSheetName?: string | undefined;
|
|
83522
83564
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
83523
83565
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
83524
83566
|
pinVariant?: "two_pin" | "four_pin" | undefined;
|
|
@@ -84104,6 +84146,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
84104
84146
|
mfn?: string | undefined;
|
|
84105
84147
|
manufacturerPartNumber?: string | undefined;
|
|
84106
84148
|
schSectionName?: string | undefined;
|
|
84149
|
+
schSheetName?: string | undefined;
|
|
84107
84150
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
84108
84151
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
84109
84152
|
pinVariant?: "two_pin" | "four_pin" | undefined;
|
|
@@ -84210,6 +84253,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
84210
84253
|
name: z.ZodString;
|
|
84211
84254
|
displayName: z.ZodOptional<z.ZodString>;
|
|
84212
84255
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
84256
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
84213
84257
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
84214
84258
|
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
84259
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -88057,6 +88101,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
88057
88101
|
mfn?: string | undefined;
|
|
88058
88102
|
manufacturerPartNumber?: string | undefined;
|
|
88059
88103
|
schSectionName?: string | undefined;
|
|
88104
|
+
schSheetName?: string | undefined;
|
|
88060
88105
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
88061
88106
|
}, {
|
|
88062
88107
|
name: string;
|
|
@@ -88639,6 +88684,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
88639
88684
|
mfn?: string | undefined;
|
|
88640
88685
|
manufacturerPartNumber?: string | undefined;
|
|
88641
88686
|
schSectionName?: string | undefined;
|
|
88687
|
+
schSheetName?: string | undefined;
|
|
88642
88688
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
88643
88689
|
}>;
|
|
88644
88690
|
|
|
@@ -90255,6 +90301,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
90255
90301
|
name: z.ZodString;
|
|
90256
90302
|
displayName: z.ZodOptional<z.ZodString>;
|
|
90257
90303
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
90304
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
90258
90305
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
90259
90306
|
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
90307
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -94112,6 +94159,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
94112
94159
|
mfn?: string | undefined;
|
|
94113
94160
|
manufacturerPartNumber?: string | undefined;
|
|
94114
94161
|
schSectionName?: string | undefined;
|
|
94162
|
+
schSheetName?: string | undefined;
|
|
94115
94163
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
94116
94164
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
94117
94165
|
schSize?: number | "default" | "xs" | "sm" | "md" | undefined;
|
|
@@ -94701,6 +94749,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
94701
94749
|
mfn?: string | undefined;
|
|
94702
94750
|
manufacturerPartNumber?: string | undefined;
|
|
94703
94751
|
schSectionName?: string | undefined;
|
|
94752
|
+
schSheetName?: string | undefined;
|
|
94704
94753
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
94705
94754
|
schShowRatings?: boolean | undefined;
|
|
94706
94755
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -94848,6 +94897,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
94848
94897
|
name: z.ZodString;
|
|
94849
94898
|
displayName: z.ZodOptional<z.ZodString>;
|
|
94850
94899
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
94900
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
94851
94901
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
94852
94902
|
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
94903
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -98693,6 +98743,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
98693
98743
|
mfn?: string | undefined;
|
|
98694
98744
|
manufacturerPartNumber?: string | undefined;
|
|
98695
98745
|
schSectionName?: string | undefined;
|
|
98746
|
+
schSheetName?: string | undefined;
|
|
98696
98747
|
soldermaskPullback?: number | undefined;
|
|
98697
98748
|
}, {
|
|
98698
98749
|
name: string;
|
|
@@ -99274,6 +99325,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
99274
99325
|
mfn?: string | undefined;
|
|
99275
99326
|
manufacturerPartNumber?: string | undefined;
|
|
99276
99327
|
schSectionName?: string | undefined;
|
|
99328
|
+
schSheetName?: string | undefined;
|
|
99277
99329
|
soldermaskPullback?: string | number | undefined;
|
|
99278
99330
|
}>;
|
|
99279
99331
|
|
|
@@ -104393,6 +104445,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
104393
104445
|
name: z.ZodString;
|
|
104394
104446
|
displayName: z.ZodOptional<z.ZodString>;
|
|
104395
104447
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
104448
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
104396
104449
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
104397
104450
|
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
104451
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -108239,6 +108292,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
108239
108292
|
mfn?: string | undefined;
|
|
108240
108293
|
manufacturerPartNumber?: string | undefined;
|
|
108241
108294
|
schSectionName?: string | undefined;
|
|
108295
|
+
schSheetName?: string | undefined;
|
|
108242
108296
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
108243
108297
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
108244
108298
|
capacity?: number | undefined;
|
|
@@ -108822,6 +108876,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
108822
108876
|
mfn?: string | undefined;
|
|
108823
108877
|
manufacturerPartNumber?: string | undefined;
|
|
108824
108878
|
schSectionName?: string | undefined;
|
|
108879
|
+
schSheetName?: string | undefined;
|
|
108825
108880
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
108826
108881
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
108827
108882
|
capacity?: string | number | undefined;
|
|
@@ -110630,6 +110685,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
110630
110685
|
name: z.ZodString;
|
|
110631
110686
|
displayName: z.ZodOptional<z.ZodString>;
|
|
110632
110687
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
110688
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
110633
110689
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
110634
110690
|
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
110691
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -114643,6 +114699,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
114643
114699
|
mfn?: string | undefined;
|
|
114644
114700
|
manufacturerPartNumber?: string | undefined;
|
|
114645
114701
|
schSectionName?: string | undefined;
|
|
114702
|
+
schSheetName?: string | undefined;
|
|
114646
114703
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
114647
114704
|
schPinArrangement?: {
|
|
114648
114705
|
leftSize?: number | undefined;
|
|
@@ -115274,6 +115331,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
115274
115331
|
mfn?: string | undefined;
|
|
115275
115332
|
manufacturerPartNumber?: string | undefined;
|
|
115276
115333
|
schSectionName?: string | undefined;
|
|
115334
|
+
schSheetName?: string | undefined;
|
|
115277
115335
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
115278
115336
|
schPinArrangement?: {
|
|
115279
115337
|
leftSize?: number | undefined;
|
|
@@ -115491,6 +115549,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
115491
115549
|
name: z.ZodString;
|
|
115492
115550
|
displayName: z.ZodOptional<z.ZodString>;
|
|
115493
115551
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
115552
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
115494
115553
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
115495
115554
|
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
115555
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -119631,6 +119690,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
119631
119690
|
mfn?: string | undefined;
|
|
119632
119691
|
manufacturerPartNumber?: string | undefined;
|
|
119633
119692
|
schSectionName?: string | undefined;
|
|
119693
|
+
schSheetName?: string | undefined;
|
|
119634
119694
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
119635
119695
|
schPinArrangement?: {
|
|
119636
119696
|
leftSize?: number | undefined;
|
|
@@ -120288,6 +120348,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
120288
120348
|
mfn?: string | undefined;
|
|
120289
120349
|
manufacturerPartNumber?: string | undefined;
|
|
120290
120350
|
schSectionName?: string | undefined;
|
|
120351
|
+
schSheetName?: string | undefined;
|
|
120291
120352
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
120292
120353
|
schPinArrangement?: {
|
|
120293
120354
|
leftSize?: number | undefined;
|
|
@@ -122077,6 +122138,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
122077
122138
|
name: z.ZodString;
|
|
122078
122139
|
displayName: z.ZodOptional<z.ZodString>;
|
|
122079
122140
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
122141
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
122080
122142
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
122081
122143
|
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
122144
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -125922,6 +125984,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
125922
125984
|
mfn?: string | undefined;
|
|
125923
125985
|
manufacturerPartNumber?: string | undefined;
|
|
125924
125986
|
schSectionName?: string | undefined;
|
|
125987
|
+
schSheetName?: string | undefined;
|
|
125925
125988
|
connections?: Partial<Record<"pin1" | "pin2" | "source" | "pin3" | "emitter" | "collector" | "base" | "gate" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
125926
125989
|
}, {
|
|
125927
125990
|
type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
|
|
@@ -126503,6 +126566,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
126503
126566
|
mfn?: string | undefined;
|
|
126504
126567
|
manufacturerPartNumber?: string | undefined;
|
|
126505
126568
|
schSectionName?: string | undefined;
|
|
126569
|
+
schSheetName?: string | undefined;
|
|
126506
126570
|
connections?: Partial<Record<"pin1" | "pin2" | "source" | "pin3" | "emitter" | "collector" | "base" | "gate" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
126507
126571
|
}>;
|
|
126508
126572
|
declare const transistorPins: readonly ["pin1", "emitter", "pin2", "collector", "pin3", "base"];
|
|
@@ -126606,6 +126670,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
126606
126670
|
name: z.ZodString;
|
|
126607
126671
|
displayName: z.ZodOptional<z.ZodString>;
|
|
126608
126672
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
126673
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
126609
126674
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
126610
126675
|
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
126676
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -130452,6 +130517,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
130452
130517
|
mfn?: string | undefined;
|
|
130453
130518
|
manufacturerPartNumber?: string | undefined;
|
|
130454
130519
|
schSectionName?: string | undefined;
|
|
130520
|
+
schSheetName?: string | undefined;
|
|
130455
130521
|
}, {
|
|
130456
130522
|
name: string;
|
|
130457
130523
|
channelType: "n" | "p";
|
|
@@ -131033,6 +131099,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
131033
131099
|
mfn?: string | undefined;
|
|
131034
131100
|
manufacturerPartNumber?: string | undefined;
|
|
131035
131101
|
schSectionName?: string | undefined;
|
|
131102
|
+
schSheetName?: string | undefined;
|
|
131036
131103
|
}>;
|
|
131037
131104
|
declare const mosfetPins: readonly ["pin1", "drain", "pin2", "source", "pin3", "gate"];
|
|
131038
131105
|
type MosfetPinLabels = (typeof mosfetPins)[number];
|
|
@@ -131142,6 +131209,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
131142
131209
|
name: z.ZodString;
|
|
131143
131210
|
displayName: z.ZodOptional<z.ZodString>;
|
|
131144
131211
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
131212
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
131145
131213
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
131146
131214
|
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
131215
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -134985,6 +135053,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
134985
135053
|
mfn?: string | undefined;
|
|
134986
135054
|
manufacturerPartNumber?: string | undefined;
|
|
134987
135055
|
schSectionName?: string | undefined;
|
|
135056
|
+
schSheetName?: string | undefined;
|
|
134988
135057
|
connections?: Partial<Record<"output" | "inverting_input" | "non_inverting_input" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
|
|
134989
135058
|
}, {
|
|
134990
135059
|
name: string;
|
|
@@ -135565,6 +135634,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
135565
135634
|
mfn?: string | undefined;
|
|
135566
135635
|
manufacturerPartNumber?: string | undefined;
|
|
135567
135636
|
schSectionName?: string | undefined;
|
|
135637
|
+
schSheetName?: string | undefined;
|
|
135568
135638
|
connections?: Partial<Record<"output" | "inverting_input" | "non_inverting_input" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
|
|
135569
135639
|
}>;
|
|
135570
135640
|
/**
|
|
@@ -135675,6 +135745,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
135675
135745
|
name: z.ZodString;
|
|
135676
135746
|
displayName: z.ZodOptional<z.ZodString>;
|
|
135677
135747
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
135748
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
135678
135749
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
135679
135750
|
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
135751
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -139522,6 +139593,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
139522
139593
|
mfn?: string | undefined;
|
|
139523
139594
|
manufacturerPartNumber?: string | undefined;
|
|
139524
139595
|
schSectionName?: string | undefined;
|
|
139596
|
+
schSheetName?: string | undefined;
|
|
139525
139597
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
139526
139598
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
139527
139599
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -140105,6 +140177,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
140105
140177
|
mfn?: string | undefined;
|
|
140106
140178
|
manufacturerPartNumber?: string | undefined;
|
|
140107
140179
|
schSectionName?: string | undefined;
|
|
140180
|
+
schSheetName?: string | undefined;
|
|
140108
140181
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
140109
140182
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
140110
140183
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -140204,6 +140277,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
140204
140277
|
name: z.ZodString;
|
|
140205
140278
|
displayName: z.ZodOptional<z.ZodString>;
|
|
140206
140279
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
140280
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
140207
140281
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
140208
140282
|
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
140283
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -144056,6 +144130,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
144056
144130
|
mfn?: string | undefined;
|
|
144057
144131
|
manufacturerPartNumber?: string | undefined;
|
|
144058
144132
|
schSectionName?: string | undefined;
|
|
144133
|
+
schSheetName?: string | undefined;
|
|
144059
144134
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
144060
144135
|
standard?: boolean | undefined;
|
|
144061
144136
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -144643,6 +144718,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
144643
144718
|
mfn?: string | undefined;
|
|
144644
144719
|
manufacturerPartNumber?: string | undefined;
|
|
144645
144720
|
schSectionName?: string | undefined;
|
|
144721
|
+
schSheetName?: string | undefined;
|
|
144646
144722
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
144647
144723
|
standard?: boolean | undefined;
|
|
144648
144724
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -145230,6 +145306,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
145230
145306
|
mfn?: string | undefined;
|
|
145231
145307
|
manufacturerPartNumber?: string | undefined;
|
|
145232
145308
|
schSectionName?: string | undefined;
|
|
145309
|
+
schSheetName?: string | undefined;
|
|
145233
145310
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
145234
145311
|
standard?: boolean | undefined;
|
|
145235
145312
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -145817,6 +145894,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
145817
145894
|
mfn?: string | undefined;
|
|
145818
145895
|
manufacturerPartNumber?: string | undefined;
|
|
145819
145896
|
schSectionName?: string | undefined;
|
|
145897
|
+
schSheetName?: string | undefined;
|
|
145820
145898
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
145821
145899
|
standard?: boolean | undefined;
|
|
145822
145900
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -146410,6 +146488,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
146410
146488
|
mfn?: string | undefined;
|
|
146411
146489
|
manufacturerPartNumber?: string | undefined;
|
|
146412
146490
|
schSectionName?: string | undefined;
|
|
146491
|
+
schSheetName?: string | undefined;
|
|
146413
146492
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
146414
146493
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
146415
146494
|
}, {
|
|
@@ -146991,6 +147070,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
146991
147070
|
mfn?: string | undefined;
|
|
146992
147071
|
manufacturerPartNumber?: string | undefined;
|
|
146993
147072
|
schSectionName?: string | undefined;
|
|
147073
|
+
schSheetName?: string | undefined;
|
|
146994
147074
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
146995
147075
|
standard?: boolean | undefined;
|
|
146996
147076
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -147118,6 +147198,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
147118
147198
|
name: z.ZodString;
|
|
147119
147199
|
displayName: z.ZodOptional<z.ZodString>;
|
|
147120
147200
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
147201
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
147121
147202
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
147122
147203
|
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
147204
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -150966,6 +151047,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
150966
151047
|
mfn?: string | undefined;
|
|
150967
151048
|
manufacturerPartNumber?: string | undefined;
|
|
150968
151049
|
schSectionName?: string | undefined;
|
|
151050
|
+
schSheetName?: string | undefined;
|
|
150969
151051
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
150970
151052
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
150971
151053
|
color?: string | undefined;
|
|
@@ -151551,6 +151633,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
151551
151633
|
mfn?: string | undefined;
|
|
151552
151634
|
manufacturerPartNumber?: string | undefined;
|
|
151553
151635
|
schSectionName?: string | undefined;
|
|
151636
|
+
schSheetName?: string | undefined;
|
|
151554
151637
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
151555
151638
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
151556
151639
|
color?: string | undefined;
|
|
@@ -151669,6 +151752,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
151669
151752
|
name: z.ZodString;
|
|
151670
151753
|
displayName: z.ZodOptional<z.ZodString>;
|
|
151671
151754
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
151755
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
151672
151756
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
151673
151757
|
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
151758
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -155525,6 +155609,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
155525
155609
|
mfn?: string | undefined;
|
|
155526
155610
|
manufacturerPartNumber?: string | undefined;
|
|
155527
155611
|
schSectionName?: string | undefined;
|
|
155612
|
+
schSheetName?: string | undefined;
|
|
155528
155613
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
155529
155614
|
spst?: boolean | undefined;
|
|
155530
155615
|
spdt?: boolean | undefined;
|
|
@@ -156115,6 +156200,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
156115
156200
|
mfn?: string | undefined;
|
|
156116
156201
|
manufacturerPartNumber?: string | undefined;
|
|
156117
156202
|
schSectionName?: string | undefined;
|
|
156203
|
+
schSheetName?: string | undefined;
|
|
156118
156204
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
156119
156205
|
spst?: boolean | undefined;
|
|
156120
156206
|
spdt?: boolean | undefined;
|
|
@@ -156706,6 +156792,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
156706
156792
|
mfn?: string | undefined;
|
|
156707
156793
|
manufacturerPartNumber?: string | undefined;
|
|
156708
156794
|
schSectionName?: string | undefined;
|
|
156795
|
+
schSheetName?: string | undefined;
|
|
156709
156796
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
156710
156797
|
spst?: boolean | undefined;
|
|
156711
156798
|
spdt?: boolean | undefined;
|
|
@@ -157850,6 +157937,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
157850
157937
|
name: z.ZodString;
|
|
157851
157938
|
displayName: z.ZodOptional<z.ZodString>;
|
|
157852
157939
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
157940
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
157853
157941
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
157854
157942
|
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
157943
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -161706,6 +161794,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
161706
161794
|
mfn?: string | undefined;
|
|
161707
161795
|
manufacturerPartNumber?: string | undefined;
|
|
161708
161796
|
schSectionName?: string | undefined;
|
|
161797
|
+
schSheetName?: string | undefined;
|
|
161709
161798
|
width?: number | undefined;
|
|
161710
161799
|
height?: number | undefined;
|
|
161711
161800
|
connections?: {
|
|
@@ -162293,6 +162382,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
162293
162382
|
mfn?: string | undefined;
|
|
162294
162383
|
manufacturerPartNumber?: string | undefined;
|
|
162295
162384
|
schSectionName?: string | undefined;
|
|
162385
|
+
schSheetName?: string | undefined;
|
|
162296
162386
|
width?: string | number | undefined;
|
|
162297
162387
|
height?: string | number | undefined;
|
|
162298
162388
|
connections?: {
|
|
@@ -162880,6 +162970,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
162880
162970
|
mfn?: string | undefined;
|
|
162881
162971
|
manufacturerPartNumber?: string | undefined;
|
|
162882
162972
|
schSectionName?: string | undefined;
|
|
162973
|
+
schSheetName?: string | undefined;
|
|
162883
162974
|
width?: number | undefined;
|
|
162884
162975
|
height?: number | undefined;
|
|
162885
162976
|
connections?: {
|
|
@@ -163467,6 +163558,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
163467
163558
|
mfn?: string | undefined;
|
|
163468
163559
|
manufacturerPartNumber?: string | undefined;
|
|
163469
163560
|
schSectionName?: string | undefined;
|
|
163561
|
+
schSheetName?: string | undefined;
|
|
163470
163562
|
width?: string | number | undefined;
|
|
163471
163563
|
height?: string | number | undefined;
|
|
163472
163564
|
connections?: {
|
|
@@ -164882,6 +164974,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
164882
164974
|
name: z.ZodString;
|
|
164883
164975
|
displayName: z.ZodOptional<z.ZodString>;
|
|
164884
164976
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
164977
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
164885
164978
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
164886
164979
|
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
164980
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -168726,6 +168819,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
168726
168819
|
mfn?: string | undefined;
|
|
168727
168820
|
manufacturerPartNumber?: string | undefined;
|
|
168728
168821
|
schSectionName?: string | undefined;
|
|
168822
|
+
schSheetName?: string | undefined;
|
|
168729
168823
|
}, {
|
|
168730
168824
|
name: string;
|
|
168731
168825
|
voltage: string | number;
|
|
@@ -169306,6 +169400,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
169306
169400
|
mfn?: string | undefined;
|
|
169307
169401
|
manufacturerPartNumber?: string | undefined;
|
|
169308
169402
|
schSectionName?: string | undefined;
|
|
169403
|
+
schSheetName?: string | undefined;
|
|
169309
169404
|
}>;
|
|
169310
169405
|
type PowerSourceProps = z.input<typeof powerSourceProps>;
|
|
169311
169406
|
|
|
@@ -169420,6 +169515,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
169420
169515
|
name: z.ZodString;
|
|
169421
169516
|
displayName: z.ZodOptional<z.ZodString>;
|
|
169422
169517
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
169518
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
169423
169519
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
169424
169520
|
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
169521
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -173274,6 +173370,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
173274
173370
|
mfn?: string | undefined;
|
|
173275
173371
|
manufacturerPartNumber?: string | undefined;
|
|
173276
173372
|
schSectionName?: string | undefined;
|
|
173373
|
+
schSheetName?: string | undefined;
|
|
173277
173374
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
173278
173375
|
frequency?: number | undefined;
|
|
173279
173376
|
voltage?: number | undefined;
|
|
@@ -173865,6 +173962,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
173865
173962
|
mfn?: string | undefined;
|
|
173866
173963
|
manufacturerPartNumber?: string | undefined;
|
|
173867
173964
|
schSectionName?: string | undefined;
|
|
173965
|
+
schSheetName?: string | undefined;
|
|
173868
173966
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
173869
173967
|
frequency?: string | number | undefined;
|
|
173870
173968
|
voltage?: string | number | undefined;
|
|
@@ -173985,6 +174083,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
173985
174083
|
name: z.ZodString;
|
|
173986
174084
|
displayName: z.ZodOptional<z.ZodString>;
|
|
173987
174085
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
174086
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
173988
174087
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
173989
174088
|
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
174089
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -177834,6 +177933,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
177834
177933
|
mfn?: string | undefined;
|
|
177835
177934
|
manufacturerPartNumber?: string | undefined;
|
|
177836
177935
|
schSectionName?: string | undefined;
|
|
177936
|
+
schSheetName?: string | undefined;
|
|
177837
177937
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
177838
177938
|
frequency?: number | undefined;
|
|
177839
177939
|
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
@@ -178420,6 +178520,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
178420
178520
|
mfn?: string | undefined;
|
|
178421
178521
|
manufacturerPartNumber?: string | undefined;
|
|
178422
178522
|
schSectionName?: string | undefined;
|
|
178523
|
+
schSheetName?: string | undefined;
|
|
178423
178524
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
178424
178525
|
frequency?: string | number | undefined;
|
|
178425
178526
|
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
@@ -178435,13 +178536,10 @@ interface VoltageProbeProps extends Omit<CommonComponentProps, "name"> {
|
|
|
178435
178536
|
connectsTo: string;
|
|
178436
178537
|
referenceTo?: string;
|
|
178437
178538
|
color?: string;
|
|
178438
|
-
|
|
178439
|
-
|
|
178440
|
-
|
|
178441
|
-
|
|
178442
|
-
center?: number;
|
|
178443
|
-
offsetDivs?: number;
|
|
178444
|
-
unitsPerDiv?: number;
|
|
178539
|
+
graphDisplayName?: string;
|
|
178540
|
+
graphCenter?: number;
|
|
178541
|
+
graphOffsetDivs?: number;
|
|
178542
|
+
graphUnitsPerDiv?: number;
|
|
178445
178543
|
}
|
|
178446
178544
|
declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
178447
178545
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -178537,6 +178635,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
178537
178635
|
name: z.ZodString;
|
|
178538
178636
|
displayName: z.ZodOptional<z.ZodString>;
|
|
178539
178637
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
178638
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
178540
178639
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
178541
178640
|
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<{
|
|
178542
178641
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -181806,22 +181905,10 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
181806
181905
|
connectsTo: z.ZodString;
|
|
181807
181906
|
referenceTo: z.ZodOptional<z.ZodString>;
|
|
181808
181907
|
color: z.ZodOptional<z.ZodString>;
|
|
181809
|
-
|
|
181810
|
-
|
|
181811
|
-
|
|
181812
|
-
|
|
181813
|
-
unitsPerDiv: z.ZodOptional<z.ZodNumber>;
|
|
181814
|
-
}, "strip", z.ZodTypeAny, {
|
|
181815
|
-
center?: number | undefined;
|
|
181816
|
-
label?: string | undefined;
|
|
181817
|
-
offsetDivs?: number | undefined;
|
|
181818
|
-
unitsPerDiv?: number | undefined;
|
|
181819
|
-
}, {
|
|
181820
|
-
center?: number | undefined;
|
|
181821
|
-
label?: string | undefined;
|
|
181822
|
-
offsetDivs?: number | undefined;
|
|
181823
|
-
unitsPerDiv?: number | undefined;
|
|
181824
|
-
}>>;
|
|
181908
|
+
graphDisplayName: z.ZodOptional<z.ZodString>;
|
|
181909
|
+
graphCenter: z.ZodOptional<z.ZodNumber>;
|
|
181910
|
+
graphOffsetDivs: z.ZodOptional<z.ZodNumber>;
|
|
181911
|
+
graphUnitsPerDiv: z.ZodOptional<z.ZodNumber>;
|
|
181825
181912
|
}, "strip", z.ZodTypeAny, {
|
|
181826
181913
|
connectsTo: string;
|
|
181827
181914
|
symbol?: SymbolProp | undefined;
|
|
@@ -182400,14 +182487,13 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
182400
182487
|
mfn?: string | undefined;
|
|
182401
182488
|
manufacturerPartNumber?: string | undefined;
|
|
182402
182489
|
schSectionName?: string | undefined;
|
|
182490
|
+
schSheetName?: string | undefined;
|
|
182403
182491
|
color?: string | undefined;
|
|
182404
182492
|
referenceTo?: string | undefined;
|
|
182405
|
-
|
|
182406
|
-
|
|
182407
|
-
|
|
182408
|
-
|
|
182409
|
-
unitsPerDiv?: number | undefined;
|
|
182410
|
-
} | undefined;
|
|
182493
|
+
graphDisplayName?: string | undefined;
|
|
182494
|
+
graphCenter?: number | undefined;
|
|
182495
|
+
graphOffsetDivs?: number | undefined;
|
|
182496
|
+
graphUnitsPerDiv?: number | undefined;
|
|
182411
182497
|
}, {
|
|
182412
182498
|
connectsTo: string;
|
|
182413
182499
|
symbol?: SymbolProp | undefined;
|
|
@@ -182988,45 +183074,25 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
182988
183074
|
mfn?: string | undefined;
|
|
182989
183075
|
manufacturerPartNumber?: string | undefined;
|
|
182990
183076
|
schSectionName?: string | undefined;
|
|
183077
|
+
schSheetName?: string | undefined;
|
|
182991
183078
|
color?: string | undefined;
|
|
182992
183079
|
referenceTo?: string | undefined;
|
|
182993
|
-
|
|
182994
|
-
|
|
182995
|
-
|
|
182996
|
-
|
|
182997
|
-
unitsPerDiv?: number | undefined;
|
|
182998
|
-
} | undefined;
|
|
183080
|
+
graphDisplayName?: string | undefined;
|
|
183081
|
+
graphCenter?: number | undefined;
|
|
183082
|
+
graphOffsetDivs?: number | undefined;
|
|
183083
|
+
graphUnitsPerDiv?: number | undefined;
|
|
182999
183084
|
}>;
|
|
183000
183085
|
|
|
183001
183086
|
declare const ammeterPinLabels: readonly ["pin1", "pin2", "pos", "neg"];
|
|
183002
183087
|
type AmmeterPinLabels = (typeof ammeterPinLabels)[number];
|
|
183003
|
-
interface AmmeterDisplayOptions {
|
|
183004
|
-
label?: string;
|
|
183005
|
-
center?: number;
|
|
183006
|
-
offsetDivs?: number;
|
|
183007
|
-
unitsPerDiv?: number;
|
|
183008
|
-
}
|
|
183009
183088
|
interface AmmeterProps<PinLabel extends string = string> extends CommonComponentProps<PinLabel> {
|
|
183010
183089
|
connections: Connections<AmmeterPinLabels>;
|
|
183011
183090
|
color?: string;
|
|
183012
|
-
|
|
183091
|
+
graphDisplayName?: string;
|
|
183092
|
+
graphCenter?: number;
|
|
183093
|
+
graphOffsetDivs?: number;
|
|
183094
|
+
graphUnitsPerDiv?: number;
|
|
183013
183095
|
}
|
|
183014
|
-
declare const ammeterDisplayOptions: z.ZodObject<{
|
|
183015
|
-
label: z.ZodOptional<z.ZodString>;
|
|
183016
|
-
center: z.ZodOptional<z.ZodNumber>;
|
|
183017
|
-
offsetDivs: z.ZodOptional<z.ZodNumber>;
|
|
183018
|
-
unitsPerDiv: z.ZodOptional<z.ZodNumber>;
|
|
183019
|
-
}, "strip", z.ZodTypeAny, {
|
|
183020
|
-
center?: number | undefined;
|
|
183021
|
-
label?: string | undefined;
|
|
183022
|
-
offsetDivs?: number | undefined;
|
|
183023
|
-
unitsPerDiv?: number | undefined;
|
|
183024
|
-
}, {
|
|
183025
|
-
center?: number | undefined;
|
|
183026
|
-
label?: string | undefined;
|
|
183027
|
-
offsetDivs?: number | undefined;
|
|
183028
|
-
unitsPerDiv?: number | undefined;
|
|
183029
|
-
}>;
|
|
183030
183096
|
declare const ammeterProps: z.ZodObject<{
|
|
183031
183097
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
183032
183098
|
pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -183121,6 +183187,7 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
183121
183187
|
name: z.ZodString;
|
|
183122
183188
|
displayName: z.ZodOptional<z.ZodString>;
|
|
183123
183189
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
183190
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
183124
183191
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
183125
183192
|
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<{
|
|
183126
183193
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -186388,22 +186455,10 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
186388
186455
|
} & {
|
|
186389
186456
|
connections: z.ZodEffects<z.ZodRecord<z.ZodEnum<["pin1", "pin2", "pos", "neg"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>, Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>>, Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>>>;
|
|
186390
186457
|
color: z.ZodOptional<z.ZodString>;
|
|
186391
|
-
|
|
186392
|
-
|
|
186393
|
-
|
|
186394
|
-
|
|
186395
|
-
unitsPerDiv: z.ZodOptional<z.ZodNumber>;
|
|
186396
|
-
}, "strip", z.ZodTypeAny, {
|
|
186397
|
-
center?: number | undefined;
|
|
186398
|
-
label?: string | undefined;
|
|
186399
|
-
offsetDivs?: number | undefined;
|
|
186400
|
-
unitsPerDiv?: number | undefined;
|
|
186401
|
-
}, {
|
|
186402
|
-
center?: number | undefined;
|
|
186403
|
-
label?: string | undefined;
|
|
186404
|
-
offsetDivs?: number | undefined;
|
|
186405
|
-
unitsPerDiv?: number | undefined;
|
|
186406
|
-
}>>;
|
|
186458
|
+
graphDisplayName: z.ZodOptional<z.ZodString>;
|
|
186459
|
+
graphCenter: z.ZodOptional<z.ZodNumber>;
|
|
186460
|
+
graphOffsetDivs: z.ZodOptional<z.ZodNumber>;
|
|
186461
|
+
graphUnitsPerDiv: z.ZodOptional<z.ZodNumber>;
|
|
186407
186462
|
}, "strip", z.ZodTypeAny, {
|
|
186408
186463
|
name: string;
|
|
186409
186464
|
connections: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>>;
|
|
@@ -186982,13 +187037,12 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
186982
187037
|
mfn?: string | undefined;
|
|
186983
187038
|
manufacturerPartNumber?: string | undefined;
|
|
186984
187039
|
schSectionName?: string | undefined;
|
|
187040
|
+
schSheetName?: string | undefined;
|
|
186985
187041
|
color?: string | undefined;
|
|
186986
|
-
|
|
186987
|
-
|
|
186988
|
-
|
|
186989
|
-
|
|
186990
|
-
unitsPerDiv?: number | undefined;
|
|
186991
|
-
} | undefined;
|
|
187042
|
+
graphDisplayName?: string | undefined;
|
|
187043
|
+
graphCenter?: number | undefined;
|
|
187044
|
+
graphOffsetDivs?: number | undefined;
|
|
187045
|
+
graphUnitsPerDiv?: number | undefined;
|
|
186992
187046
|
}, {
|
|
186993
187047
|
name: string;
|
|
186994
187048
|
connections: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>>;
|
|
@@ -187569,13 +187623,12 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
187569
187623
|
mfn?: string | undefined;
|
|
187570
187624
|
manufacturerPartNumber?: string | undefined;
|
|
187571
187625
|
schSectionName?: string | undefined;
|
|
187626
|
+
schSheetName?: string | undefined;
|
|
187572
187627
|
color?: string | undefined;
|
|
187573
|
-
|
|
187574
|
-
|
|
187575
|
-
|
|
187576
|
-
|
|
187577
|
-
unitsPerDiv?: number | undefined;
|
|
187578
|
-
} | undefined;
|
|
187628
|
+
graphDisplayName?: string | undefined;
|
|
187629
|
+
graphCenter?: number | undefined;
|
|
187630
|
+
graphOffsetDivs?: number | undefined;
|
|
187631
|
+
graphUnitsPerDiv?: number | undefined;
|
|
187579
187632
|
}>;
|
|
187580
187633
|
declare const ammeterPins: readonly ["pin1", "pin2", "pos", "neg"];
|
|
187581
187634
|
|
|
@@ -188130,6 +188183,26 @@ declare const schematicSectionProps: z.ZodObject<{
|
|
|
188130
188183
|
}>;
|
|
188131
188184
|
type InferredSchematicSectionProps = z.input<typeof schematicSectionProps>;
|
|
188132
188185
|
|
|
188186
|
+
interface SchematicSheetProps {
|
|
188187
|
+
name: string;
|
|
188188
|
+
displayName: string;
|
|
188189
|
+
children?: any;
|
|
188190
|
+
}
|
|
188191
|
+
declare const schematicSheetProps: z.ZodObject<{
|
|
188192
|
+
name: z.ZodString;
|
|
188193
|
+
displayName: z.ZodString;
|
|
188194
|
+
children: z.ZodOptional<z.ZodAny>;
|
|
188195
|
+
}, "strip", z.ZodTypeAny, {
|
|
188196
|
+
name: string;
|
|
188197
|
+
displayName: string;
|
|
188198
|
+
children?: any;
|
|
188199
|
+
}, {
|
|
188200
|
+
name: string;
|
|
188201
|
+
displayName: string;
|
|
188202
|
+
children?: any;
|
|
188203
|
+
}>;
|
|
188204
|
+
type InferredSchematicSheetProps = z.input<typeof schematicSheetProps>;
|
|
188205
|
+
|
|
188133
188206
|
declare const copperTextProps: z.ZodObject<{
|
|
188134
188207
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
188135
188208
|
pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -190614,4 +190687,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
190614
190687
|
}
|
|
190615
190688
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
190616
190689
|
|
|
190617
|
-
export { type AmmeterDisplayOptions, 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 VoltageProbeDisplayOptions, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterDisplayOptions, 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 };
|
|
190690
|
+
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 };
|