@tscircuit/props 0.0.405 → 0.0.406
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +146 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1720,6 +1720,7 @@ interface PinAttributeMap {
|
|
|
1720
1720
|
doNotConnect?: boolean;
|
|
1721
1721
|
includeInBoardPinout?: boolean;
|
|
1722
1722
|
highlightColor?: string;
|
|
1723
|
+
mustBeConnected?: boolean;
|
|
1723
1724
|
}
|
|
1724
1725
|
declare const pinAttributeMap: z.ZodObject<{
|
|
1725
1726
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1731,6 +1732,7 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
1731
1732
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
1732
1733
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
1733
1734
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
1735
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
1734
1736
|
}, "strip", z.ZodTypeAny, {
|
|
1735
1737
|
providesPower?: boolean | undefined;
|
|
1736
1738
|
requiresPower?: boolean | undefined;
|
|
@@ -1741,6 +1743,7 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
1741
1743
|
doNotConnect?: boolean | undefined;
|
|
1742
1744
|
includeInBoardPinout?: boolean | undefined;
|
|
1743
1745
|
highlightColor?: string | undefined;
|
|
1746
|
+
mustBeConnected?: boolean | undefined;
|
|
1744
1747
|
}, {
|
|
1745
1748
|
providesPower?: boolean | undefined;
|
|
1746
1749
|
requiresPower?: boolean | undefined;
|
|
@@ -1751,6 +1754,7 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
1751
1754
|
doNotConnect?: boolean | undefined;
|
|
1752
1755
|
includeInBoardPinout?: boolean | undefined;
|
|
1753
1756
|
highlightColor?: string | undefined;
|
|
1757
|
+
mustBeConnected?: boolean | undefined;
|
|
1754
1758
|
}>;
|
|
1755
1759
|
interface CommonComponentProps<PinLabel extends string = string> extends CommonLayoutProps {
|
|
1756
1760
|
key?: any;
|
|
@@ -2430,6 +2434,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2430
2434
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
2431
2435
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
2432
2436
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
2437
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
2433
2438
|
}, "strip", z.ZodTypeAny, {
|
|
2434
2439
|
providesPower?: boolean | undefined;
|
|
2435
2440
|
requiresPower?: boolean | undefined;
|
|
@@ -2440,6 +2445,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2440
2445
|
doNotConnect?: boolean | undefined;
|
|
2441
2446
|
includeInBoardPinout?: boolean | undefined;
|
|
2442
2447
|
highlightColor?: string | undefined;
|
|
2448
|
+
mustBeConnected?: boolean | undefined;
|
|
2443
2449
|
}, {
|
|
2444
2450
|
providesPower?: boolean | undefined;
|
|
2445
2451
|
requiresPower?: boolean | undefined;
|
|
@@ -2450,6 +2456,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2450
2456
|
doNotConnect?: boolean | undefined;
|
|
2451
2457
|
includeInBoardPinout?: boolean | undefined;
|
|
2452
2458
|
highlightColor?: string | undefined;
|
|
2459
|
+
mustBeConnected?: boolean | undefined;
|
|
2453
2460
|
}>>>;
|
|
2454
2461
|
}, "strip", z.ZodTypeAny, {
|
|
2455
2462
|
name: string;
|
|
@@ -2501,6 +2508,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2501
2508
|
doNotConnect?: boolean | undefined;
|
|
2502
2509
|
includeInBoardPinout?: boolean | undefined;
|
|
2503
2510
|
highlightColor?: string | undefined;
|
|
2511
|
+
mustBeConnected?: boolean | undefined;
|
|
2504
2512
|
}> | undefined;
|
|
2505
2513
|
cadModel?: string | {
|
|
2506
2514
|
stlUrl: string;
|
|
@@ -2693,6 +2701,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2693
2701
|
doNotConnect?: boolean | undefined;
|
|
2694
2702
|
includeInBoardPinout?: boolean | undefined;
|
|
2695
2703
|
highlightColor?: string | undefined;
|
|
2704
|
+
mustBeConnected?: boolean | undefined;
|
|
2696
2705
|
}> | undefined;
|
|
2697
2706
|
cadModel?: string | {
|
|
2698
2707
|
stlUrl: string;
|
|
@@ -3496,6 +3505,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3496
3505
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
3497
3506
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
3498
3507
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
3508
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
3499
3509
|
}, "strip", z.ZodTypeAny, {
|
|
3500
3510
|
providesPower?: boolean | undefined;
|
|
3501
3511
|
requiresPower?: boolean | undefined;
|
|
@@ -3506,6 +3516,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3506
3516
|
doNotConnect?: boolean | undefined;
|
|
3507
3517
|
includeInBoardPinout?: boolean | undefined;
|
|
3508
3518
|
highlightColor?: string | undefined;
|
|
3519
|
+
mustBeConnected?: boolean | undefined;
|
|
3509
3520
|
}, {
|
|
3510
3521
|
providesPower?: boolean | undefined;
|
|
3511
3522
|
requiresPower?: boolean | undefined;
|
|
@@ -3516,6 +3527,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3516
3527
|
doNotConnect?: boolean | undefined;
|
|
3517
3528
|
includeInBoardPinout?: boolean | undefined;
|
|
3518
3529
|
highlightColor?: string | undefined;
|
|
3530
|
+
mustBeConnected?: boolean | undefined;
|
|
3519
3531
|
}>>>;
|
|
3520
3532
|
}, "strip", z.ZodTypeAny, {
|
|
3521
3533
|
name: string;
|
|
@@ -3567,6 +3579,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3567
3579
|
doNotConnect?: boolean | undefined;
|
|
3568
3580
|
includeInBoardPinout?: boolean | undefined;
|
|
3569
3581
|
highlightColor?: string | undefined;
|
|
3582
|
+
mustBeConnected?: boolean | undefined;
|
|
3570
3583
|
}> | undefined;
|
|
3571
3584
|
cadModel?: string | {
|
|
3572
3585
|
stlUrl: string;
|
|
@@ -3759,6 +3772,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3759
3772
|
doNotConnect?: boolean | undefined;
|
|
3760
3773
|
includeInBoardPinout?: boolean | undefined;
|
|
3761
3774
|
highlightColor?: string | undefined;
|
|
3775
|
+
mustBeConnected?: boolean | undefined;
|
|
3762
3776
|
}> | undefined;
|
|
3763
3777
|
cadModel?: string | {
|
|
3764
3778
|
stlUrl: string;
|
|
@@ -15831,6 +15845,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
15831
15845
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
15832
15846
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
15833
15847
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
15848
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
15834
15849
|
}, "strip", z.ZodTypeAny, {
|
|
15835
15850
|
providesPower?: boolean | undefined;
|
|
15836
15851
|
requiresPower?: boolean | undefined;
|
|
@@ -15841,6 +15856,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
15841
15856
|
doNotConnect?: boolean | undefined;
|
|
15842
15857
|
includeInBoardPinout?: boolean | undefined;
|
|
15843
15858
|
highlightColor?: string | undefined;
|
|
15859
|
+
mustBeConnected?: boolean | undefined;
|
|
15844
15860
|
}, {
|
|
15845
15861
|
providesPower?: boolean | undefined;
|
|
15846
15862
|
requiresPower?: boolean | undefined;
|
|
@@ -15851,6 +15867,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
15851
15867
|
doNotConnect?: boolean | undefined;
|
|
15852
15868
|
includeInBoardPinout?: boolean | undefined;
|
|
15853
15869
|
highlightColor?: string | undefined;
|
|
15870
|
+
mustBeConnected?: boolean | undefined;
|
|
15854
15871
|
}>>>;
|
|
15855
15872
|
} & {
|
|
15856
15873
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -16152,6 +16169,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
16152
16169
|
doNotConnect?: boolean | undefined;
|
|
16153
16170
|
includeInBoardPinout?: boolean | undefined;
|
|
16154
16171
|
highlightColor?: string | undefined;
|
|
16172
|
+
mustBeConnected?: boolean | undefined;
|
|
16155
16173
|
}> | undefined;
|
|
16156
16174
|
cadModel?: string | {
|
|
16157
16175
|
stlUrl: string;
|
|
@@ -16421,6 +16439,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
16421
16439
|
doNotConnect?: boolean | undefined;
|
|
16422
16440
|
includeInBoardPinout?: boolean | undefined;
|
|
16423
16441
|
highlightColor?: string | undefined;
|
|
16442
|
+
mustBeConnected?: boolean | undefined;
|
|
16424
16443
|
}> | undefined;
|
|
16425
16444
|
cadModel?: string | {
|
|
16426
16445
|
stlUrl: string;
|
|
@@ -17304,6 +17323,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
17304
17323
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
17305
17324
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
17306
17325
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
17326
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
17307
17327
|
}, "strip", z.ZodTypeAny, {
|
|
17308
17328
|
providesPower?: boolean | undefined;
|
|
17309
17329
|
requiresPower?: boolean | undefined;
|
|
@@ -17314,6 +17334,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
17314
17334
|
doNotConnect?: boolean | undefined;
|
|
17315
17335
|
includeInBoardPinout?: boolean | undefined;
|
|
17316
17336
|
highlightColor?: string | undefined;
|
|
17337
|
+
mustBeConnected?: boolean | undefined;
|
|
17317
17338
|
}, {
|
|
17318
17339
|
providesPower?: boolean | undefined;
|
|
17319
17340
|
requiresPower?: boolean | undefined;
|
|
@@ -17324,6 +17345,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
17324
17345
|
doNotConnect?: boolean | undefined;
|
|
17325
17346
|
includeInBoardPinout?: boolean | undefined;
|
|
17326
17347
|
highlightColor?: string | undefined;
|
|
17348
|
+
mustBeConnected?: boolean | undefined;
|
|
17327
17349
|
}>>>;
|
|
17328
17350
|
} & {
|
|
17329
17351
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -17625,6 +17647,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
17625
17647
|
doNotConnect?: boolean | undefined;
|
|
17626
17648
|
includeInBoardPinout?: boolean | undefined;
|
|
17627
17649
|
highlightColor?: string | undefined;
|
|
17650
|
+
mustBeConnected?: boolean | undefined;
|
|
17628
17651
|
}> | undefined;
|
|
17629
17652
|
cadModel?: string | {
|
|
17630
17653
|
stlUrl: string;
|
|
@@ -17894,6 +17917,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
17894
17917
|
doNotConnect?: boolean | undefined;
|
|
17895
17918
|
includeInBoardPinout?: boolean | undefined;
|
|
17896
17919
|
highlightColor?: string | undefined;
|
|
17920
|
+
mustBeConnected?: boolean | undefined;
|
|
17897
17921
|
}> | undefined;
|
|
17898
17922
|
cadModel?: string | {
|
|
17899
17923
|
stlUrl: string;
|
|
@@ -18776,6 +18800,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
18776
18800
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
18777
18801
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
18778
18802
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
18803
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
18779
18804
|
}, "strip", z.ZodTypeAny, {
|
|
18780
18805
|
providesPower?: boolean | undefined;
|
|
18781
18806
|
requiresPower?: boolean | undefined;
|
|
@@ -18786,6 +18811,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
18786
18811
|
doNotConnect?: boolean | undefined;
|
|
18787
18812
|
includeInBoardPinout?: boolean | undefined;
|
|
18788
18813
|
highlightColor?: string | undefined;
|
|
18814
|
+
mustBeConnected?: boolean | undefined;
|
|
18789
18815
|
}, {
|
|
18790
18816
|
providesPower?: boolean | undefined;
|
|
18791
18817
|
requiresPower?: boolean | undefined;
|
|
@@ -18796,6 +18822,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
18796
18822
|
doNotConnect?: boolean | undefined;
|
|
18797
18823
|
includeInBoardPinout?: boolean | undefined;
|
|
18798
18824
|
highlightColor?: string | undefined;
|
|
18825
|
+
mustBeConnected?: boolean | undefined;
|
|
18799
18826
|
}>>>;
|
|
18800
18827
|
} & {
|
|
18801
18828
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -19097,6 +19124,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
19097
19124
|
doNotConnect?: boolean | undefined;
|
|
19098
19125
|
includeInBoardPinout?: boolean | undefined;
|
|
19099
19126
|
highlightColor?: string | undefined;
|
|
19127
|
+
mustBeConnected?: boolean | undefined;
|
|
19100
19128
|
}> | undefined;
|
|
19101
19129
|
cadModel?: string | {
|
|
19102
19130
|
stlUrl: string;
|
|
@@ -19366,6 +19394,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
19366
19394
|
doNotConnect?: boolean | undefined;
|
|
19367
19395
|
includeInBoardPinout?: boolean | undefined;
|
|
19368
19396
|
highlightColor?: string | undefined;
|
|
19397
|
+
mustBeConnected?: boolean | undefined;
|
|
19369
19398
|
}> | undefined;
|
|
19370
19399
|
cadModel?: string | {
|
|
19371
19400
|
stlUrl: string;
|
|
@@ -20280,6 +20309,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
20280
20309
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
20281
20310
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
20282
20311
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
20312
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
20283
20313
|
}, "strip", z.ZodTypeAny, {
|
|
20284
20314
|
providesPower?: boolean | undefined;
|
|
20285
20315
|
requiresPower?: boolean | undefined;
|
|
@@ -20290,6 +20320,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
20290
20320
|
doNotConnect?: boolean | undefined;
|
|
20291
20321
|
includeInBoardPinout?: boolean | undefined;
|
|
20292
20322
|
highlightColor?: string | undefined;
|
|
20323
|
+
mustBeConnected?: boolean | undefined;
|
|
20293
20324
|
}, {
|
|
20294
20325
|
providesPower?: boolean | undefined;
|
|
20295
20326
|
requiresPower?: boolean | undefined;
|
|
@@ -20300,6 +20331,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
20300
20331
|
doNotConnect?: boolean | undefined;
|
|
20301
20332
|
includeInBoardPinout?: boolean | undefined;
|
|
20302
20333
|
highlightColor?: string | undefined;
|
|
20334
|
+
mustBeConnected?: boolean | undefined;
|
|
20303
20335
|
}>>>;
|
|
20304
20336
|
} & {
|
|
20305
20337
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -20590,6 +20622,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
20590
20622
|
doNotConnect?: boolean | undefined;
|
|
20591
20623
|
includeInBoardPinout?: boolean | undefined;
|
|
20592
20624
|
highlightColor?: string | undefined;
|
|
20625
|
+
mustBeConnected?: boolean | undefined;
|
|
20593
20626
|
}> | undefined;
|
|
20594
20627
|
cadModel?: string | {
|
|
20595
20628
|
stlUrl: string;
|
|
@@ -20854,6 +20887,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
20854
20887
|
doNotConnect?: boolean | undefined;
|
|
20855
20888
|
includeInBoardPinout?: boolean | undefined;
|
|
20856
20889
|
highlightColor?: string | undefined;
|
|
20890
|
+
mustBeConnected?: boolean | undefined;
|
|
20857
20891
|
}> | undefined;
|
|
20858
20892
|
cadModel?: string | {
|
|
20859
20893
|
stlUrl: string;
|
|
@@ -21740,6 +21774,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
21740
21774
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
21741
21775
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
21742
21776
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
21777
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
21743
21778
|
}, "strip", z.ZodTypeAny, {
|
|
21744
21779
|
providesPower?: boolean | undefined;
|
|
21745
21780
|
requiresPower?: boolean | undefined;
|
|
@@ -21750,6 +21785,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
21750
21785
|
doNotConnect?: boolean | undefined;
|
|
21751
21786
|
includeInBoardPinout?: boolean | undefined;
|
|
21752
21787
|
highlightColor?: string | undefined;
|
|
21788
|
+
mustBeConnected?: boolean | undefined;
|
|
21753
21789
|
}, {
|
|
21754
21790
|
providesPower?: boolean | undefined;
|
|
21755
21791
|
requiresPower?: boolean | undefined;
|
|
@@ -21760,6 +21796,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
21760
21796
|
doNotConnect?: boolean | undefined;
|
|
21761
21797
|
includeInBoardPinout?: boolean | undefined;
|
|
21762
21798
|
highlightColor?: string | undefined;
|
|
21799
|
+
mustBeConnected?: boolean | undefined;
|
|
21763
21800
|
}>>>;
|
|
21764
21801
|
} & {
|
|
21765
21802
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -22053,6 +22090,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
22053
22090
|
doNotConnect?: boolean | undefined;
|
|
22054
22091
|
includeInBoardPinout?: boolean | undefined;
|
|
22055
22092
|
highlightColor?: string | undefined;
|
|
22093
|
+
mustBeConnected?: boolean | undefined;
|
|
22056
22094
|
}> | undefined;
|
|
22057
22095
|
cadModel?: string | {
|
|
22058
22096
|
stlUrl: string;
|
|
@@ -22319,6 +22357,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
22319
22357
|
doNotConnect?: boolean | undefined;
|
|
22320
22358
|
includeInBoardPinout?: boolean | undefined;
|
|
22321
22359
|
highlightColor?: string | undefined;
|
|
22360
|
+
mustBeConnected?: boolean | undefined;
|
|
22322
22361
|
}> | undefined;
|
|
22323
22362
|
cadModel?: string | {
|
|
22324
22363
|
stlUrl: string;
|
|
@@ -23216,6 +23255,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
23216
23255
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
23217
23256
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
23218
23257
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
23258
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
23219
23259
|
}, "strip", z.ZodTypeAny, {
|
|
23220
23260
|
providesPower?: boolean | undefined;
|
|
23221
23261
|
requiresPower?: boolean | undefined;
|
|
@@ -23226,6 +23266,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
23226
23266
|
doNotConnect?: boolean | undefined;
|
|
23227
23267
|
includeInBoardPinout?: boolean | undefined;
|
|
23228
23268
|
highlightColor?: string | undefined;
|
|
23269
|
+
mustBeConnected?: boolean | undefined;
|
|
23229
23270
|
}, {
|
|
23230
23271
|
providesPower?: boolean | undefined;
|
|
23231
23272
|
requiresPower?: boolean | undefined;
|
|
@@ -23236,6 +23277,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
23236
23277
|
doNotConnect?: boolean | undefined;
|
|
23237
23278
|
includeInBoardPinout?: boolean | undefined;
|
|
23238
23279
|
highlightColor?: string | undefined;
|
|
23280
|
+
mustBeConnected?: boolean | undefined;
|
|
23239
23281
|
}>>>;
|
|
23240
23282
|
} & {
|
|
23241
23283
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -23424,6 +23466,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
23424
23466
|
doNotConnect?: boolean | undefined;
|
|
23425
23467
|
includeInBoardPinout?: boolean | undefined;
|
|
23426
23468
|
highlightColor?: string | undefined;
|
|
23469
|
+
mustBeConnected?: boolean | undefined;
|
|
23427
23470
|
}> | undefined;
|
|
23428
23471
|
cadModel?: string | {
|
|
23429
23472
|
stlUrl: string;
|
|
@@ -23660,6 +23703,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
23660
23703
|
doNotConnect?: boolean | undefined;
|
|
23661
23704
|
includeInBoardPinout?: boolean | undefined;
|
|
23662
23705
|
highlightColor?: string | undefined;
|
|
23706
|
+
mustBeConnected?: boolean | undefined;
|
|
23663
23707
|
}> | undefined;
|
|
23664
23708
|
cadModel?: string | {
|
|
23665
23709
|
stlUrl: string;
|
|
@@ -24535,6 +24579,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
24535
24579
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
24536
24580
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
24537
24581
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
24582
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
24538
24583
|
}, "strip", z.ZodTypeAny, {
|
|
24539
24584
|
providesPower?: boolean | undefined;
|
|
24540
24585
|
requiresPower?: boolean | undefined;
|
|
@@ -24545,6 +24590,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
24545
24590
|
doNotConnect?: boolean | undefined;
|
|
24546
24591
|
includeInBoardPinout?: boolean | undefined;
|
|
24547
24592
|
highlightColor?: string | undefined;
|
|
24593
|
+
mustBeConnected?: boolean | undefined;
|
|
24548
24594
|
}, {
|
|
24549
24595
|
providesPower?: boolean | undefined;
|
|
24550
24596
|
requiresPower?: boolean | undefined;
|
|
@@ -24555,6 +24601,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
24555
24601
|
doNotConnect?: boolean | undefined;
|
|
24556
24602
|
includeInBoardPinout?: boolean | undefined;
|
|
24557
24603
|
highlightColor?: string | undefined;
|
|
24604
|
+
mustBeConnected?: boolean | undefined;
|
|
24558
24605
|
}>>>;
|
|
24559
24606
|
} & {
|
|
24560
24607
|
currentRating: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -24613,6 +24660,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
24613
24660
|
doNotConnect?: boolean | undefined;
|
|
24614
24661
|
includeInBoardPinout?: boolean | undefined;
|
|
24615
24662
|
highlightColor?: string | undefined;
|
|
24663
|
+
mustBeConnected?: boolean | undefined;
|
|
24616
24664
|
}> | undefined;
|
|
24617
24665
|
cadModel?: string | {
|
|
24618
24666
|
stlUrl: string;
|
|
@@ -24810,6 +24858,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
24810
24858
|
doNotConnect?: boolean | undefined;
|
|
24811
24859
|
includeInBoardPinout?: boolean | undefined;
|
|
24812
24860
|
highlightColor?: string | undefined;
|
|
24861
|
+
mustBeConnected?: boolean | undefined;
|
|
24813
24862
|
}> | undefined;
|
|
24814
24863
|
cadModel?: string | {
|
|
24815
24864
|
stlUrl: string;
|
|
@@ -26938,6 +26987,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
26938
26987
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
26939
26988
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
26940
26989
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
26990
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
26941
26991
|
}, "strip", z.ZodTypeAny, {
|
|
26942
26992
|
providesPower?: boolean | undefined;
|
|
26943
26993
|
requiresPower?: boolean | undefined;
|
|
@@ -26948,6 +26998,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
26948
26998
|
doNotConnect?: boolean | undefined;
|
|
26949
26999
|
includeInBoardPinout?: boolean | undefined;
|
|
26950
27000
|
highlightColor?: string | undefined;
|
|
27001
|
+
mustBeConnected?: boolean | undefined;
|
|
26951
27002
|
}, {
|
|
26952
27003
|
providesPower?: boolean | undefined;
|
|
26953
27004
|
requiresPower?: boolean | undefined;
|
|
@@ -26958,6 +27009,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
26958
27009
|
doNotConnect?: boolean | undefined;
|
|
26959
27010
|
includeInBoardPinout?: boolean | undefined;
|
|
26960
27011
|
highlightColor?: string | undefined;
|
|
27012
|
+
mustBeConnected?: boolean | undefined;
|
|
26961
27013
|
}>>>;
|
|
26962
27014
|
} & {
|
|
26963
27015
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -27018,6 +27070,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
27018
27070
|
doNotConnect?: boolean | undefined;
|
|
27019
27071
|
includeInBoardPinout?: boolean | undefined;
|
|
27020
27072
|
highlightColor?: string | undefined;
|
|
27073
|
+
mustBeConnected?: boolean | undefined;
|
|
27021
27074
|
}> | undefined;
|
|
27022
27075
|
cadModel?: string | {
|
|
27023
27076
|
stlUrl: string;
|
|
@@ -27217,6 +27270,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
27217
27270
|
doNotConnect?: boolean | undefined;
|
|
27218
27271
|
includeInBoardPinout?: boolean | undefined;
|
|
27219
27272
|
highlightColor?: string | undefined;
|
|
27273
|
+
mustBeConnected?: boolean | undefined;
|
|
27220
27274
|
}> | undefined;
|
|
27221
27275
|
cadModel?: string | {
|
|
27222
27276
|
stlUrl: string;
|
|
@@ -28033,6 +28087,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
28033
28087
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
28034
28088
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
28035
28089
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
28090
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
28036
28091
|
}, "strip", z.ZodTypeAny, {
|
|
28037
28092
|
providesPower?: boolean | undefined;
|
|
28038
28093
|
requiresPower?: boolean | undefined;
|
|
@@ -28043,6 +28098,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
28043
28098
|
doNotConnect?: boolean | undefined;
|
|
28044
28099
|
includeInBoardPinout?: boolean | undefined;
|
|
28045
28100
|
highlightColor?: string | undefined;
|
|
28101
|
+
mustBeConnected?: boolean | undefined;
|
|
28046
28102
|
}, {
|
|
28047
28103
|
providesPower?: boolean | undefined;
|
|
28048
28104
|
requiresPower?: boolean | undefined;
|
|
@@ -28053,6 +28109,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
28053
28109
|
doNotConnect?: boolean | undefined;
|
|
28054
28110
|
includeInBoardPinout?: boolean | undefined;
|
|
28055
28111
|
highlightColor?: string | undefined;
|
|
28112
|
+
mustBeConnected?: boolean | undefined;
|
|
28056
28113
|
}>>>;
|
|
28057
28114
|
} & {
|
|
28058
28115
|
maxResistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -28108,6 +28165,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
28108
28165
|
doNotConnect?: boolean | undefined;
|
|
28109
28166
|
includeInBoardPinout?: boolean | undefined;
|
|
28110
28167
|
highlightColor?: string | undefined;
|
|
28168
|
+
mustBeConnected?: boolean | undefined;
|
|
28111
28169
|
}> | undefined;
|
|
28112
28170
|
cadModel?: string | {
|
|
28113
28171
|
stlUrl: string;
|
|
@@ -28302,6 +28360,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
28302
28360
|
doNotConnect?: boolean | undefined;
|
|
28303
28361
|
includeInBoardPinout?: boolean | undefined;
|
|
28304
28362
|
highlightColor?: string | undefined;
|
|
28363
|
+
mustBeConnected?: boolean | undefined;
|
|
28305
28364
|
}> | undefined;
|
|
28306
28365
|
cadModel?: string | {
|
|
28307
28366
|
stlUrl: string;
|
|
@@ -29119,6 +29178,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
29119
29178
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
29120
29179
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
29121
29180
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
29181
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
29122
29182
|
}, "strip", z.ZodTypeAny, {
|
|
29123
29183
|
providesPower?: boolean | undefined;
|
|
29124
29184
|
requiresPower?: boolean | undefined;
|
|
@@ -29129,6 +29189,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
29129
29189
|
doNotConnect?: boolean | undefined;
|
|
29130
29190
|
includeInBoardPinout?: boolean | undefined;
|
|
29131
29191
|
highlightColor?: string | undefined;
|
|
29192
|
+
mustBeConnected?: boolean | undefined;
|
|
29132
29193
|
}, {
|
|
29133
29194
|
providesPower?: boolean | undefined;
|
|
29134
29195
|
requiresPower?: boolean | undefined;
|
|
@@ -29139,6 +29200,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
29139
29200
|
doNotConnect?: boolean | undefined;
|
|
29140
29201
|
includeInBoardPinout?: boolean | undefined;
|
|
29141
29202
|
highlightColor?: string | undefined;
|
|
29203
|
+
mustBeConnected?: boolean | undefined;
|
|
29142
29204
|
}>>>;
|
|
29143
29205
|
} & {
|
|
29144
29206
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -29200,6 +29262,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
29200
29262
|
doNotConnect?: boolean | undefined;
|
|
29201
29263
|
includeInBoardPinout?: boolean | undefined;
|
|
29202
29264
|
highlightColor?: string | undefined;
|
|
29265
|
+
mustBeConnected?: boolean | undefined;
|
|
29203
29266
|
}> | undefined;
|
|
29204
29267
|
cadModel?: string | {
|
|
29205
29268
|
stlUrl: string;
|
|
@@ -29399,6 +29462,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
29399
29462
|
doNotConnect?: boolean | undefined;
|
|
29400
29463
|
includeInBoardPinout?: boolean | undefined;
|
|
29401
29464
|
highlightColor?: string | undefined;
|
|
29465
|
+
mustBeConnected?: boolean | undefined;
|
|
29402
29466
|
}> | undefined;
|
|
29403
29467
|
cadModel?: string | {
|
|
29404
29468
|
stlUrl: string;
|
|
@@ -30214,6 +30278,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
30214
30278
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
30215
30279
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
30216
30280
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
30281
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
30217
30282
|
}, "strip", z.ZodTypeAny, {
|
|
30218
30283
|
providesPower?: boolean | undefined;
|
|
30219
30284
|
requiresPower?: boolean | undefined;
|
|
@@ -30224,6 +30289,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
30224
30289
|
doNotConnect?: boolean | undefined;
|
|
30225
30290
|
includeInBoardPinout?: boolean | undefined;
|
|
30226
30291
|
highlightColor?: string | undefined;
|
|
30292
|
+
mustBeConnected?: boolean | undefined;
|
|
30227
30293
|
}, {
|
|
30228
30294
|
providesPower?: boolean | undefined;
|
|
30229
30295
|
requiresPower?: boolean | undefined;
|
|
@@ -30234,6 +30300,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
30234
30300
|
doNotConnect?: boolean | undefined;
|
|
30235
30301
|
includeInBoardPinout?: boolean | undefined;
|
|
30236
30302
|
highlightColor?: string | undefined;
|
|
30303
|
+
mustBeConnected?: boolean | undefined;
|
|
30237
30304
|
}>>>;
|
|
30238
30305
|
} & {
|
|
30239
30306
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -30291,6 +30358,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
30291
30358
|
doNotConnect?: boolean | undefined;
|
|
30292
30359
|
includeInBoardPinout?: boolean | undefined;
|
|
30293
30360
|
highlightColor?: string | undefined;
|
|
30361
|
+
mustBeConnected?: boolean | undefined;
|
|
30294
30362
|
}> | undefined;
|
|
30295
30363
|
cadModel?: string | {
|
|
30296
30364
|
stlUrl: string;
|
|
@@ -30486,6 +30554,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
30486
30554
|
doNotConnect?: boolean | undefined;
|
|
30487
30555
|
includeInBoardPinout?: boolean | undefined;
|
|
30488
30556
|
highlightColor?: string | undefined;
|
|
30557
|
+
mustBeConnected?: boolean | undefined;
|
|
30489
30558
|
}> | undefined;
|
|
30490
30559
|
cadModel?: string | {
|
|
30491
30560
|
stlUrl: string;
|
|
@@ -32694,6 +32763,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
32694
32763
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
32695
32764
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
32696
32765
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
32766
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
32697
32767
|
}, "strip", z.ZodTypeAny, {
|
|
32698
32768
|
providesPower?: boolean | undefined;
|
|
32699
32769
|
requiresPower?: boolean | undefined;
|
|
@@ -32704,6 +32774,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
32704
32774
|
doNotConnect?: boolean | undefined;
|
|
32705
32775
|
includeInBoardPinout?: boolean | undefined;
|
|
32706
32776
|
highlightColor?: string | undefined;
|
|
32777
|
+
mustBeConnected?: boolean | undefined;
|
|
32707
32778
|
}, {
|
|
32708
32779
|
providesPower?: boolean | undefined;
|
|
32709
32780
|
requiresPower?: boolean | undefined;
|
|
@@ -32714,6 +32785,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
32714
32785
|
doNotConnect?: boolean | undefined;
|
|
32715
32786
|
includeInBoardPinout?: boolean | undefined;
|
|
32716
32787
|
highlightColor?: string | undefined;
|
|
32788
|
+
mustBeConnected?: boolean | undefined;
|
|
32717
32789
|
}>>>;
|
|
32718
32790
|
} & {
|
|
32719
32791
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -32780,6 +32852,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
32780
32852
|
doNotConnect?: boolean | undefined;
|
|
32781
32853
|
includeInBoardPinout?: boolean | undefined;
|
|
32782
32854
|
highlightColor?: string | undefined;
|
|
32855
|
+
mustBeConnected?: boolean | undefined;
|
|
32783
32856
|
}> | undefined;
|
|
32784
32857
|
cadModel?: string | {
|
|
32785
32858
|
stlUrl: string;
|
|
@@ -32981,6 +33054,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
32981
33054
|
doNotConnect?: boolean | undefined;
|
|
32982
33055
|
includeInBoardPinout?: boolean | undefined;
|
|
32983
33056
|
highlightColor?: string | undefined;
|
|
33057
|
+
mustBeConnected?: boolean | undefined;
|
|
32984
33058
|
}> | undefined;
|
|
32985
33059
|
cadModel?: string | {
|
|
32986
33060
|
stlUrl: string;
|
|
@@ -37296,6 +37370,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
37296
37370
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
37297
37371
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
37298
37372
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
37373
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
37299
37374
|
}, "strip", z.ZodTypeAny, {
|
|
37300
37375
|
providesPower?: boolean | undefined;
|
|
37301
37376
|
requiresPower?: boolean | undefined;
|
|
@@ -37306,6 +37381,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
37306
37381
|
doNotConnect?: boolean | undefined;
|
|
37307
37382
|
includeInBoardPinout?: boolean | undefined;
|
|
37308
37383
|
highlightColor?: string | undefined;
|
|
37384
|
+
mustBeConnected?: boolean | undefined;
|
|
37309
37385
|
}, {
|
|
37310
37386
|
providesPower?: boolean | undefined;
|
|
37311
37387
|
requiresPower?: boolean | undefined;
|
|
@@ -37316,6 +37392,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
37316
37392
|
doNotConnect?: boolean | undefined;
|
|
37317
37393
|
includeInBoardPinout?: boolean | undefined;
|
|
37318
37394
|
highlightColor?: string | undefined;
|
|
37395
|
+
mustBeConnected?: boolean | undefined;
|
|
37319
37396
|
}>>>;
|
|
37320
37397
|
} & {
|
|
37321
37398
|
capacity: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>>;
|
|
@@ -37372,6 +37449,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
37372
37449
|
doNotConnect?: boolean | undefined;
|
|
37373
37450
|
includeInBoardPinout?: boolean | undefined;
|
|
37374
37451
|
highlightColor?: string | undefined;
|
|
37452
|
+
mustBeConnected?: boolean | undefined;
|
|
37375
37453
|
}> | undefined;
|
|
37376
37454
|
cadModel?: string | {
|
|
37377
37455
|
stlUrl: string;
|
|
@@ -37568,6 +37646,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
37568
37646
|
doNotConnect?: boolean | undefined;
|
|
37569
37647
|
includeInBoardPinout?: boolean | undefined;
|
|
37570
37648
|
highlightColor?: string | undefined;
|
|
37649
|
+
mustBeConnected?: boolean | undefined;
|
|
37571
37650
|
}> | undefined;
|
|
37572
37651
|
cadModel?: string | {
|
|
37573
37652
|
stlUrl: string;
|
|
@@ -38458,6 +38537,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
38458
38537
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
38459
38538
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
38460
38539
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
38540
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
38461
38541
|
}, "strip", z.ZodTypeAny, {
|
|
38462
38542
|
providesPower?: boolean | undefined;
|
|
38463
38543
|
requiresPower?: boolean | undefined;
|
|
@@ -38468,6 +38548,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
38468
38548
|
doNotConnect?: boolean | undefined;
|
|
38469
38549
|
includeInBoardPinout?: boolean | undefined;
|
|
38470
38550
|
highlightColor?: string | undefined;
|
|
38551
|
+
mustBeConnected?: boolean | undefined;
|
|
38471
38552
|
}, {
|
|
38472
38553
|
providesPower?: boolean | undefined;
|
|
38473
38554
|
requiresPower?: boolean | undefined;
|
|
@@ -38478,6 +38559,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
38478
38559
|
doNotConnect?: boolean | undefined;
|
|
38479
38560
|
includeInBoardPinout?: boolean | undefined;
|
|
38480
38561
|
highlightColor?: string | undefined;
|
|
38562
|
+
mustBeConnected?: boolean | undefined;
|
|
38481
38563
|
}>>>;
|
|
38482
38564
|
} & {
|
|
38483
38565
|
pinCount: z.ZodNumber;
|
|
@@ -38677,6 +38759,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
38677
38759
|
doNotConnect?: boolean | undefined;
|
|
38678
38760
|
includeInBoardPinout?: boolean | undefined;
|
|
38679
38761
|
highlightColor?: string | undefined;
|
|
38762
|
+
mustBeConnected?: boolean | undefined;
|
|
38680
38763
|
}> | undefined;
|
|
38681
38764
|
cadModel?: string | {
|
|
38682
38765
|
stlUrl: string;
|
|
@@ -38921,6 +39004,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
38921
39004
|
doNotConnect?: boolean | undefined;
|
|
38922
39005
|
includeInBoardPinout?: boolean | undefined;
|
|
38923
39006
|
highlightColor?: string | undefined;
|
|
39007
|
+
mustBeConnected?: boolean | undefined;
|
|
38924
39008
|
}> | undefined;
|
|
38925
39009
|
cadModel?: string | {
|
|
38926
39010
|
stlUrl: string;
|
|
@@ -39848,6 +39932,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
39848
39932
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
39849
39933
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
39850
39934
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
39935
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
39851
39936
|
}, "strip", z.ZodTypeAny, {
|
|
39852
39937
|
providesPower?: boolean | undefined;
|
|
39853
39938
|
requiresPower?: boolean | undefined;
|
|
@@ -39858,6 +39943,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
39858
39943
|
doNotConnect?: boolean | undefined;
|
|
39859
39944
|
includeInBoardPinout?: boolean | undefined;
|
|
39860
39945
|
highlightColor?: string | undefined;
|
|
39946
|
+
mustBeConnected?: boolean | undefined;
|
|
39861
39947
|
}, {
|
|
39862
39948
|
providesPower?: boolean | undefined;
|
|
39863
39949
|
requiresPower?: boolean | undefined;
|
|
@@ -39868,6 +39954,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
39868
39954
|
doNotConnect?: boolean | undefined;
|
|
39869
39955
|
includeInBoardPinout?: boolean | undefined;
|
|
39870
39956
|
highlightColor?: string | undefined;
|
|
39957
|
+
mustBeConnected?: boolean | undefined;
|
|
39871
39958
|
}>>>;
|
|
39872
39959
|
} & {
|
|
39873
39960
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -40169,6 +40256,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
40169
40256
|
doNotConnect?: boolean | undefined;
|
|
40170
40257
|
includeInBoardPinout?: boolean | undefined;
|
|
40171
40258
|
highlightColor?: string | undefined;
|
|
40259
|
+
mustBeConnected?: boolean | undefined;
|
|
40172
40260
|
}> | undefined;
|
|
40173
40261
|
cadModel?: string | {
|
|
40174
40262
|
stlUrl: string;
|
|
@@ -40438,6 +40526,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
40438
40526
|
doNotConnect?: boolean | undefined;
|
|
40439
40527
|
includeInBoardPinout?: boolean | undefined;
|
|
40440
40528
|
highlightColor?: string | undefined;
|
|
40529
|
+
mustBeConnected?: boolean | undefined;
|
|
40441
40530
|
}> | undefined;
|
|
40442
40531
|
cadModel?: string | {
|
|
40443
40532
|
stlUrl: string;
|
|
@@ -42635,6 +42724,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
42635
42724
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
42636
42725
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
42637
42726
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
42727
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
42638
42728
|
}, "strip", z.ZodTypeAny, {
|
|
42639
42729
|
providesPower?: boolean | undefined;
|
|
42640
42730
|
requiresPower?: boolean | undefined;
|
|
@@ -42645,6 +42735,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
42645
42735
|
doNotConnect?: boolean | undefined;
|
|
42646
42736
|
includeInBoardPinout?: boolean | undefined;
|
|
42647
42737
|
highlightColor?: string | undefined;
|
|
42738
|
+
mustBeConnected?: boolean | undefined;
|
|
42648
42739
|
}, {
|
|
42649
42740
|
providesPower?: boolean | undefined;
|
|
42650
42741
|
requiresPower?: boolean | undefined;
|
|
@@ -42655,6 +42746,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
42655
42746
|
doNotConnect?: boolean | undefined;
|
|
42656
42747
|
includeInBoardPinout?: boolean | undefined;
|
|
42657
42748
|
highlightColor?: string | undefined;
|
|
42749
|
+
mustBeConnected?: boolean | undefined;
|
|
42658
42750
|
}>>>;
|
|
42659
42751
|
} & {
|
|
42660
42752
|
type: z.ZodEnum<["npn", "pnp", "bjt", "jfet", "mosfet", "igbt"]>;
|
|
@@ -42710,6 +42802,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
42710
42802
|
doNotConnect?: boolean | undefined;
|
|
42711
42803
|
includeInBoardPinout?: boolean | undefined;
|
|
42712
42804
|
highlightColor?: string | undefined;
|
|
42805
|
+
mustBeConnected?: boolean | undefined;
|
|
42713
42806
|
}> | undefined;
|
|
42714
42807
|
cadModel?: string | {
|
|
42715
42808
|
stlUrl: string;
|
|
@@ -42904,6 +42997,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
42904
42997
|
doNotConnect?: boolean | undefined;
|
|
42905
42998
|
includeInBoardPinout?: boolean | undefined;
|
|
42906
42999
|
highlightColor?: string | undefined;
|
|
43000
|
+
mustBeConnected?: boolean | undefined;
|
|
42907
43001
|
}> | undefined;
|
|
42908
43002
|
cadModel?: string | {
|
|
42909
43003
|
stlUrl: string;
|
|
@@ -43715,6 +43809,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
43715
43809
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
43716
43810
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
43717
43811
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
43812
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
43718
43813
|
}, "strip", z.ZodTypeAny, {
|
|
43719
43814
|
providesPower?: boolean | undefined;
|
|
43720
43815
|
requiresPower?: boolean | undefined;
|
|
@@ -43725,6 +43820,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
43725
43820
|
doNotConnect?: boolean | undefined;
|
|
43726
43821
|
includeInBoardPinout?: boolean | undefined;
|
|
43727
43822
|
highlightColor?: string | undefined;
|
|
43823
|
+
mustBeConnected?: boolean | undefined;
|
|
43728
43824
|
}, {
|
|
43729
43825
|
providesPower?: boolean | undefined;
|
|
43730
43826
|
requiresPower?: boolean | undefined;
|
|
@@ -43735,6 +43831,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
43735
43831
|
doNotConnect?: boolean | undefined;
|
|
43736
43832
|
includeInBoardPinout?: boolean | undefined;
|
|
43737
43833
|
highlightColor?: string | undefined;
|
|
43834
|
+
mustBeConnected?: boolean | undefined;
|
|
43738
43835
|
}>>>;
|
|
43739
43836
|
} & {
|
|
43740
43837
|
channelType: z.ZodEnum<["n", "p"]>;
|
|
@@ -43791,6 +43888,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
43791
43888
|
doNotConnect?: boolean | undefined;
|
|
43792
43889
|
includeInBoardPinout?: boolean | undefined;
|
|
43793
43890
|
highlightColor?: string | undefined;
|
|
43891
|
+
mustBeConnected?: boolean | undefined;
|
|
43794
43892
|
}> | undefined;
|
|
43795
43893
|
cadModel?: string | {
|
|
43796
43894
|
stlUrl: string;
|
|
@@ -43985,6 +44083,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
43985
44083
|
doNotConnect?: boolean | undefined;
|
|
43986
44084
|
includeInBoardPinout?: boolean | undefined;
|
|
43987
44085
|
highlightColor?: string | undefined;
|
|
44086
|
+
mustBeConnected?: boolean | undefined;
|
|
43988
44087
|
}> | undefined;
|
|
43989
44088
|
cadModel?: string | {
|
|
43990
44089
|
stlUrl: string;
|
|
@@ -44799,6 +44898,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
44799
44898
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
44800
44899
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
44801
44900
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
44901
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
44802
44902
|
}, "strip", z.ZodTypeAny, {
|
|
44803
44903
|
providesPower?: boolean | undefined;
|
|
44804
44904
|
requiresPower?: boolean | undefined;
|
|
@@ -44809,6 +44909,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
44809
44909
|
doNotConnect?: boolean | undefined;
|
|
44810
44910
|
includeInBoardPinout?: boolean | undefined;
|
|
44811
44911
|
highlightColor?: string | undefined;
|
|
44912
|
+
mustBeConnected?: boolean | undefined;
|
|
44812
44913
|
}, {
|
|
44813
44914
|
providesPower?: boolean | undefined;
|
|
44814
44915
|
requiresPower?: boolean | undefined;
|
|
@@ -44819,6 +44920,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
44819
44920
|
doNotConnect?: boolean | undefined;
|
|
44820
44921
|
includeInBoardPinout?: boolean | undefined;
|
|
44821
44922
|
highlightColor?: string | undefined;
|
|
44923
|
+
mustBeConnected?: boolean | undefined;
|
|
44822
44924
|
}>>>;
|
|
44823
44925
|
} & {
|
|
44824
44926
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -44876,6 +44978,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
44876
44978
|
doNotConnect?: boolean | undefined;
|
|
44877
44979
|
includeInBoardPinout?: boolean | undefined;
|
|
44878
44980
|
highlightColor?: string | undefined;
|
|
44981
|
+
mustBeConnected?: boolean | undefined;
|
|
44879
44982
|
}> | undefined;
|
|
44880
44983
|
cadModel?: string | {
|
|
44881
44984
|
stlUrl: string;
|
|
@@ -45072,6 +45175,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
45072
45175
|
doNotConnect?: boolean | undefined;
|
|
45073
45176
|
includeInBoardPinout?: boolean | undefined;
|
|
45074
45177
|
highlightColor?: string | undefined;
|
|
45178
|
+
mustBeConnected?: boolean | undefined;
|
|
45075
45179
|
}> | undefined;
|
|
45076
45180
|
cadModel?: string | {
|
|
45077
45181
|
stlUrl: string;
|
|
@@ -45879,6 +45983,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
45879
45983
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
45880
45984
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
45881
45985
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
45986
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
45882
45987
|
}, "strip", z.ZodTypeAny, {
|
|
45883
45988
|
providesPower?: boolean | undefined;
|
|
45884
45989
|
requiresPower?: boolean | undefined;
|
|
@@ -45889,6 +45994,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
45889
45994
|
doNotConnect?: boolean | undefined;
|
|
45890
45995
|
includeInBoardPinout?: boolean | undefined;
|
|
45891
45996
|
highlightColor?: string | undefined;
|
|
45997
|
+
mustBeConnected?: boolean | undefined;
|
|
45892
45998
|
}, {
|
|
45893
45999
|
providesPower?: boolean | undefined;
|
|
45894
46000
|
requiresPower?: boolean | undefined;
|
|
@@ -45899,6 +46005,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
45899
46005
|
doNotConnect?: boolean | undefined;
|
|
45900
46006
|
includeInBoardPinout?: boolean | undefined;
|
|
45901
46007
|
highlightColor?: string | undefined;
|
|
46008
|
+
mustBeConnected?: boolean | undefined;
|
|
45902
46009
|
}>>>;
|
|
45903
46010
|
} & {
|
|
45904
46011
|
connections: z.ZodOptional<z.ZodRecord<z.ZodEnum<["anode", "cathode", "pin1", "pin2", "pos", "neg"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -45961,6 +46068,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
45961
46068
|
doNotConnect?: boolean | undefined;
|
|
45962
46069
|
includeInBoardPinout?: boolean | undefined;
|
|
45963
46070
|
highlightColor?: string | undefined;
|
|
46071
|
+
mustBeConnected?: boolean | undefined;
|
|
45964
46072
|
}> | undefined;
|
|
45965
46073
|
cadModel?: string | {
|
|
45966
46074
|
stlUrl: string;
|
|
@@ -46161,6 +46269,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
46161
46269
|
doNotConnect?: boolean | undefined;
|
|
46162
46270
|
includeInBoardPinout?: boolean | undefined;
|
|
46163
46271
|
highlightColor?: string | undefined;
|
|
46272
|
+
mustBeConnected?: boolean | undefined;
|
|
46164
46273
|
}> | undefined;
|
|
46165
46274
|
cadModel?: string | {
|
|
46166
46275
|
stlUrl: string;
|
|
@@ -46361,6 +46470,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
46361
46470
|
doNotConnect?: boolean | undefined;
|
|
46362
46471
|
includeInBoardPinout?: boolean | undefined;
|
|
46363
46472
|
highlightColor?: string | undefined;
|
|
46473
|
+
mustBeConnected?: boolean | undefined;
|
|
46364
46474
|
}> | undefined;
|
|
46365
46475
|
cadModel?: string | {
|
|
46366
46476
|
stlUrl: string;
|
|
@@ -46561,6 +46671,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
46561
46671
|
doNotConnect?: boolean | undefined;
|
|
46562
46672
|
includeInBoardPinout?: boolean | undefined;
|
|
46563
46673
|
highlightColor?: string | undefined;
|
|
46674
|
+
mustBeConnected?: boolean | undefined;
|
|
46564
46675
|
}> | undefined;
|
|
46565
46676
|
cadModel?: string | {
|
|
46566
46677
|
stlUrl: string;
|
|
@@ -46767,6 +46878,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
46767
46878
|
doNotConnect?: boolean | undefined;
|
|
46768
46879
|
includeInBoardPinout?: boolean | undefined;
|
|
46769
46880
|
highlightColor?: string | undefined;
|
|
46881
|
+
mustBeConnected?: boolean | undefined;
|
|
46770
46882
|
}> | undefined;
|
|
46771
46883
|
cadModel?: string | {
|
|
46772
46884
|
stlUrl: string;
|
|
@@ -46961,6 +47073,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
46961
47073
|
doNotConnect?: boolean | undefined;
|
|
46962
47074
|
includeInBoardPinout?: boolean | undefined;
|
|
46963
47075
|
highlightColor?: string | undefined;
|
|
47076
|
+
mustBeConnected?: boolean | undefined;
|
|
46964
47077
|
}> | undefined;
|
|
46965
47078
|
cadModel?: string | {
|
|
46966
47079
|
stlUrl: string;
|
|
@@ -47796,6 +47909,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
47796
47909
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
47797
47910
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
47798
47911
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
47912
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
47799
47913
|
}, "strip", z.ZodTypeAny, {
|
|
47800
47914
|
providesPower?: boolean | undefined;
|
|
47801
47915
|
requiresPower?: boolean | undefined;
|
|
@@ -47806,6 +47920,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
47806
47920
|
doNotConnect?: boolean | undefined;
|
|
47807
47921
|
includeInBoardPinout?: boolean | undefined;
|
|
47808
47922
|
highlightColor?: string | undefined;
|
|
47923
|
+
mustBeConnected?: boolean | undefined;
|
|
47809
47924
|
}, {
|
|
47810
47925
|
providesPower?: boolean | undefined;
|
|
47811
47926
|
requiresPower?: boolean | undefined;
|
|
@@ -47816,6 +47931,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
47816
47931
|
doNotConnect?: boolean | undefined;
|
|
47817
47932
|
includeInBoardPinout?: boolean | undefined;
|
|
47818
47933
|
highlightColor?: string | undefined;
|
|
47934
|
+
mustBeConnected?: boolean | undefined;
|
|
47819
47935
|
}>>>;
|
|
47820
47936
|
} & {
|
|
47821
47937
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -47874,6 +47990,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
47874
47990
|
doNotConnect?: boolean | undefined;
|
|
47875
47991
|
includeInBoardPinout?: boolean | undefined;
|
|
47876
47992
|
highlightColor?: string | undefined;
|
|
47993
|
+
mustBeConnected?: boolean | undefined;
|
|
47877
47994
|
}> | undefined;
|
|
47878
47995
|
cadModel?: string | {
|
|
47879
47996
|
stlUrl: string;
|
|
@@ -48072,6 +48189,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
48072
48189
|
doNotConnect?: boolean | undefined;
|
|
48073
48190
|
includeInBoardPinout?: boolean | undefined;
|
|
48074
48191
|
highlightColor?: string | undefined;
|
|
48192
|
+
mustBeConnected?: boolean | undefined;
|
|
48075
48193
|
}> | undefined;
|
|
48076
48194
|
cadModel?: string | {
|
|
48077
48195
|
stlUrl: string;
|
|
@@ -48898,6 +49016,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
48898
49016
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
48899
49017
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
48900
49018
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
49019
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
48901
49020
|
}, "strip", z.ZodTypeAny, {
|
|
48902
49021
|
providesPower?: boolean | undefined;
|
|
48903
49022
|
requiresPower?: boolean | undefined;
|
|
@@ -48908,6 +49027,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
48908
49027
|
doNotConnect?: boolean | undefined;
|
|
48909
49028
|
includeInBoardPinout?: boolean | undefined;
|
|
48910
49029
|
highlightColor?: string | undefined;
|
|
49030
|
+
mustBeConnected?: boolean | undefined;
|
|
48911
49031
|
}, {
|
|
48912
49032
|
providesPower?: boolean | undefined;
|
|
48913
49033
|
requiresPower?: boolean | undefined;
|
|
@@ -48918,6 +49038,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
48918
49038
|
doNotConnect?: boolean | undefined;
|
|
48919
49039
|
includeInBoardPinout?: boolean | undefined;
|
|
48920
49040
|
highlightColor?: string | undefined;
|
|
49041
|
+
mustBeConnected?: boolean | undefined;
|
|
48921
49042
|
}>>>;
|
|
48922
49043
|
} & {
|
|
48923
49044
|
type: z.ZodOptional<z.ZodEnum<["spst", "spdt", "dpst", "dpdt"]>>;
|
|
@@ -48984,6 +49105,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
48984
49105
|
doNotConnect?: boolean | undefined;
|
|
48985
49106
|
includeInBoardPinout?: boolean | undefined;
|
|
48986
49107
|
highlightColor?: string | undefined;
|
|
49108
|
+
mustBeConnected?: boolean | undefined;
|
|
48987
49109
|
}> | undefined;
|
|
48988
49110
|
cadModel?: string | {
|
|
48989
49111
|
stlUrl: string;
|
|
@@ -49187,6 +49309,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
49187
49309
|
doNotConnect?: boolean | undefined;
|
|
49188
49310
|
includeInBoardPinout?: boolean | undefined;
|
|
49189
49311
|
highlightColor?: string | undefined;
|
|
49312
|
+
mustBeConnected?: boolean | undefined;
|
|
49190
49313
|
}> | undefined;
|
|
49191
49314
|
cadModel?: string | {
|
|
49192
49315
|
stlUrl: string;
|
|
@@ -49391,6 +49514,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
49391
49514
|
doNotConnect?: boolean | undefined;
|
|
49392
49515
|
includeInBoardPinout?: boolean | undefined;
|
|
49393
49516
|
highlightColor?: string | undefined;
|
|
49517
|
+
mustBeConnected?: boolean | undefined;
|
|
49394
49518
|
}> | undefined;
|
|
49395
49519
|
cadModel?: string | {
|
|
49396
49520
|
stlUrl: string;
|
|
@@ -51087,6 +51211,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
51087
51211
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
51088
51212
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
51089
51213
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
51214
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
51090
51215
|
}, "strip", z.ZodTypeAny, {
|
|
51091
51216
|
providesPower?: boolean | undefined;
|
|
51092
51217
|
requiresPower?: boolean | undefined;
|
|
@@ -51097,6 +51222,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
51097
51222
|
doNotConnect?: boolean | undefined;
|
|
51098
51223
|
includeInBoardPinout?: boolean | undefined;
|
|
51099
51224
|
highlightColor?: string | undefined;
|
|
51225
|
+
mustBeConnected?: boolean | undefined;
|
|
51100
51226
|
}, {
|
|
51101
51227
|
providesPower?: boolean | undefined;
|
|
51102
51228
|
requiresPower?: boolean | undefined;
|
|
@@ -51107,6 +51233,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
51107
51233
|
doNotConnect?: boolean | undefined;
|
|
51108
51234
|
includeInBoardPinout?: boolean | undefined;
|
|
51109
51235
|
highlightColor?: string | undefined;
|
|
51236
|
+
mustBeConnected?: boolean | undefined;
|
|
51110
51237
|
}>>>;
|
|
51111
51238
|
} & {
|
|
51112
51239
|
connections: z.ZodOptional<z.ZodObject<{
|
|
@@ -51173,6 +51300,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
51173
51300
|
doNotConnect?: boolean | undefined;
|
|
51174
51301
|
includeInBoardPinout?: boolean | undefined;
|
|
51175
51302
|
highlightColor?: string | undefined;
|
|
51303
|
+
mustBeConnected?: boolean | undefined;
|
|
51176
51304
|
}> | undefined;
|
|
51177
51305
|
cadModel?: string | {
|
|
51178
51306
|
stlUrl: string;
|
|
@@ -51373,6 +51501,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
51373
51501
|
doNotConnect?: boolean | undefined;
|
|
51374
51502
|
includeInBoardPinout?: boolean | undefined;
|
|
51375
51503
|
highlightColor?: string | undefined;
|
|
51504
|
+
mustBeConnected?: boolean | undefined;
|
|
51376
51505
|
}> | undefined;
|
|
51377
51506
|
cadModel?: string | {
|
|
51378
51507
|
stlUrl: string;
|
|
@@ -51573,6 +51702,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
51573
51702
|
doNotConnect?: boolean | undefined;
|
|
51574
51703
|
includeInBoardPinout?: boolean | undefined;
|
|
51575
51704
|
highlightColor?: string | undefined;
|
|
51705
|
+
mustBeConnected?: boolean | undefined;
|
|
51576
51706
|
}> | undefined;
|
|
51577
51707
|
cadModel?: string | {
|
|
51578
51708
|
stlUrl: string;
|
|
@@ -51773,6 +51903,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
51773
51903
|
doNotConnect?: boolean | undefined;
|
|
51774
51904
|
includeInBoardPinout?: boolean | undefined;
|
|
51775
51905
|
highlightColor?: string | undefined;
|
|
51906
|
+
mustBeConnected?: boolean | undefined;
|
|
51776
51907
|
}> | undefined;
|
|
51777
51908
|
cadModel?: string | {
|
|
51778
51909
|
stlUrl: string;
|
|
@@ -53383,6 +53514,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
53383
53514
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
53384
53515
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
53385
53516
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
53517
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
53386
53518
|
}, "strip", z.ZodTypeAny, {
|
|
53387
53519
|
providesPower?: boolean | undefined;
|
|
53388
53520
|
requiresPower?: boolean | undefined;
|
|
@@ -53393,6 +53525,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
53393
53525
|
doNotConnect?: boolean | undefined;
|
|
53394
53526
|
includeInBoardPinout?: boolean | undefined;
|
|
53395
53527
|
highlightColor?: string | undefined;
|
|
53528
|
+
mustBeConnected?: boolean | undefined;
|
|
53396
53529
|
}, {
|
|
53397
53530
|
providesPower?: boolean | undefined;
|
|
53398
53531
|
requiresPower?: boolean | undefined;
|
|
@@ -53403,6 +53536,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
53403
53536
|
doNotConnect?: boolean | undefined;
|
|
53404
53537
|
includeInBoardPinout?: boolean | undefined;
|
|
53405
53538
|
highlightColor?: string | undefined;
|
|
53539
|
+
mustBeConnected?: boolean | undefined;
|
|
53406
53540
|
}>>>;
|
|
53407
53541
|
} & {
|
|
53408
53542
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -53457,6 +53591,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
53457
53591
|
doNotConnect?: boolean | undefined;
|
|
53458
53592
|
includeInBoardPinout?: boolean | undefined;
|
|
53459
53593
|
highlightColor?: string | undefined;
|
|
53594
|
+
mustBeConnected?: boolean | undefined;
|
|
53460
53595
|
}> | undefined;
|
|
53461
53596
|
cadModel?: string | {
|
|
53462
53597
|
stlUrl: string;
|
|
@@ -53650,6 +53785,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
53650
53785
|
doNotConnect?: boolean | undefined;
|
|
53651
53786
|
includeInBoardPinout?: boolean | undefined;
|
|
53652
53787
|
highlightColor?: string | undefined;
|
|
53788
|
+
mustBeConnected?: boolean | undefined;
|
|
53653
53789
|
}> | undefined;
|
|
53654
53790
|
cadModel?: string | {
|
|
53655
53791
|
stlUrl: string;
|
|
@@ -54467,6 +54603,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
54467
54603
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
54468
54604
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
54469
54605
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
54606
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
54470
54607
|
}, "strip", z.ZodTypeAny, {
|
|
54471
54608
|
providesPower?: boolean | undefined;
|
|
54472
54609
|
requiresPower?: boolean | undefined;
|
|
@@ -54477,6 +54614,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
54477
54614
|
doNotConnect?: boolean | undefined;
|
|
54478
54615
|
includeInBoardPinout?: boolean | undefined;
|
|
54479
54616
|
highlightColor?: string | undefined;
|
|
54617
|
+
mustBeConnected?: boolean | undefined;
|
|
54480
54618
|
}, {
|
|
54481
54619
|
providesPower?: boolean | undefined;
|
|
54482
54620
|
requiresPower?: boolean | undefined;
|
|
@@ -54487,6 +54625,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
54487
54625
|
doNotConnect?: boolean | undefined;
|
|
54488
54626
|
includeInBoardPinout?: boolean | undefined;
|
|
54489
54627
|
highlightColor?: string | undefined;
|
|
54628
|
+
mustBeConnected?: boolean | undefined;
|
|
54490
54629
|
}>>>;
|
|
54491
54630
|
} & {
|
|
54492
54631
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -54546,6 +54685,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
54546
54685
|
doNotConnect?: boolean | undefined;
|
|
54547
54686
|
includeInBoardPinout?: boolean | undefined;
|
|
54548
54687
|
highlightColor?: string | undefined;
|
|
54688
|
+
mustBeConnected?: boolean | undefined;
|
|
54549
54689
|
}> | undefined;
|
|
54550
54690
|
cadModel?: string | {
|
|
54551
54691
|
stlUrl: string;
|
|
@@ -54745,6 +54885,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
54745
54885
|
doNotConnect?: boolean | undefined;
|
|
54746
54886
|
includeInBoardPinout?: boolean | undefined;
|
|
54747
54887
|
highlightColor?: string | undefined;
|
|
54888
|
+
mustBeConnected?: boolean | undefined;
|
|
54748
54889
|
}> | undefined;
|
|
54749
54890
|
cadModel?: string | {
|
|
54750
54891
|
stlUrl: string;
|
|
@@ -55562,6 +55703,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
55562
55703
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
55563
55704
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
55564
55705
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
55706
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
55565
55707
|
}, "strip", z.ZodTypeAny, {
|
|
55566
55708
|
providesPower?: boolean | undefined;
|
|
55567
55709
|
requiresPower?: boolean | undefined;
|
|
@@ -55572,6 +55714,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
55572
55714
|
doNotConnect?: boolean | undefined;
|
|
55573
55715
|
includeInBoardPinout?: boolean | undefined;
|
|
55574
55716
|
highlightColor?: string | undefined;
|
|
55717
|
+
mustBeConnected?: boolean | undefined;
|
|
55575
55718
|
}, {
|
|
55576
55719
|
providesPower?: boolean | undefined;
|
|
55577
55720
|
requiresPower?: boolean | undefined;
|
|
@@ -55582,6 +55725,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
55582
55725
|
doNotConnect?: boolean | undefined;
|
|
55583
55726
|
includeInBoardPinout?: boolean | undefined;
|
|
55584
55727
|
highlightColor?: string | undefined;
|
|
55728
|
+
mustBeConnected?: boolean | undefined;
|
|
55585
55729
|
}>>>;
|
|
55586
55730
|
}, "name"> & {
|
|
55587
55731
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -55638,6 +55782,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
55638
55782
|
doNotConnect?: boolean | undefined;
|
|
55639
55783
|
includeInBoardPinout?: boolean | undefined;
|
|
55640
55784
|
highlightColor?: string | undefined;
|
|
55785
|
+
mustBeConnected?: boolean | undefined;
|
|
55641
55786
|
}> | undefined;
|
|
55642
55787
|
cadModel?: string | {
|
|
55643
55788
|
stlUrl: string;
|
|
@@ -55832,6 +55977,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
55832
55977
|
doNotConnect?: boolean | undefined;
|
|
55833
55978
|
includeInBoardPinout?: boolean | undefined;
|
|
55834
55979
|
highlightColor?: string | undefined;
|
|
55980
|
+
mustBeConnected?: boolean | undefined;
|
|
55835
55981
|
}> | undefined;
|
|
55836
55982
|
cadModel?: string | {
|
|
55837
55983
|
stlUrl: string;
|