@tscircuit/props 0.0.405 → 0.0.407
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 +231 -0
- package/dist/index.js +30 -15
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +2 -0
- package/lib/components/hole.ts +6 -0
- package/lib/components/platedhole.ts +13 -0
- package/lib/components/smtpad.ts +10 -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;
|
|
@@ -24964,6 +25013,7 @@ interface CirclePlatedHoleProps extends Omit<PcbLayoutProps, "pcbRotation" | "la
|
|
|
24964
25013
|
holeDiameter: number | string;
|
|
24965
25014
|
outerDiameter: number | string;
|
|
24966
25015
|
portHints?: PortHints;
|
|
25016
|
+
solderMaskMargin?: Distance;
|
|
24967
25017
|
}
|
|
24968
25018
|
interface OvalPlatedHoleProps extends Omit<PcbLayoutProps, "layer"> {
|
|
24969
25019
|
name?: string;
|
|
@@ -24974,6 +25024,7 @@ interface OvalPlatedHoleProps extends Omit<PcbLayoutProps, "layer"> {
|
|
|
24974
25024
|
holeWidth: number | string;
|
|
24975
25025
|
holeHeight: number | string;
|
|
24976
25026
|
portHints?: PortHints;
|
|
25027
|
+
solderMaskMargin?: Distance;
|
|
24977
25028
|
/** @deprecated use holeWidth */
|
|
24978
25029
|
innerWidth?: number | string;
|
|
24979
25030
|
/** @deprecated use holeHeight */
|
|
@@ -24995,6 +25046,7 @@ interface PillPlatedHoleProps extends Omit<PcbLayoutProps, "layer"> {
|
|
|
24995
25046
|
/** @deprecated use holeHeight */
|
|
24996
25047
|
innerHeight?: number | string;
|
|
24997
25048
|
portHints?: PortHints;
|
|
25049
|
+
solderMaskMargin?: Distance;
|
|
24998
25050
|
}
|
|
24999
25051
|
interface CircularHoleWithRectPlatedProps extends Omit<PcbLayoutProps, "pcbRotation" | "layer"> {
|
|
25000
25052
|
name?: string;
|
|
@@ -25009,6 +25061,7 @@ interface CircularHoleWithRectPlatedProps extends Omit<PcbLayoutProps, "pcbRotat
|
|
|
25009
25061
|
portHints?: PortHints;
|
|
25010
25062
|
holeOffsetX?: number | string;
|
|
25011
25063
|
holeOffsetY?: number | string;
|
|
25064
|
+
solderMaskMargin?: Distance;
|
|
25012
25065
|
}
|
|
25013
25066
|
interface PillWithRectPadPlatedHoleProps extends Omit<PcbLayoutProps, "pcbRotation" | "layer"> {
|
|
25014
25067
|
name?: string;
|
|
@@ -25023,6 +25076,7 @@ interface PillWithRectPadPlatedHoleProps extends Omit<PcbLayoutProps, "pcbRotati
|
|
|
25023
25076
|
portHints?: PortHints;
|
|
25024
25077
|
holeOffsetX?: number | string;
|
|
25025
25078
|
holeOffsetY?: number | string;
|
|
25079
|
+
solderMaskMargin?: Distance;
|
|
25026
25080
|
}
|
|
25027
25081
|
interface HoleWithPolygonPadPlatedHoleProps extends Omit<PcbLayoutProps, "pcbRotation" | "layer"> {
|
|
25028
25082
|
name?: string;
|
|
@@ -25036,6 +25090,7 @@ interface HoleWithPolygonPadPlatedHoleProps extends Omit<PcbLayoutProps, "pcbRot
|
|
|
25036
25090
|
holeOffsetX: number | string;
|
|
25037
25091
|
holeOffsetY: number | string;
|
|
25038
25092
|
portHints?: PortHints;
|
|
25093
|
+
solderMaskMargin?: Distance;
|
|
25039
25094
|
}
|
|
25040
25095
|
type PlatedHoleProps = CirclePlatedHoleProps | OvalPlatedHoleProps | PillPlatedHoleProps | CircularHoleWithRectPlatedProps | PillWithRectPadPlatedHoleProps | HoleWithPolygonPadPlatedHoleProps;
|
|
25041
25096
|
declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
@@ -25098,6 +25153,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25098
25153
|
holeDiameter: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
25099
25154
|
outerDiameter: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
25100
25155
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
25156
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25101
25157
|
}, "strip", z.ZodTypeAny, {
|
|
25102
25158
|
shape: "circle";
|
|
25103
25159
|
holeDiameter: number;
|
|
@@ -25127,6 +25183,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25127
25183
|
name?: string | undefined;
|
|
25128
25184
|
connectsTo?: string | string[] | undefined;
|
|
25129
25185
|
portHints?: (string | number)[] | undefined;
|
|
25186
|
+
solderMaskMargin?: number | undefined;
|
|
25130
25187
|
}, {
|
|
25131
25188
|
shape: "circle";
|
|
25132
25189
|
holeDiameter: string | number;
|
|
@@ -25156,6 +25213,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25156
25213
|
name?: string | undefined;
|
|
25157
25214
|
connectsTo?: string | string[] | undefined;
|
|
25158
25215
|
portHints?: (string | number)[] | undefined;
|
|
25216
|
+
solderMaskMargin?: string | number | undefined;
|
|
25159
25217
|
}>, z.ZodObject<Omit<{
|
|
25160
25218
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25161
25219
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -25220,6 +25278,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25220
25278
|
innerWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25221
25279
|
innerHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25222
25280
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
25281
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25223
25282
|
}, "strip", z.ZodTypeAny, {
|
|
25224
25283
|
shape: "oval";
|
|
25225
25284
|
outerWidth: number;
|
|
@@ -25250,6 +25309,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25250
25309
|
name?: string | undefined;
|
|
25251
25310
|
connectsTo?: string | string[] | undefined;
|
|
25252
25311
|
portHints?: (string | number)[] | undefined;
|
|
25312
|
+
solderMaskMargin?: number | undefined;
|
|
25253
25313
|
holeWidth?: number | undefined;
|
|
25254
25314
|
holeHeight?: number | undefined;
|
|
25255
25315
|
innerWidth?: number | undefined;
|
|
@@ -25286,6 +25346,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25286
25346
|
name?: string | undefined;
|
|
25287
25347
|
connectsTo?: string | string[] | undefined;
|
|
25288
25348
|
portHints?: (string | number)[] | undefined;
|
|
25349
|
+
solderMaskMargin?: string | number | undefined;
|
|
25289
25350
|
innerWidth?: string | number | undefined;
|
|
25290
25351
|
innerHeight?: string | number | undefined;
|
|
25291
25352
|
}>, z.ZodObject<Omit<{
|
|
@@ -25355,6 +25416,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25355
25416
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
25356
25417
|
holeOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25357
25418
|
holeOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25419
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25358
25420
|
}, "strip", z.ZodTypeAny, {
|
|
25359
25421
|
shape: "pill";
|
|
25360
25422
|
outerWidth: number;
|
|
@@ -25385,6 +25447,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25385
25447
|
name?: string | undefined;
|
|
25386
25448
|
connectsTo?: string | string[] | undefined;
|
|
25387
25449
|
portHints?: (string | number)[] | undefined;
|
|
25450
|
+
solderMaskMargin?: number | undefined;
|
|
25388
25451
|
holeWidth?: number | undefined;
|
|
25389
25452
|
holeHeight?: number | undefined;
|
|
25390
25453
|
innerWidth?: number | undefined;
|
|
@@ -25424,6 +25487,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25424
25487
|
name?: string | undefined;
|
|
25425
25488
|
connectsTo?: string | string[] | undefined;
|
|
25426
25489
|
portHints?: (string | number)[] | undefined;
|
|
25490
|
+
solderMaskMargin?: string | number | undefined;
|
|
25427
25491
|
innerWidth?: string | number | undefined;
|
|
25428
25492
|
innerHeight?: string | number | undefined;
|
|
25429
25493
|
rectPad?: boolean | undefined;
|
|
@@ -25495,6 +25559,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25495
25559
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
25496
25560
|
holeOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25497
25561
|
holeOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25562
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25498
25563
|
}, "strip", z.ZodTypeAny, {
|
|
25499
25564
|
shape: "circular_hole_with_rect_pad";
|
|
25500
25565
|
holeDiameter: number;
|
|
@@ -25525,6 +25590,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25525
25590
|
name?: string | undefined;
|
|
25526
25591
|
connectsTo?: string | string[] | undefined;
|
|
25527
25592
|
portHints?: (string | number)[] | undefined;
|
|
25593
|
+
solderMaskMargin?: number | undefined;
|
|
25528
25594
|
holeOffsetX?: number | undefined;
|
|
25529
25595
|
holeOffsetY?: number | undefined;
|
|
25530
25596
|
rectBorderRadius?: number | undefined;
|
|
@@ -25560,6 +25626,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25560
25626
|
name?: string | undefined;
|
|
25561
25627
|
connectsTo?: string | string[] | undefined;
|
|
25562
25628
|
portHints?: (string | number)[] | undefined;
|
|
25629
|
+
solderMaskMargin?: string | number | undefined;
|
|
25563
25630
|
holeOffsetX?: string | number | undefined;
|
|
25564
25631
|
holeOffsetY?: string | number | undefined;
|
|
25565
25632
|
rectBorderRadius?: string | number | undefined;
|
|
@@ -25631,6 +25698,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25631
25698
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
25632
25699
|
holeOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25633
25700
|
holeOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25701
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25634
25702
|
}, "strip", z.ZodTypeAny, {
|
|
25635
25703
|
shape: "pill_hole_with_rect_pad";
|
|
25636
25704
|
holeWidth: number;
|
|
@@ -25664,6 +25732,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25664
25732
|
name?: string | undefined;
|
|
25665
25733
|
connectsTo?: string | string[] | undefined;
|
|
25666
25734
|
portHints?: (string | number)[] | undefined;
|
|
25735
|
+
solderMaskMargin?: number | undefined;
|
|
25667
25736
|
holeOffsetX?: number | undefined;
|
|
25668
25737
|
holeOffsetY?: number | undefined;
|
|
25669
25738
|
}, {
|
|
@@ -25699,6 +25768,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25699
25768
|
name?: string | undefined;
|
|
25700
25769
|
connectsTo?: string | string[] | undefined;
|
|
25701
25770
|
portHints?: (string | number)[] | undefined;
|
|
25771
|
+
solderMaskMargin?: string | number | undefined;
|
|
25702
25772
|
holeOffsetX?: string | number | undefined;
|
|
25703
25773
|
holeOffsetY?: string | number | undefined;
|
|
25704
25774
|
}>, z.ZodObject<Omit<{
|
|
@@ -25775,6 +25845,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25775
25845
|
holeOffsetX: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
25776
25846
|
holeOffsetY: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
25777
25847
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
25848
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25778
25849
|
}, "strip", z.ZodTypeAny, {
|
|
25779
25850
|
shape: "hole_with_polygon_pad";
|
|
25780
25851
|
holeOffsetX: number;
|
|
@@ -25810,6 +25881,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25810
25881
|
connectsTo?: string | string[] | undefined;
|
|
25811
25882
|
holeDiameter?: number | undefined;
|
|
25812
25883
|
portHints?: (string | number)[] | undefined;
|
|
25884
|
+
solderMaskMargin?: number | undefined;
|
|
25813
25885
|
holeWidth?: number | undefined;
|
|
25814
25886
|
holeHeight?: number | undefined;
|
|
25815
25887
|
}, {
|
|
@@ -25847,6 +25919,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25847
25919
|
connectsTo?: string | string[] | undefined;
|
|
25848
25920
|
holeDiameter?: string | number | undefined;
|
|
25849
25921
|
portHints?: (string | number)[] | undefined;
|
|
25922
|
+
solderMaskMargin?: string | number | undefined;
|
|
25850
25923
|
holeWidth?: string | number | undefined;
|
|
25851
25924
|
holeHeight?: string | number | undefined;
|
|
25852
25925
|
}>]>, {
|
|
@@ -25878,6 +25951,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25878
25951
|
name?: string | undefined;
|
|
25879
25952
|
connectsTo?: string | string[] | undefined;
|
|
25880
25953
|
portHints?: (string | number)[] | undefined;
|
|
25954
|
+
solderMaskMargin?: number | undefined;
|
|
25881
25955
|
} | {
|
|
25882
25956
|
shape: "oval";
|
|
25883
25957
|
outerWidth: number;
|
|
@@ -25908,6 +25982,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25908
25982
|
name?: string | undefined;
|
|
25909
25983
|
connectsTo?: string | string[] | undefined;
|
|
25910
25984
|
portHints?: (string | number)[] | undefined;
|
|
25985
|
+
solderMaskMargin?: number | undefined;
|
|
25911
25986
|
holeWidth?: number | undefined;
|
|
25912
25987
|
holeHeight?: number | undefined;
|
|
25913
25988
|
innerWidth?: number | undefined;
|
|
@@ -25942,6 +26017,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25942
26017
|
name?: string | undefined;
|
|
25943
26018
|
connectsTo?: string | string[] | undefined;
|
|
25944
26019
|
portHints?: (string | number)[] | undefined;
|
|
26020
|
+
solderMaskMargin?: number | undefined;
|
|
25945
26021
|
holeWidth?: number | undefined;
|
|
25946
26022
|
holeHeight?: number | undefined;
|
|
25947
26023
|
innerWidth?: number | undefined;
|
|
@@ -25979,6 +26055,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
25979
26055
|
name?: string | undefined;
|
|
25980
26056
|
connectsTo?: string | string[] | undefined;
|
|
25981
26057
|
portHints?: (string | number)[] | undefined;
|
|
26058
|
+
solderMaskMargin?: number | undefined;
|
|
25982
26059
|
holeOffsetX?: number | undefined;
|
|
25983
26060
|
holeOffsetY?: number | undefined;
|
|
25984
26061
|
rectBorderRadius?: number | undefined;
|
|
@@ -26017,6 +26094,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
26017
26094
|
name?: string | undefined;
|
|
26018
26095
|
connectsTo?: string | string[] | undefined;
|
|
26019
26096
|
portHints?: (string | number)[] | undefined;
|
|
26097
|
+
solderMaskMargin?: number | undefined;
|
|
26020
26098
|
holeOffsetX?: number | undefined;
|
|
26021
26099
|
holeOffsetY?: number | undefined;
|
|
26022
26100
|
} | {
|
|
@@ -26054,6 +26132,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
26054
26132
|
connectsTo?: string | string[] | undefined;
|
|
26055
26133
|
holeDiameter?: number | undefined;
|
|
26056
26134
|
portHints?: (string | number)[] | undefined;
|
|
26135
|
+
solderMaskMargin?: number | undefined;
|
|
26057
26136
|
holeWidth?: number | undefined;
|
|
26058
26137
|
holeHeight?: number | undefined;
|
|
26059
26138
|
}, {
|
|
@@ -26085,6 +26164,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
26085
26164
|
name?: string | undefined;
|
|
26086
26165
|
connectsTo?: string | string[] | undefined;
|
|
26087
26166
|
portHints?: (string | number)[] | undefined;
|
|
26167
|
+
solderMaskMargin?: string | number | undefined;
|
|
26088
26168
|
} | {
|
|
26089
26169
|
shape: "oval";
|
|
26090
26170
|
outerWidth: string | number;
|
|
@@ -26117,6 +26197,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
26117
26197
|
name?: string | undefined;
|
|
26118
26198
|
connectsTo?: string | string[] | undefined;
|
|
26119
26199
|
portHints?: (string | number)[] | undefined;
|
|
26200
|
+
solderMaskMargin?: string | number | undefined;
|
|
26120
26201
|
innerWidth?: string | number | undefined;
|
|
26121
26202
|
innerHeight?: string | number | undefined;
|
|
26122
26203
|
} | {
|
|
@@ -26151,6 +26232,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
26151
26232
|
name?: string | undefined;
|
|
26152
26233
|
connectsTo?: string | string[] | undefined;
|
|
26153
26234
|
portHints?: (string | number)[] | undefined;
|
|
26235
|
+
solderMaskMargin?: string | number | undefined;
|
|
26154
26236
|
innerWidth?: string | number | undefined;
|
|
26155
26237
|
innerHeight?: string | number | undefined;
|
|
26156
26238
|
rectPad?: boolean | undefined;
|
|
@@ -26186,6 +26268,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
26186
26268
|
name?: string | undefined;
|
|
26187
26269
|
connectsTo?: string | string[] | undefined;
|
|
26188
26270
|
portHints?: (string | number)[] | undefined;
|
|
26271
|
+
solderMaskMargin?: string | number | undefined;
|
|
26189
26272
|
holeOffsetX?: string | number | undefined;
|
|
26190
26273
|
holeOffsetY?: string | number | undefined;
|
|
26191
26274
|
rectBorderRadius?: string | number | undefined;
|
|
@@ -26224,6 +26307,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
26224
26307
|
name?: string | undefined;
|
|
26225
26308
|
connectsTo?: string | string[] | undefined;
|
|
26226
26309
|
portHints?: (string | number)[] | undefined;
|
|
26310
|
+
solderMaskMargin?: string | number | undefined;
|
|
26227
26311
|
holeOffsetX?: string | number | undefined;
|
|
26228
26312
|
holeOffsetY?: string | number | undefined;
|
|
26229
26313
|
} | {
|
|
@@ -26261,6 +26345,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
26261
26345
|
connectsTo?: string | string[] | undefined;
|
|
26262
26346
|
holeDiameter?: string | number | undefined;
|
|
26263
26347
|
portHints?: (string | number)[] | undefined;
|
|
26348
|
+
solderMaskMargin?: string | number | undefined;
|
|
26264
26349
|
holeWidth?: string | number | undefined;
|
|
26265
26350
|
holeHeight?: string | number | undefined;
|
|
26266
26351
|
}>;
|
|
@@ -26938,6 +27023,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
26938
27023
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
26939
27024
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
26940
27025
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
27026
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
26941
27027
|
}, "strip", z.ZodTypeAny, {
|
|
26942
27028
|
providesPower?: boolean | undefined;
|
|
26943
27029
|
requiresPower?: boolean | undefined;
|
|
@@ -26948,6 +27034,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
26948
27034
|
doNotConnect?: boolean | undefined;
|
|
26949
27035
|
includeInBoardPinout?: boolean | undefined;
|
|
26950
27036
|
highlightColor?: string | undefined;
|
|
27037
|
+
mustBeConnected?: boolean | undefined;
|
|
26951
27038
|
}, {
|
|
26952
27039
|
providesPower?: boolean | undefined;
|
|
26953
27040
|
requiresPower?: boolean | undefined;
|
|
@@ -26958,6 +27045,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
26958
27045
|
doNotConnect?: boolean | undefined;
|
|
26959
27046
|
includeInBoardPinout?: boolean | undefined;
|
|
26960
27047
|
highlightColor?: string | undefined;
|
|
27048
|
+
mustBeConnected?: boolean | undefined;
|
|
26961
27049
|
}>>>;
|
|
26962
27050
|
} & {
|
|
26963
27051
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -27018,6 +27106,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
27018
27106
|
doNotConnect?: boolean | undefined;
|
|
27019
27107
|
includeInBoardPinout?: boolean | undefined;
|
|
27020
27108
|
highlightColor?: string | undefined;
|
|
27109
|
+
mustBeConnected?: boolean | undefined;
|
|
27021
27110
|
}> | undefined;
|
|
27022
27111
|
cadModel?: string | {
|
|
27023
27112
|
stlUrl: string;
|
|
@@ -27217,6 +27306,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
27217
27306
|
doNotConnect?: boolean | undefined;
|
|
27218
27307
|
includeInBoardPinout?: boolean | undefined;
|
|
27219
27308
|
highlightColor?: string | undefined;
|
|
27309
|
+
mustBeConnected?: boolean | undefined;
|
|
27220
27310
|
}> | undefined;
|
|
27221
27311
|
cadModel?: string | {
|
|
27222
27312
|
stlUrl: string;
|
|
@@ -28033,6 +28123,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
28033
28123
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
28034
28124
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
28035
28125
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
28126
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
28036
28127
|
}, "strip", z.ZodTypeAny, {
|
|
28037
28128
|
providesPower?: boolean | undefined;
|
|
28038
28129
|
requiresPower?: boolean | undefined;
|
|
@@ -28043,6 +28134,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
28043
28134
|
doNotConnect?: boolean | undefined;
|
|
28044
28135
|
includeInBoardPinout?: boolean | undefined;
|
|
28045
28136
|
highlightColor?: string | undefined;
|
|
28137
|
+
mustBeConnected?: boolean | undefined;
|
|
28046
28138
|
}, {
|
|
28047
28139
|
providesPower?: boolean | undefined;
|
|
28048
28140
|
requiresPower?: boolean | undefined;
|
|
@@ -28053,6 +28145,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
28053
28145
|
doNotConnect?: boolean | undefined;
|
|
28054
28146
|
includeInBoardPinout?: boolean | undefined;
|
|
28055
28147
|
highlightColor?: string | undefined;
|
|
28148
|
+
mustBeConnected?: boolean | undefined;
|
|
28056
28149
|
}>>>;
|
|
28057
28150
|
} & {
|
|
28058
28151
|
maxResistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -28108,6 +28201,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
28108
28201
|
doNotConnect?: boolean | undefined;
|
|
28109
28202
|
includeInBoardPinout?: boolean | undefined;
|
|
28110
28203
|
highlightColor?: string | undefined;
|
|
28204
|
+
mustBeConnected?: boolean | undefined;
|
|
28111
28205
|
}> | undefined;
|
|
28112
28206
|
cadModel?: string | {
|
|
28113
28207
|
stlUrl: string;
|
|
@@ -28302,6 +28396,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
28302
28396
|
doNotConnect?: boolean | undefined;
|
|
28303
28397
|
includeInBoardPinout?: boolean | undefined;
|
|
28304
28398
|
highlightColor?: string | undefined;
|
|
28399
|
+
mustBeConnected?: boolean | undefined;
|
|
28305
28400
|
}> | undefined;
|
|
28306
28401
|
cadModel?: string | {
|
|
28307
28402
|
stlUrl: string;
|
|
@@ -29119,6 +29214,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
29119
29214
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
29120
29215
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
29121
29216
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
29217
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
29122
29218
|
}, "strip", z.ZodTypeAny, {
|
|
29123
29219
|
providesPower?: boolean | undefined;
|
|
29124
29220
|
requiresPower?: boolean | undefined;
|
|
@@ -29129,6 +29225,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
29129
29225
|
doNotConnect?: boolean | undefined;
|
|
29130
29226
|
includeInBoardPinout?: boolean | undefined;
|
|
29131
29227
|
highlightColor?: string | undefined;
|
|
29228
|
+
mustBeConnected?: boolean | undefined;
|
|
29132
29229
|
}, {
|
|
29133
29230
|
providesPower?: boolean | undefined;
|
|
29134
29231
|
requiresPower?: boolean | undefined;
|
|
@@ -29139,6 +29236,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
29139
29236
|
doNotConnect?: boolean | undefined;
|
|
29140
29237
|
includeInBoardPinout?: boolean | undefined;
|
|
29141
29238
|
highlightColor?: string | undefined;
|
|
29239
|
+
mustBeConnected?: boolean | undefined;
|
|
29142
29240
|
}>>>;
|
|
29143
29241
|
} & {
|
|
29144
29242
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -29200,6 +29298,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
29200
29298
|
doNotConnect?: boolean | undefined;
|
|
29201
29299
|
includeInBoardPinout?: boolean | undefined;
|
|
29202
29300
|
highlightColor?: string | undefined;
|
|
29301
|
+
mustBeConnected?: boolean | undefined;
|
|
29203
29302
|
}> | undefined;
|
|
29204
29303
|
cadModel?: string | {
|
|
29205
29304
|
stlUrl: string;
|
|
@@ -29399,6 +29498,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
29399
29498
|
doNotConnect?: boolean | undefined;
|
|
29400
29499
|
includeInBoardPinout?: boolean | undefined;
|
|
29401
29500
|
highlightColor?: string | undefined;
|
|
29501
|
+
mustBeConnected?: boolean | undefined;
|
|
29402
29502
|
}> | undefined;
|
|
29403
29503
|
cadModel?: string | {
|
|
29404
29504
|
stlUrl: string;
|
|
@@ -30214,6 +30314,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
30214
30314
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
30215
30315
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
30216
30316
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
30317
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
30217
30318
|
}, "strip", z.ZodTypeAny, {
|
|
30218
30319
|
providesPower?: boolean | undefined;
|
|
30219
30320
|
requiresPower?: boolean | undefined;
|
|
@@ -30224,6 +30325,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
30224
30325
|
doNotConnect?: boolean | undefined;
|
|
30225
30326
|
includeInBoardPinout?: boolean | undefined;
|
|
30226
30327
|
highlightColor?: string | undefined;
|
|
30328
|
+
mustBeConnected?: boolean | undefined;
|
|
30227
30329
|
}, {
|
|
30228
30330
|
providesPower?: boolean | undefined;
|
|
30229
30331
|
requiresPower?: boolean | undefined;
|
|
@@ -30234,6 +30336,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
30234
30336
|
doNotConnect?: boolean | undefined;
|
|
30235
30337
|
includeInBoardPinout?: boolean | undefined;
|
|
30236
30338
|
highlightColor?: string | undefined;
|
|
30339
|
+
mustBeConnected?: boolean | undefined;
|
|
30237
30340
|
}>>>;
|
|
30238
30341
|
} & {
|
|
30239
30342
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -30291,6 +30394,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
30291
30394
|
doNotConnect?: boolean | undefined;
|
|
30292
30395
|
includeInBoardPinout?: boolean | undefined;
|
|
30293
30396
|
highlightColor?: string | undefined;
|
|
30397
|
+
mustBeConnected?: boolean | undefined;
|
|
30294
30398
|
}> | undefined;
|
|
30295
30399
|
cadModel?: string | {
|
|
30296
30400
|
stlUrl: string;
|
|
@@ -30486,6 +30590,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
30486
30590
|
doNotConnect?: boolean | undefined;
|
|
30487
30591
|
includeInBoardPinout?: boolean | undefined;
|
|
30488
30592
|
highlightColor?: string | undefined;
|
|
30593
|
+
mustBeConnected?: boolean | undefined;
|
|
30489
30594
|
}> | undefined;
|
|
30490
30595
|
cadModel?: string | {
|
|
30491
30596
|
stlUrl: string;
|
|
@@ -32694,6 +32799,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
32694
32799
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
32695
32800
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
32696
32801
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
32802
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
32697
32803
|
}, "strip", z.ZodTypeAny, {
|
|
32698
32804
|
providesPower?: boolean | undefined;
|
|
32699
32805
|
requiresPower?: boolean | undefined;
|
|
@@ -32704,6 +32810,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
32704
32810
|
doNotConnect?: boolean | undefined;
|
|
32705
32811
|
includeInBoardPinout?: boolean | undefined;
|
|
32706
32812
|
highlightColor?: string | undefined;
|
|
32813
|
+
mustBeConnected?: boolean | undefined;
|
|
32707
32814
|
}, {
|
|
32708
32815
|
providesPower?: boolean | undefined;
|
|
32709
32816
|
requiresPower?: boolean | undefined;
|
|
@@ -32714,6 +32821,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
32714
32821
|
doNotConnect?: boolean | undefined;
|
|
32715
32822
|
includeInBoardPinout?: boolean | undefined;
|
|
32716
32823
|
highlightColor?: string | undefined;
|
|
32824
|
+
mustBeConnected?: boolean | undefined;
|
|
32717
32825
|
}>>>;
|
|
32718
32826
|
} & {
|
|
32719
32827
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -32780,6 +32888,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
32780
32888
|
doNotConnect?: boolean | undefined;
|
|
32781
32889
|
includeInBoardPinout?: boolean | undefined;
|
|
32782
32890
|
highlightColor?: string | undefined;
|
|
32891
|
+
mustBeConnected?: boolean | undefined;
|
|
32783
32892
|
}> | undefined;
|
|
32784
32893
|
cadModel?: string | {
|
|
32785
32894
|
stlUrl: string;
|
|
@@ -32981,6 +33090,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
32981
33090
|
doNotConnect?: boolean | undefined;
|
|
32982
33091
|
includeInBoardPinout?: boolean | undefined;
|
|
32983
33092
|
highlightColor?: string | undefined;
|
|
33093
|
+
mustBeConnected?: boolean | undefined;
|
|
32984
33094
|
}> | undefined;
|
|
32985
33095
|
cadModel?: string | {
|
|
32986
33096
|
stlUrl: string;
|
|
@@ -34100,6 +34210,7 @@ interface RectSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
|
34100
34210
|
cornerRadius?: Distance;
|
|
34101
34211
|
portHints?: PortHints;
|
|
34102
34212
|
coveredWithSolderMask?: boolean;
|
|
34213
|
+
solderMaskMargin?: Distance;
|
|
34103
34214
|
}
|
|
34104
34215
|
interface RotatedRectSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
34105
34216
|
name?: string;
|
|
@@ -34110,6 +34221,7 @@ interface RotatedRectSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
|
34110
34221
|
ccwRotation: number;
|
|
34111
34222
|
portHints?: PortHints;
|
|
34112
34223
|
coveredWithSolderMask?: boolean;
|
|
34224
|
+
solderMaskMargin?: Distance;
|
|
34113
34225
|
}
|
|
34114
34226
|
interface CircleSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
34115
34227
|
name?: string;
|
|
@@ -34117,6 +34229,7 @@ interface CircleSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
|
34117
34229
|
radius: Distance;
|
|
34118
34230
|
portHints?: PortHints;
|
|
34119
34231
|
coveredWithSolderMask?: boolean;
|
|
34232
|
+
solderMaskMargin?: Distance;
|
|
34120
34233
|
}
|
|
34121
34234
|
interface PillSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
34122
34235
|
name?: string;
|
|
@@ -34126,6 +34239,7 @@ interface PillSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
|
34126
34239
|
radius: Distance;
|
|
34127
34240
|
portHints?: PortHints;
|
|
34128
34241
|
coveredWithSolderMask?: boolean;
|
|
34242
|
+
solderMaskMargin?: Distance;
|
|
34129
34243
|
}
|
|
34130
34244
|
interface PolygonSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
34131
34245
|
name?: string;
|
|
@@ -34133,6 +34247,7 @@ interface PolygonSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
|
34133
34247
|
points: Point[];
|
|
34134
34248
|
portHints?: PortHints;
|
|
34135
34249
|
coveredWithSolderMask?: boolean;
|
|
34250
|
+
solderMaskMargin?: Distance;
|
|
34136
34251
|
}
|
|
34137
34252
|
type SmtPadProps = RectSmtPadProps | CircleSmtPadProps | RotatedRectSmtPadProps | PillSmtPadProps | PolygonSmtPadProps;
|
|
34138
34253
|
declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
@@ -34197,6 +34312,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
34197
34312
|
cornerRadius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
34198
34313
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
34199
34314
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
34315
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
34200
34316
|
}, "strip", z.ZodTypeAny, {
|
|
34201
34317
|
shape: "rect";
|
|
34202
34318
|
width: number;
|
|
@@ -34226,6 +34342,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
34226
34342
|
relative?: boolean | undefined;
|
|
34227
34343
|
name?: string | undefined;
|
|
34228
34344
|
portHints?: (string | number)[] | undefined;
|
|
34345
|
+
solderMaskMargin?: number | undefined;
|
|
34229
34346
|
rectBorderRadius?: number | undefined;
|
|
34230
34347
|
cornerRadius?: number | undefined;
|
|
34231
34348
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -34260,6 +34377,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
34260
34377
|
relative?: boolean | undefined;
|
|
34261
34378
|
name?: string | undefined;
|
|
34262
34379
|
portHints?: (string | number)[] | undefined;
|
|
34380
|
+
solderMaskMargin?: string | number | undefined;
|
|
34263
34381
|
rectBorderRadius?: string | number | undefined;
|
|
34264
34382
|
cornerRadius?: string | number | undefined;
|
|
34265
34383
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -34326,6 +34444,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
34326
34444
|
cornerRadius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
34327
34445
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
34328
34446
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
34447
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
34329
34448
|
}, "strip", z.ZodTypeAny, {
|
|
34330
34449
|
shape: "rotated_rect";
|
|
34331
34450
|
width: number;
|
|
@@ -34356,6 +34475,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
34356
34475
|
relative?: boolean | undefined;
|
|
34357
34476
|
name?: string | undefined;
|
|
34358
34477
|
portHints?: (string | number)[] | undefined;
|
|
34478
|
+
solderMaskMargin?: number | undefined;
|
|
34359
34479
|
cornerRadius?: number | undefined;
|
|
34360
34480
|
coveredWithSolderMask?: boolean | undefined;
|
|
34361
34481
|
}, {
|
|
@@ -34390,6 +34510,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
34390
34510
|
relative?: boolean | undefined;
|
|
34391
34511
|
name?: string | undefined;
|
|
34392
34512
|
portHints?: (string | number)[] | undefined;
|
|
34513
|
+
solderMaskMargin?: string | number | undefined;
|
|
34393
34514
|
cornerRadius?: string | number | undefined;
|
|
34394
34515
|
coveredWithSolderMask?: boolean | undefined;
|
|
34395
34516
|
}>;
|
|
@@ -34452,6 +34573,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
34452
34573
|
radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
34453
34574
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
34454
34575
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
34576
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
34455
34577
|
}, "strip", z.ZodTypeAny, {
|
|
34456
34578
|
shape: "circle";
|
|
34457
34579
|
radius: number;
|
|
@@ -34480,6 +34602,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
34480
34602
|
relative?: boolean | undefined;
|
|
34481
34603
|
name?: string | undefined;
|
|
34482
34604
|
portHints?: (string | number)[] | undefined;
|
|
34605
|
+
solderMaskMargin?: number | undefined;
|
|
34483
34606
|
coveredWithSolderMask?: boolean | undefined;
|
|
34484
34607
|
}, {
|
|
34485
34608
|
shape: "circle";
|
|
@@ -34511,6 +34634,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
34511
34634
|
relative?: boolean | undefined;
|
|
34512
34635
|
name?: string | undefined;
|
|
34513
34636
|
portHints?: (string | number)[] | undefined;
|
|
34637
|
+
solderMaskMargin?: string | number | undefined;
|
|
34514
34638
|
coveredWithSolderMask?: boolean | undefined;
|
|
34515
34639
|
}>;
|
|
34516
34640
|
declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
@@ -34574,6 +34698,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
34574
34698
|
radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
34575
34699
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
34576
34700
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
34701
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
34577
34702
|
}, "strip", z.ZodTypeAny, {
|
|
34578
34703
|
shape: "pill";
|
|
34579
34704
|
width: number;
|
|
@@ -34604,6 +34729,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
34604
34729
|
relative?: boolean | undefined;
|
|
34605
34730
|
name?: string | undefined;
|
|
34606
34731
|
portHints?: (string | number)[] | undefined;
|
|
34732
|
+
solderMaskMargin?: number | undefined;
|
|
34607
34733
|
coveredWithSolderMask?: boolean | undefined;
|
|
34608
34734
|
}, {
|
|
34609
34735
|
shape: "pill";
|
|
@@ -34637,6 +34763,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
34637
34763
|
relative?: boolean | undefined;
|
|
34638
34764
|
name?: string | undefined;
|
|
34639
34765
|
portHints?: (string | number)[] | undefined;
|
|
34766
|
+
solderMaskMargin?: string | number | undefined;
|
|
34640
34767
|
coveredWithSolderMask?: boolean | undefined;
|
|
34641
34768
|
}>;
|
|
34642
34769
|
declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
@@ -34707,6 +34834,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
34707
34834
|
}>, "many">;
|
|
34708
34835
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
34709
34836
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
34837
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
34710
34838
|
}, "strip", z.ZodTypeAny, {
|
|
34711
34839
|
shape: "polygon";
|
|
34712
34840
|
points: {
|
|
@@ -34738,6 +34866,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
34738
34866
|
relative?: boolean | undefined;
|
|
34739
34867
|
name?: string | undefined;
|
|
34740
34868
|
portHints?: (string | number)[] | undefined;
|
|
34869
|
+
solderMaskMargin?: number | undefined;
|
|
34741
34870
|
coveredWithSolderMask?: boolean | undefined;
|
|
34742
34871
|
}, {
|
|
34743
34872
|
shape: "polygon";
|
|
@@ -34772,6 +34901,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
34772
34901
|
relative?: boolean | undefined;
|
|
34773
34902
|
name?: string | undefined;
|
|
34774
34903
|
portHints?: (string | number)[] | undefined;
|
|
34904
|
+
solderMaskMargin?: string | number | undefined;
|
|
34775
34905
|
coveredWithSolderMask?: boolean | undefined;
|
|
34776
34906
|
}>;
|
|
34777
34907
|
declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
@@ -34833,6 +34963,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
34833
34963
|
radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
34834
34964
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
34835
34965
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
34966
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
34836
34967
|
}, "strip", z.ZodTypeAny, {
|
|
34837
34968
|
shape: "circle";
|
|
34838
34969
|
radius: number;
|
|
@@ -34861,6 +34992,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
34861
34992
|
relative?: boolean | undefined;
|
|
34862
34993
|
name?: string | undefined;
|
|
34863
34994
|
portHints?: (string | number)[] | undefined;
|
|
34995
|
+
solderMaskMargin?: number | undefined;
|
|
34864
34996
|
coveredWithSolderMask?: boolean | undefined;
|
|
34865
34997
|
}, {
|
|
34866
34998
|
shape: "circle";
|
|
@@ -34892,6 +35024,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
34892
35024
|
relative?: boolean | undefined;
|
|
34893
35025
|
name?: string | undefined;
|
|
34894
35026
|
portHints?: (string | number)[] | undefined;
|
|
35027
|
+
solderMaskMargin?: string | number | undefined;
|
|
34895
35028
|
coveredWithSolderMask?: boolean | undefined;
|
|
34896
35029
|
}>, z.ZodObject<Omit<{
|
|
34897
35030
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -34955,6 +35088,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
34955
35088
|
cornerRadius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
34956
35089
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
34957
35090
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
35091
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
34958
35092
|
}, "strip", z.ZodTypeAny, {
|
|
34959
35093
|
shape: "rect";
|
|
34960
35094
|
width: number;
|
|
@@ -34984,6 +35118,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
34984
35118
|
relative?: boolean | undefined;
|
|
34985
35119
|
name?: string | undefined;
|
|
34986
35120
|
portHints?: (string | number)[] | undefined;
|
|
35121
|
+
solderMaskMargin?: number | undefined;
|
|
34987
35122
|
rectBorderRadius?: number | undefined;
|
|
34988
35123
|
cornerRadius?: number | undefined;
|
|
34989
35124
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -35018,6 +35153,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
35018
35153
|
relative?: boolean | undefined;
|
|
35019
35154
|
name?: string | undefined;
|
|
35020
35155
|
portHints?: (string | number)[] | undefined;
|
|
35156
|
+
solderMaskMargin?: string | number | undefined;
|
|
35021
35157
|
rectBorderRadius?: string | number | undefined;
|
|
35022
35158
|
cornerRadius?: string | number | undefined;
|
|
35023
35159
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -35083,6 +35219,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
35083
35219
|
cornerRadius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
35084
35220
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
35085
35221
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
35222
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
35086
35223
|
}, "strip", z.ZodTypeAny, {
|
|
35087
35224
|
shape: "rotated_rect";
|
|
35088
35225
|
width: number;
|
|
@@ -35113,6 +35250,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
35113
35250
|
relative?: boolean | undefined;
|
|
35114
35251
|
name?: string | undefined;
|
|
35115
35252
|
portHints?: (string | number)[] | undefined;
|
|
35253
|
+
solderMaskMargin?: number | undefined;
|
|
35116
35254
|
cornerRadius?: number | undefined;
|
|
35117
35255
|
coveredWithSolderMask?: boolean | undefined;
|
|
35118
35256
|
}, {
|
|
@@ -35147,6 +35285,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
35147
35285
|
relative?: boolean | undefined;
|
|
35148
35286
|
name?: string | undefined;
|
|
35149
35287
|
portHints?: (string | number)[] | undefined;
|
|
35288
|
+
solderMaskMargin?: string | number | undefined;
|
|
35150
35289
|
cornerRadius?: string | number | undefined;
|
|
35151
35290
|
coveredWithSolderMask?: boolean | undefined;
|
|
35152
35291
|
}>, z.ZodObject<Omit<{
|
|
@@ -35210,6 +35349,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
35210
35349
|
radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
35211
35350
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
35212
35351
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
35352
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
35213
35353
|
}, "strip", z.ZodTypeAny, {
|
|
35214
35354
|
shape: "pill";
|
|
35215
35355
|
width: number;
|
|
@@ -35240,6 +35380,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
35240
35380
|
relative?: boolean | undefined;
|
|
35241
35381
|
name?: string | undefined;
|
|
35242
35382
|
portHints?: (string | number)[] | undefined;
|
|
35383
|
+
solderMaskMargin?: number | undefined;
|
|
35243
35384
|
coveredWithSolderMask?: boolean | undefined;
|
|
35244
35385
|
}, {
|
|
35245
35386
|
shape: "pill";
|
|
@@ -35273,6 +35414,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
35273
35414
|
relative?: boolean | undefined;
|
|
35274
35415
|
name?: string | undefined;
|
|
35275
35416
|
portHints?: (string | number)[] | undefined;
|
|
35417
|
+
solderMaskMargin?: string | number | undefined;
|
|
35276
35418
|
coveredWithSolderMask?: boolean | undefined;
|
|
35277
35419
|
}>, z.ZodObject<Omit<{
|
|
35278
35420
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -35342,6 +35484,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
35342
35484
|
}>, "many">;
|
|
35343
35485
|
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
35344
35486
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
35487
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
35345
35488
|
}, "strip", z.ZodTypeAny, {
|
|
35346
35489
|
shape: "polygon";
|
|
35347
35490
|
points: {
|
|
@@ -35373,6 +35516,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
35373
35516
|
relative?: boolean | undefined;
|
|
35374
35517
|
name?: string | undefined;
|
|
35375
35518
|
portHints?: (string | number)[] | undefined;
|
|
35519
|
+
solderMaskMargin?: number | undefined;
|
|
35376
35520
|
coveredWithSolderMask?: boolean | undefined;
|
|
35377
35521
|
}, {
|
|
35378
35522
|
shape: "polygon";
|
|
@@ -35407,6 +35551,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
35407
35551
|
relative?: boolean | undefined;
|
|
35408
35552
|
name?: string | undefined;
|
|
35409
35553
|
portHints?: (string | number)[] | undefined;
|
|
35554
|
+
solderMaskMargin?: string | number | undefined;
|
|
35410
35555
|
coveredWithSolderMask?: boolean | undefined;
|
|
35411
35556
|
}>]>;
|
|
35412
35557
|
type InferredSmtPadProps = z.input<typeof smtPadProps>;
|
|
@@ -35877,18 +36022,21 @@ interface CircleHoleProps extends PcbLayoutProps {
|
|
|
35877
36022
|
shape?: "circle";
|
|
35878
36023
|
diameter?: Distance;
|
|
35879
36024
|
radius?: Distance;
|
|
36025
|
+
solderMaskMargin?: Distance;
|
|
35880
36026
|
}
|
|
35881
36027
|
interface PillHoleProps extends PcbLayoutProps {
|
|
35882
36028
|
name?: string;
|
|
35883
36029
|
shape: "pill";
|
|
35884
36030
|
width: Distance;
|
|
35885
36031
|
height: Distance;
|
|
36032
|
+
solderMaskMargin?: Distance;
|
|
35886
36033
|
}
|
|
35887
36034
|
interface RectHoleProps extends PcbLayoutProps {
|
|
35888
36035
|
name?: string;
|
|
35889
36036
|
shape: "rect";
|
|
35890
36037
|
width: Distance;
|
|
35891
36038
|
height: Distance;
|
|
36039
|
+
solderMaskMargin?: Distance;
|
|
35892
36040
|
}
|
|
35893
36041
|
type HoleProps = CircleHoleProps | PillHoleProps | RectHoleProps;
|
|
35894
36042
|
declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
@@ -35949,6 +36097,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
35949
36097
|
shape: z.ZodOptional<z.ZodLiteral<"circle">>;
|
|
35950
36098
|
diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
35951
36099
|
radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
36100
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
35952
36101
|
}, "strip", z.ZodTypeAny, {
|
|
35953
36102
|
pcbX?: number | undefined;
|
|
35954
36103
|
pcbY?: number | undefined;
|
|
@@ -35976,6 +36125,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
35976
36125
|
relative?: boolean | undefined;
|
|
35977
36126
|
name?: string | undefined;
|
|
35978
36127
|
shape?: "circle" | undefined;
|
|
36128
|
+
solderMaskMargin?: number | undefined;
|
|
35979
36129
|
radius?: number | undefined;
|
|
35980
36130
|
diameter?: number | undefined;
|
|
35981
36131
|
}, {
|
|
@@ -36007,6 +36157,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
36007
36157
|
relative?: boolean | undefined;
|
|
36008
36158
|
name?: string | undefined;
|
|
36009
36159
|
shape?: "circle" | undefined;
|
|
36160
|
+
solderMaskMargin?: string | number | undefined;
|
|
36010
36161
|
radius?: string | number | undefined;
|
|
36011
36162
|
diameter?: string | number | undefined;
|
|
36012
36163
|
}>, {
|
|
@@ -36038,6 +36189,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
36038
36189
|
relative?: boolean | undefined;
|
|
36039
36190
|
name?: string | undefined;
|
|
36040
36191
|
shape?: "circle" | undefined;
|
|
36192
|
+
solderMaskMargin?: number | undefined;
|
|
36041
36193
|
}, {
|
|
36042
36194
|
pcbX?: string | number | undefined;
|
|
36043
36195
|
pcbY?: string | number | undefined;
|
|
@@ -36067,6 +36219,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
36067
36219
|
relative?: boolean | undefined;
|
|
36068
36220
|
name?: string | undefined;
|
|
36069
36221
|
shape?: "circle" | undefined;
|
|
36222
|
+
solderMaskMargin?: string | number | undefined;
|
|
36070
36223
|
radius?: string | number | undefined;
|
|
36071
36224
|
diameter?: string | number | undefined;
|
|
36072
36225
|
}>, z.ZodObject<{
|
|
@@ -36127,6 +36280,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
36127
36280
|
shape: z.ZodLiteral<"pill">;
|
|
36128
36281
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
36129
36282
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
36283
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
36130
36284
|
}, "strip", z.ZodTypeAny, {
|
|
36131
36285
|
shape: "pill";
|
|
36132
36286
|
width: number;
|
|
@@ -36156,6 +36310,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
36156
36310
|
pcbRelative?: boolean | undefined;
|
|
36157
36311
|
relative?: boolean | undefined;
|
|
36158
36312
|
name?: string | undefined;
|
|
36313
|
+
solderMaskMargin?: number | undefined;
|
|
36159
36314
|
}, {
|
|
36160
36315
|
shape: "pill";
|
|
36161
36316
|
width: string | number;
|
|
@@ -36187,6 +36342,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
36187
36342
|
pcbRelative?: boolean | undefined;
|
|
36188
36343
|
relative?: boolean | undefined;
|
|
36189
36344
|
name?: string | undefined;
|
|
36345
|
+
solderMaskMargin?: string | number | undefined;
|
|
36190
36346
|
}>, z.ZodObject<{
|
|
36191
36347
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
36192
36348
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -36245,6 +36401,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
36245
36401
|
shape: z.ZodLiteral<"rect">;
|
|
36246
36402
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
36247
36403
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
36404
|
+
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
36248
36405
|
}, "strip", z.ZodTypeAny, {
|
|
36249
36406
|
shape: "rect";
|
|
36250
36407
|
width: number;
|
|
@@ -36274,6 +36431,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
36274
36431
|
pcbRelative?: boolean | undefined;
|
|
36275
36432
|
relative?: boolean | undefined;
|
|
36276
36433
|
name?: string | undefined;
|
|
36434
|
+
solderMaskMargin?: number | undefined;
|
|
36277
36435
|
}, {
|
|
36278
36436
|
shape: "rect";
|
|
36279
36437
|
width: string | number;
|
|
@@ -36305,6 +36463,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
36305
36463
|
pcbRelative?: boolean | undefined;
|
|
36306
36464
|
relative?: boolean | undefined;
|
|
36307
36465
|
name?: string | undefined;
|
|
36466
|
+
solderMaskMargin?: string | number | undefined;
|
|
36308
36467
|
}>]>;
|
|
36309
36468
|
type InferredHoleProps = z.input<typeof holeProps>;
|
|
36310
36469
|
|
|
@@ -37296,6 +37455,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
37296
37455
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
37297
37456
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
37298
37457
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
37458
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
37299
37459
|
}, "strip", z.ZodTypeAny, {
|
|
37300
37460
|
providesPower?: boolean | undefined;
|
|
37301
37461
|
requiresPower?: boolean | undefined;
|
|
@@ -37306,6 +37466,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
37306
37466
|
doNotConnect?: boolean | undefined;
|
|
37307
37467
|
includeInBoardPinout?: boolean | undefined;
|
|
37308
37468
|
highlightColor?: string | undefined;
|
|
37469
|
+
mustBeConnected?: boolean | undefined;
|
|
37309
37470
|
}, {
|
|
37310
37471
|
providesPower?: boolean | undefined;
|
|
37311
37472
|
requiresPower?: boolean | undefined;
|
|
@@ -37316,6 +37477,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
37316
37477
|
doNotConnect?: boolean | undefined;
|
|
37317
37478
|
includeInBoardPinout?: boolean | undefined;
|
|
37318
37479
|
highlightColor?: string | undefined;
|
|
37480
|
+
mustBeConnected?: boolean | undefined;
|
|
37319
37481
|
}>>>;
|
|
37320
37482
|
} & {
|
|
37321
37483
|
capacity: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>>;
|
|
@@ -37372,6 +37534,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
37372
37534
|
doNotConnect?: boolean | undefined;
|
|
37373
37535
|
includeInBoardPinout?: boolean | undefined;
|
|
37374
37536
|
highlightColor?: string | undefined;
|
|
37537
|
+
mustBeConnected?: boolean | undefined;
|
|
37375
37538
|
}> | undefined;
|
|
37376
37539
|
cadModel?: string | {
|
|
37377
37540
|
stlUrl: string;
|
|
@@ -37568,6 +37731,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
37568
37731
|
doNotConnect?: boolean | undefined;
|
|
37569
37732
|
includeInBoardPinout?: boolean | undefined;
|
|
37570
37733
|
highlightColor?: string | undefined;
|
|
37734
|
+
mustBeConnected?: boolean | undefined;
|
|
37571
37735
|
}> | undefined;
|
|
37572
37736
|
cadModel?: string | {
|
|
37573
37737
|
stlUrl: string;
|
|
@@ -38458,6 +38622,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
38458
38622
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
38459
38623
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
38460
38624
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
38625
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
38461
38626
|
}, "strip", z.ZodTypeAny, {
|
|
38462
38627
|
providesPower?: boolean | undefined;
|
|
38463
38628
|
requiresPower?: boolean | undefined;
|
|
@@ -38468,6 +38633,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
38468
38633
|
doNotConnect?: boolean | undefined;
|
|
38469
38634
|
includeInBoardPinout?: boolean | undefined;
|
|
38470
38635
|
highlightColor?: string | undefined;
|
|
38636
|
+
mustBeConnected?: boolean | undefined;
|
|
38471
38637
|
}, {
|
|
38472
38638
|
providesPower?: boolean | undefined;
|
|
38473
38639
|
requiresPower?: boolean | undefined;
|
|
@@ -38478,6 +38644,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
38478
38644
|
doNotConnect?: boolean | undefined;
|
|
38479
38645
|
includeInBoardPinout?: boolean | undefined;
|
|
38480
38646
|
highlightColor?: string | undefined;
|
|
38647
|
+
mustBeConnected?: boolean | undefined;
|
|
38481
38648
|
}>>>;
|
|
38482
38649
|
} & {
|
|
38483
38650
|
pinCount: z.ZodNumber;
|
|
@@ -38677,6 +38844,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
38677
38844
|
doNotConnect?: boolean | undefined;
|
|
38678
38845
|
includeInBoardPinout?: boolean | undefined;
|
|
38679
38846
|
highlightColor?: string | undefined;
|
|
38847
|
+
mustBeConnected?: boolean | undefined;
|
|
38680
38848
|
}> | undefined;
|
|
38681
38849
|
cadModel?: string | {
|
|
38682
38850
|
stlUrl: string;
|
|
@@ -38921,6 +39089,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
38921
39089
|
doNotConnect?: boolean | undefined;
|
|
38922
39090
|
includeInBoardPinout?: boolean | undefined;
|
|
38923
39091
|
highlightColor?: string | undefined;
|
|
39092
|
+
mustBeConnected?: boolean | undefined;
|
|
38924
39093
|
}> | undefined;
|
|
38925
39094
|
cadModel?: string | {
|
|
38926
39095
|
stlUrl: string;
|
|
@@ -39848,6 +40017,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
39848
40017
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
39849
40018
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
39850
40019
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
40020
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
39851
40021
|
}, "strip", z.ZodTypeAny, {
|
|
39852
40022
|
providesPower?: boolean | undefined;
|
|
39853
40023
|
requiresPower?: boolean | undefined;
|
|
@@ -39858,6 +40028,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
39858
40028
|
doNotConnect?: boolean | undefined;
|
|
39859
40029
|
includeInBoardPinout?: boolean | undefined;
|
|
39860
40030
|
highlightColor?: string | undefined;
|
|
40031
|
+
mustBeConnected?: boolean | undefined;
|
|
39861
40032
|
}, {
|
|
39862
40033
|
providesPower?: boolean | undefined;
|
|
39863
40034
|
requiresPower?: boolean | undefined;
|
|
@@ -39868,6 +40039,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
39868
40039
|
doNotConnect?: boolean | undefined;
|
|
39869
40040
|
includeInBoardPinout?: boolean | undefined;
|
|
39870
40041
|
highlightColor?: string | undefined;
|
|
40042
|
+
mustBeConnected?: boolean | undefined;
|
|
39871
40043
|
}>>>;
|
|
39872
40044
|
} & {
|
|
39873
40045
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -40169,6 +40341,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
40169
40341
|
doNotConnect?: boolean | undefined;
|
|
40170
40342
|
includeInBoardPinout?: boolean | undefined;
|
|
40171
40343
|
highlightColor?: string | undefined;
|
|
40344
|
+
mustBeConnected?: boolean | undefined;
|
|
40172
40345
|
}> | undefined;
|
|
40173
40346
|
cadModel?: string | {
|
|
40174
40347
|
stlUrl: string;
|
|
@@ -40438,6 +40611,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
40438
40611
|
doNotConnect?: boolean | undefined;
|
|
40439
40612
|
includeInBoardPinout?: boolean | undefined;
|
|
40440
40613
|
highlightColor?: string | undefined;
|
|
40614
|
+
mustBeConnected?: boolean | undefined;
|
|
40441
40615
|
}> | undefined;
|
|
40442
40616
|
cadModel?: string | {
|
|
40443
40617
|
stlUrl: string;
|
|
@@ -42635,6 +42809,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
42635
42809
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
42636
42810
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
42637
42811
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
42812
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
42638
42813
|
}, "strip", z.ZodTypeAny, {
|
|
42639
42814
|
providesPower?: boolean | undefined;
|
|
42640
42815
|
requiresPower?: boolean | undefined;
|
|
@@ -42645,6 +42820,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
42645
42820
|
doNotConnect?: boolean | undefined;
|
|
42646
42821
|
includeInBoardPinout?: boolean | undefined;
|
|
42647
42822
|
highlightColor?: string | undefined;
|
|
42823
|
+
mustBeConnected?: boolean | undefined;
|
|
42648
42824
|
}, {
|
|
42649
42825
|
providesPower?: boolean | undefined;
|
|
42650
42826
|
requiresPower?: boolean | undefined;
|
|
@@ -42655,6 +42831,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
42655
42831
|
doNotConnect?: boolean | undefined;
|
|
42656
42832
|
includeInBoardPinout?: boolean | undefined;
|
|
42657
42833
|
highlightColor?: string | undefined;
|
|
42834
|
+
mustBeConnected?: boolean | undefined;
|
|
42658
42835
|
}>>>;
|
|
42659
42836
|
} & {
|
|
42660
42837
|
type: z.ZodEnum<["npn", "pnp", "bjt", "jfet", "mosfet", "igbt"]>;
|
|
@@ -42710,6 +42887,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
42710
42887
|
doNotConnect?: boolean | undefined;
|
|
42711
42888
|
includeInBoardPinout?: boolean | undefined;
|
|
42712
42889
|
highlightColor?: string | undefined;
|
|
42890
|
+
mustBeConnected?: boolean | undefined;
|
|
42713
42891
|
}> | undefined;
|
|
42714
42892
|
cadModel?: string | {
|
|
42715
42893
|
stlUrl: string;
|
|
@@ -42904,6 +43082,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
42904
43082
|
doNotConnect?: boolean | undefined;
|
|
42905
43083
|
includeInBoardPinout?: boolean | undefined;
|
|
42906
43084
|
highlightColor?: string | undefined;
|
|
43085
|
+
mustBeConnected?: boolean | undefined;
|
|
42907
43086
|
}> | undefined;
|
|
42908
43087
|
cadModel?: string | {
|
|
42909
43088
|
stlUrl: string;
|
|
@@ -43715,6 +43894,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
43715
43894
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
43716
43895
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
43717
43896
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
43897
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
43718
43898
|
}, "strip", z.ZodTypeAny, {
|
|
43719
43899
|
providesPower?: boolean | undefined;
|
|
43720
43900
|
requiresPower?: boolean | undefined;
|
|
@@ -43725,6 +43905,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
43725
43905
|
doNotConnect?: boolean | undefined;
|
|
43726
43906
|
includeInBoardPinout?: boolean | undefined;
|
|
43727
43907
|
highlightColor?: string | undefined;
|
|
43908
|
+
mustBeConnected?: boolean | undefined;
|
|
43728
43909
|
}, {
|
|
43729
43910
|
providesPower?: boolean | undefined;
|
|
43730
43911
|
requiresPower?: boolean | undefined;
|
|
@@ -43735,6 +43916,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
43735
43916
|
doNotConnect?: boolean | undefined;
|
|
43736
43917
|
includeInBoardPinout?: boolean | undefined;
|
|
43737
43918
|
highlightColor?: string | undefined;
|
|
43919
|
+
mustBeConnected?: boolean | undefined;
|
|
43738
43920
|
}>>>;
|
|
43739
43921
|
} & {
|
|
43740
43922
|
channelType: z.ZodEnum<["n", "p"]>;
|
|
@@ -43791,6 +43973,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
43791
43973
|
doNotConnect?: boolean | undefined;
|
|
43792
43974
|
includeInBoardPinout?: boolean | undefined;
|
|
43793
43975
|
highlightColor?: string | undefined;
|
|
43976
|
+
mustBeConnected?: boolean | undefined;
|
|
43794
43977
|
}> | undefined;
|
|
43795
43978
|
cadModel?: string | {
|
|
43796
43979
|
stlUrl: string;
|
|
@@ -43985,6 +44168,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
43985
44168
|
doNotConnect?: boolean | undefined;
|
|
43986
44169
|
includeInBoardPinout?: boolean | undefined;
|
|
43987
44170
|
highlightColor?: string | undefined;
|
|
44171
|
+
mustBeConnected?: boolean | undefined;
|
|
43988
44172
|
}> | undefined;
|
|
43989
44173
|
cadModel?: string | {
|
|
43990
44174
|
stlUrl: string;
|
|
@@ -44799,6 +44983,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
44799
44983
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
44800
44984
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
44801
44985
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
44986
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
44802
44987
|
}, "strip", z.ZodTypeAny, {
|
|
44803
44988
|
providesPower?: boolean | undefined;
|
|
44804
44989
|
requiresPower?: boolean | undefined;
|
|
@@ -44809,6 +44994,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
44809
44994
|
doNotConnect?: boolean | undefined;
|
|
44810
44995
|
includeInBoardPinout?: boolean | undefined;
|
|
44811
44996
|
highlightColor?: string | undefined;
|
|
44997
|
+
mustBeConnected?: boolean | undefined;
|
|
44812
44998
|
}, {
|
|
44813
44999
|
providesPower?: boolean | undefined;
|
|
44814
45000
|
requiresPower?: boolean | undefined;
|
|
@@ -44819,6 +45005,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
44819
45005
|
doNotConnect?: boolean | undefined;
|
|
44820
45006
|
includeInBoardPinout?: boolean | undefined;
|
|
44821
45007
|
highlightColor?: string | undefined;
|
|
45008
|
+
mustBeConnected?: boolean | undefined;
|
|
44822
45009
|
}>>>;
|
|
44823
45010
|
} & {
|
|
44824
45011
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -44876,6 +45063,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
44876
45063
|
doNotConnect?: boolean | undefined;
|
|
44877
45064
|
includeInBoardPinout?: boolean | undefined;
|
|
44878
45065
|
highlightColor?: string | undefined;
|
|
45066
|
+
mustBeConnected?: boolean | undefined;
|
|
44879
45067
|
}> | undefined;
|
|
44880
45068
|
cadModel?: string | {
|
|
44881
45069
|
stlUrl: string;
|
|
@@ -45072,6 +45260,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
45072
45260
|
doNotConnect?: boolean | undefined;
|
|
45073
45261
|
includeInBoardPinout?: boolean | undefined;
|
|
45074
45262
|
highlightColor?: string | undefined;
|
|
45263
|
+
mustBeConnected?: boolean | undefined;
|
|
45075
45264
|
}> | undefined;
|
|
45076
45265
|
cadModel?: string | {
|
|
45077
45266
|
stlUrl: string;
|
|
@@ -45879,6 +46068,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
45879
46068
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
45880
46069
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
45881
46070
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
46071
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
45882
46072
|
}, "strip", z.ZodTypeAny, {
|
|
45883
46073
|
providesPower?: boolean | undefined;
|
|
45884
46074
|
requiresPower?: boolean | undefined;
|
|
@@ -45889,6 +46079,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
45889
46079
|
doNotConnect?: boolean | undefined;
|
|
45890
46080
|
includeInBoardPinout?: boolean | undefined;
|
|
45891
46081
|
highlightColor?: string | undefined;
|
|
46082
|
+
mustBeConnected?: boolean | undefined;
|
|
45892
46083
|
}, {
|
|
45893
46084
|
providesPower?: boolean | undefined;
|
|
45894
46085
|
requiresPower?: boolean | undefined;
|
|
@@ -45899,6 +46090,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
45899
46090
|
doNotConnect?: boolean | undefined;
|
|
45900
46091
|
includeInBoardPinout?: boolean | undefined;
|
|
45901
46092
|
highlightColor?: string | undefined;
|
|
46093
|
+
mustBeConnected?: boolean | undefined;
|
|
45902
46094
|
}>>>;
|
|
45903
46095
|
} & {
|
|
45904
46096
|
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 +46153,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
45961
46153
|
doNotConnect?: boolean | undefined;
|
|
45962
46154
|
includeInBoardPinout?: boolean | undefined;
|
|
45963
46155
|
highlightColor?: string | undefined;
|
|
46156
|
+
mustBeConnected?: boolean | undefined;
|
|
45964
46157
|
}> | undefined;
|
|
45965
46158
|
cadModel?: string | {
|
|
45966
46159
|
stlUrl: string;
|
|
@@ -46161,6 +46354,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
46161
46354
|
doNotConnect?: boolean | undefined;
|
|
46162
46355
|
includeInBoardPinout?: boolean | undefined;
|
|
46163
46356
|
highlightColor?: string | undefined;
|
|
46357
|
+
mustBeConnected?: boolean | undefined;
|
|
46164
46358
|
}> | undefined;
|
|
46165
46359
|
cadModel?: string | {
|
|
46166
46360
|
stlUrl: string;
|
|
@@ -46361,6 +46555,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
46361
46555
|
doNotConnect?: boolean | undefined;
|
|
46362
46556
|
includeInBoardPinout?: boolean | undefined;
|
|
46363
46557
|
highlightColor?: string | undefined;
|
|
46558
|
+
mustBeConnected?: boolean | undefined;
|
|
46364
46559
|
}> | undefined;
|
|
46365
46560
|
cadModel?: string | {
|
|
46366
46561
|
stlUrl: string;
|
|
@@ -46561,6 +46756,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
46561
46756
|
doNotConnect?: boolean | undefined;
|
|
46562
46757
|
includeInBoardPinout?: boolean | undefined;
|
|
46563
46758
|
highlightColor?: string | undefined;
|
|
46759
|
+
mustBeConnected?: boolean | undefined;
|
|
46564
46760
|
}> | undefined;
|
|
46565
46761
|
cadModel?: string | {
|
|
46566
46762
|
stlUrl: string;
|
|
@@ -46767,6 +46963,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
46767
46963
|
doNotConnect?: boolean | undefined;
|
|
46768
46964
|
includeInBoardPinout?: boolean | undefined;
|
|
46769
46965
|
highlightColor?: string | undefined;
|
|
46966
|
+
mustBeConnected?: boolean | undefined;
|
|
46770
46967
|
}> | undefined;
|
|
46771
46968
|
cadModel?: string | {
|
|
46772
46969
|
stlUrl: string;
|
|
@@ -46961,6 +47158,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
46961
47158
|
doNotConnect?: boolean | undefined;
|
|
46962
47159
|
includeInBoardPinout?: boolean | undefined;
|
|
46963
47160
|
highlightColor?: string | undefined;
|
|
47161
|
+
mustBeConnected?: boolean | undefined;
|
|
46964
47162
|
}> | undefined;
|
|
46965
47163
|
cadModel?: string | {
|
|
46966
47164
|
stlUrl: string;
|
|
@@ -47796,6 +47994,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
47796
47994
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
47797
47995
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
47798
47996
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
47997
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
47799
47998
|
}, "strip", z.ZodTypeAny, {
|
|
47800
47999
|
providesPower?: boolean | undefined;
|
|
47801
48000
|
requiresPower?: boolean | undefined;
|
|
@@ -47806,6 +48005,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
47806
48005
|
doNotConnect?: boolean | undefined;
|
|
47807
48006
|
includeInBoardPinout?: boolean | undefined;
|
|
47808
48007
|
highlightColor?: string | undefined;
|
|
48008
|
+
mustBeConnected?: boolean | undefined;
|
|
47809
48009
|
}, {
|
|
47810
48010
|
providesPower?: boolean | undefined;
|
|
47811
48011
|
requiresPower?: boolean | undefined;
|
|
@@ -47816,6 +48016,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
47816
48016
|
doNotConnect?: boolean | undefined;
|
|
47817
48017
|
includeInBoardPinout?: boolean | undefined;
|
|
47818
48018
|
highlightColor?: string | undefined;
|
|
48019
|
+
mustBeConnected?: boolean | undefined;
|
|
47819
48020
|
}>>>;
|
|
47820
48021
|
} & {
|
|
47821
48022
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -47874,6 +48075,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
47874
48075
|
doNotConnect?: boolean | undefined;
|
|
47875
48076
|
includeInBoardPinout?: boolean | undefined;
|
|
47876
48077
|
highlightColor?: string | undefined;
|
|
48078
|
+
mustBeConnected?: boolean | undefined;
|
|
47877
48079
|
}> | undefined;
|
|
47878
48080
|
cadModel?: string | {
|
|
47879
48081
|
stlUrl: string;
|
|
@@ -48072,6 +48274,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
48072
48274
|
doNotConnect?: boolean | undefined;
|
|
48073
48275
|
includeInBoardPinout?: boolean | undefined;
|
|
48074
48276
|
highlightColor?: string | undefined;
|
|
48277
|
+
mustBeConnected?: boolean | undefined;
|
|
48075
48278
|
}> | undefined;
|
|
48076
48279
|
cadModel?: string | {
|
|
48077
48280
|
stlUrl: string;
|
|
@@ -48898,6 +49101,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
48898
49101
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
48899
49102
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
48900
49103
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
49104
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
48901
49105
|
}, "strip", z.ZodTypeAny, {
|
|
48902
49106
|
providesPower?: boolean | undefined;
|
|
48903
49107
|
requiresPower?: boolean | undefined;
|
|
@@ -48908,6 +49112,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
48908
49112
|
doNotConnect?: boolean | undefined;
|
|
48909
49113
|
includeInBoardPinout?: boolean | undefined;
|
|
48910
49114
|
highlightColor?: string | undefined;
|
|
49115
|
+
mustBeConnected?: boolean | undefined;
|
|
48911
49116
|
}, {
|
|
48912
49117
|
providesPower?: boolean | undefined;
|
|
48913
49118
|
requiresPower?: boolean | undefined;
|
|
@@ -48918,6 +49123,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
48918
49123
|
doNotConnect?: boolean | undefined;
|
|
48919
49124
|
includeInBoardPinout?: boolean | undefined;
|
|
48920
49125
|
highlightColor?: string | undefined;
|
|
49126
|
+
mustBeConnected?: boolean | undefined;
|
|
48921
49127
|
}>>>;
|
|
48922
49128
|
} & {
|
|
48923
49129
|
type: z.ZodOptional<z.ZodEnum<["spst", "spdt", "dpst", "dpdt"]>>;
|
|
@@ -48984,6 +49190,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
48984
49190
|
doNotConnect?: boolean | undefined;
|
|
48985
49191
|
includeInBoardPinout?: boolean | undefined;
|
|
48986
49192
|
highlightColor?: string | undefined;
|
|
49193
|
+
mustBeConnected?: boolean | undefined;
|
|
48987
49194
|
}> | undefined;
|
|
48988
49195
|
cadModel?: string | {
|
|
48989
49196
|
stlUrl: string;
|
|
@@ -49187,6 +49394,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
49187
49394
|
doNotConnect?: boolean | undefined;
|
|
49188
49395
|
includeInBoardPinout?: boolean | undefined;
|
|
49189
49396
|
highlightColor?: string | undefined;
|
|
49397
|
+
mustBeConnected?: boolean | undefined;
|
|
49190
49398
|
}> | undefined;
|
|
49191
49399
|
cadModel?: string | {
|
|
49192
49400
|
stlUrl: string;
|
|
@@ -49391,6 +49599,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
49391
49599
|
doNotConnect?: boolean | undefined;
|
|
49392
49600
|
includeInBoardPinout?: boolean | undefined;
|
|
49393
49601
|
highlightColor?: string | undefined;
|
|
49602
|
+
mustBeConnected?: boolean | undefined;
|
|
49394
49603
|
}> | undefined;
|
|
49395
49604
|
cadModel?: string | {
|
|
49396
49605
|
stlUrl: string;
|
|
@@ -51087,6 +51296,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
51087
51296
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
51088
51297
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
51089
51298
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
51299
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
51090
51300
|
}, "strip", z.ZodTypeAny, {
|
|
51091
51301
|
providesPower?: boolean | undefined;
|
|
51092
51302
|
requiresPower?: boolean | undefined;
|
|
@@ -51097,6 +51307,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
51097
51307
|
doNotConnect?: boolean | undefined;
|
|
51098
51308
|
includeInBoardPinout?: boolean | undefined;
|
|
51099
51309
|
highlightColor?: string | undefined;
|
|
51310
|
+
mustBeConnected?: boolean | undefined;
|
|
51100
51311
|
}, {
|
|
51101
51312
|
providesPower?: boolean | undefined;
|
|
51102
51313
|
requiresPower?: boolean | undefined;
|
|
@@ -51107,6 +51318,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
51107
51318
|
doNotConnect?: boolean | undefined;
|
|
51108
51319
|
includeInBoardPinout?: boolean | undefined;
|
|
51109
51320
|
highlightColor?: string | undefined;
|
|
51321
|
+
mustBeConnected?: boolean | undefined;
|
|
51110
51322
|
}>>>;
|
|
51111
51323
|
} & {
|
|
51112
51324
|
connections: z.ZodOptional<z.ZodObject<{
|
|
@@ -51173,6 +51385,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
51173
51385
|
doNotConnect?: boolean | undefined;
|
|
51174
51386
|
includeInBoardPinout?: boolean | undefined;
|
|
51175
51387
|
highlightColor?: string | undefined;
|
|
51388
|
+
mustBeConnected?: boolean | undefined;
|
|
51176
51389
|
}> | undefined;
|
|
51177
51390
|
cadModel?: string | {
|
|
51178
51391
|
stlUrl: string;
|
|
@@ -51373,6 +51586,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
51373
51586
|
doNotConnect?: boolean | undefined;
|
|
51374
51587
|
includeInBoardPinout?: boolean | undefined;
|
|
51375
51588
|
highlightColor?: string | undefined;
|
|
51589
|
+
mustBeConnected?: boolean | undefined;
|
|
51376
51590
|
}> | undefined;
|
|
51377
51591
|
cadModel?: string | {
|
|
51378
51592
|
stlUrl: string;
|
|
@@ -51573,6 +51787,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
51573
51787
|
doNotConnect?: boolean | undefined;
|
|
51574
51788
|
includeInBoardPinout?: boolean | undefined;
|
|
51575
51789
|
highlightColor?: string | undefined;
|
|
51790
|
+
mustBeConnected?: boolean | undefined;
|
|
51576
51791
|
}> | undefined;
|
|
51577
51792
|
cadModel?: string | {
|
|
51578
51793
|
stlUrl: string;
|
|
@@ -51773,6 +51988,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
51773
51988
|
doNotConnect?: boolean | undefined;
|
|
51774
51989
|
includeInBoardPinout?: boolean | undefined;
|
|
51775
51990
|
highlightColor?: string | undefined;
|
|
51991
|
+
mustBeConnected?: boolean | undefined;
|
|
51776
51992
|
}> | undefined;
|
|
51777
51993
|
cadModel?: string | {
|
|
51778
51994
|
stlUrl: string;
|
|
@@ -53383,6 +53599,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
53383
53599
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
53384
53600
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
53385
53601
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
53602
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
53386
53603
|
}, "strip", z.ZodTypeAny, {
|
|
53387
53604
|
providesPower?: boolean | undefined;
|
|
53388
53605
|
requiresPower?: boolean | undefined;
|
|
@@ -53393,6 +53610,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
53393
53610
|
doNotConnect?: boolean | undefined;
|
|
53394
53611
|
includeInBoardPinout?: boolean | undefined;
|
|
53395
53612
|
highlightColor?: string | undefined;
|
|
53613
|
+
mustBeConnected?: boolean | undefined;
|
|
53396
53614
|
}, {
|
|
53397
53615
|
providesPower?: boolean | undefined;
|
|
53398
53616
|
requiresPower?: boolean | undefined;
|
|
@@ -53403,6 +53621,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
53403
53621
|
doNotConnect?: boolean | undefined;
|
|
53404
53622
|
includeInBoardPinout?: boolean | undefined;
|
|
53405
53623
|
highlightColor?: string | undefined;
|
|
53624
|
+
mustBeConnected?: boolean | undefined;
|
|
53406
53625
|
}>>>;
|
|
53407
53626
|
} & {
|
|
53408
53627
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -53457,6 +53676,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
53457
53676
|
doNotConnect?: boolean | undefined;
|
|
53458
53677
|
includeInBoardPinout?: boolean | undefined;
|
|
53459
53678
|
highlightColor?: string | undefined;
|
|
53679
|
+
mustBeConnected?: boolean | undefined;
|
|
53460
53680
|
}> | undefined;
|
|
53461
53681
|
cadModel?: string | {
|
|
53462
53682
|
stlUrl: string;
|
|
@@ -53650,6 +53870,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
53650
53870
|
doNotConnect?: boolean | undefined;
|
|
53651
53871
|
includeInBoardPinout?: boolean | undefined;
|
|
53652
53872
|
highlightColor?: string | undefined;
|
|
53873
|
+
mustBeConnected?: boolean | undefined;
|
|
53653
53874
|
}> | undefined;
|
|
53654
53875
|
cadModel?: string | {
|
|
53655
53876
|
stlUrl: string;
|
|
@@ -54467,6 +54688,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
54467
54688
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
54468
54689
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
54469
54690
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
54691
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
54470
54692
|
}, "strip", z.ZodTypeAny, {
|
|
54471
54693
|
providesPower?: boolean | undefined;
|
|
54472
54694
|
requiresPower?: boolean | undefined;
|
|
@@ -54477,6 +54699,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
54477
54699
|
doNotConnect?: boolean | undefined;
|
|
54478
54700
|
includeInBoardPinout?: boolean | undefined;
|
|
54479
54701
|
highlightColor?: string | undefined;
|
|
54702
|
+
mustBeConnected?: boolean | undefined;
|
|
54480
54703
|
}, {
|
|
54481
54704
|
providesPower?: boolean | undefined;
|
|
54482
54705
|
requiresPower?: boolean | undefined;
|
|
@@ -54487,6 +54710,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
54487
54710
|
doNotConnect?: boolean | undefined;
|
|
54488
54711
|
includeInBoardPinout?: boolean | undefined;
|
|
54489
54712
|
highlightColor?: string | undefined;
|
|
54713
|
+
mustBeConnected?: boolean | undefined;
|
|
54490
54714
|
}>>>;
|
|
54491
54715
|
} & {
|
|
54492
54716
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -54546,6 +54770,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
54546
54770
|
doNotConnect?: boolean | undefined;
|
|
54547
54771
|
includeInBoardPinout?: boolean | undefined;
|
|
54548
54772
|
highlightColor?: string | undefined;
|
|
54773
|
+
mustBeConnected?: boolean | undefined;
|
|
54549
54774
|
}> | undefined;
|
|
54550
54775
|
cadModel?: string | {
|
|
54551
54776
|
stlUrl: string;
|
|
@@ -54745,6 +54970,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
54745
54970
|
doNotConnect?: boolean | undefined;
|
|
54746
54971
|
includeInBoardPinout?: boolean | undefined;
|
|
54747
54972
|
highlightColor?: string | undefined;
|
|
54973
|
+
mustBeConnected?: boolean | undefined;
|
|
54748
54974
|
}> | undefined;
|
|
54749
54975
|
cadModel?: string | {
|
|
54750
54976
|
stlUrl: string;
|
|
@@ -55562,6 +55788,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
55562
55788
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
55563
55789
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
55564
55790
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
55791
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
55565
55792
|
}, "strip", z.ZodTypeAny, {
|
|
55566
55793
|
providesPower?: boolean | undefined;
|
|
55567
55794
|
requiresPower?: boolean | undefined;
|
|
@@ -55572,6 +55799,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
55572
55799
|
doNotConnect?: boolean | undefined;
|
|
55573
55800
|
includeInBoardPinout?: boolean | undefined;
|
|
55574
55801
|
highlightColor?: string | undefined;
|
|
55802
|
+
mustBeConnected?: boolean | undefined;
|
|
55575
55803
|
}, {
|
|
55576
55804
|
providesPower?: boolean | undefined;
|
|
55577
55805
|
requiresPower?: boolean | undefined;
|
|
@@ -55582,6 +55810,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
55582
55810
|
doNotConnect?: boolean | undefined;
|
|
55583
55811
|
includeInBoardPinout?: boolean | undefined;
|
|
55584
55812
|
highlightColor?: string | undefined;
|
|
55813
|
+
mustBeConnected?: boolean | undefined;
|
|
55585
55814
|
}>>>;
|
|
55586
55815
|
}, "name"> & {
|
|
55587
55816
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -55638,6 +55867,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
55638
55867
|
doNotConnect?: boolean | undefined;
|
|
55639
55868
|
includeInBoardPinout?: boolean | undefined;
|
|
55640
55869
|
highlightColor?: string | undefined;
|
|
55870
|
+
mustBeConnected?: boolean | undefined;
|
|
55641
55871
|
}> | undefined;
|
|
55642
55872
|
cadModel?: string | {
|
|
55643
55873
|
stlUrl: string;
|
|
@@ -55832,6 +56062,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
55832
56062
|
doNotConnect?: boolean | undefined;
|
|
55833
56063
|
includeInBoardPinout?: boolean | undefined;
|
|
55834
56064
|
highlightColor?: string | undefined;
|
|
56065
|
+
mustBeConnected?: boolean | undefined;
|
|
55835
56066
|
}> | undefined;
|
|
55836
56067
|
cadModel?: string | {
|
|
55837
56068
|
stlUrl: string;
|