@tscircuit/props 0.0.473 → 0.0.474
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 +104 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +10 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6476,6 +6476,10 @@ interface CommonComponentProps<PinLabel extends string = string> extends CommonL
|
|
|
6476
6476
|
children?: any;
|
|
6477
6477
|
symbolName?: string;
|
|
6478
6478
|
doNotPlace?: boolean;
|
|
6479
|
+
/**
|
|
6480
|
+
* Allows the PCB component to hang off the board (e.g. for USB ports or displays)
|
|
6481
|
+
*/
|
|
6482
|
+
allowOffBoard?: boolean;
|
|
6479
6483
|
/**
|
|
6480
6484
|
* Does this component take up all the space within its bounds on a layer. This is generally true
|
|
6481
6485
|
* except for when separated pin headers are being represented by a single component (in which case,
|
|
@@ -9516,6 +9520,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9516
9520
|
children: z.ZodOptional<z.ZodAny>;
|
|
9517
9521
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
9518
9522
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
9523
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
9519
9524
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
9520
9525
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
9521
9526
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -10046,6 +10051,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
10046
10051
|
} | undefined;
|
|
10047
10052
|
children?: any;
|
|
10048
10053
|
doNotPlace?: boolean | undefined;
|
|
10054
|
+
allowOffBoard?: boolean | undefined;
|
|
10049
10055
|
obstructsWithinBounds?: boolean | undefined;
|
|
10050
10056
|
showAsTranslucentModel?: boolean | undefined;
|
|
10051
10057
|
mfn?: string | undefined;
|
|
@@ -10544,6 +10550,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
10544
10550
|
} | undefined;
|
|
10545
10551
|
children?: any;
|
|
10546
10552
|
doNotPlace?: boolean | undefined;
|
|
10553
|
+
allowOffBoard?: boolean | undefined;
|
|
10547
10554
|
obstructsWithinBounds?: boolean | undefined;
|
|
10548
10555
|
showAsTranslucentModel?: boolean | undefined;
|
|
10549
10556
|
mfn?: string | undefined;
|
|
@@ -13576,6 +13583,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
13576
13583
|
children: z.ZodOptional<z.ZodAny>;
|
|
13577
13584
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
13578
13585
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
13586
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
13579
13587
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
13580
13588
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
13581
13589
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -14106,6 +14114,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
14106
14114
|
} | undefined;
|
|
14107
14115
|
children?: any;
|
|
14108
14116
|
doNotPlace?: boolean | undefined;
|
|
14117
|
+
allowOffBoard?: boolean | undefined;
|
|
14109
14118
|
obstructsWithinBounds?: boolean | undefined;
|
|
14110
14119
|
showAsTranslucentModel?: boolean | undefined;
|
|
14111
14120
|
mfn?: string | undefined;
|
|
@@ -14604,6 +14613,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
14604
14613
|
} | undefined;
|
|
14605
14614
|
children?: any;
|
|
14606
14615
|
doNotPlace?: boolean | undefined;
|
|
14616
|
+
allowOffBoard?: boolean | undefined;
|
|
14607
14617
|
obstructsWithinBounds?: boolean | undefined;
|
|
14608
14618
|
showAsTranslucentModel?: boolean | undefined;
|
|
14609
14619
|
mfn?: string | undefined;
|
|
@@ -30839,6 +30849,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
30839
30849
|
children: z.ZodOptional<z.ZodAny>;
|
|
30840
30850
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
30841
30851
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
30852
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
30842
30853
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
30843
30854
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
30844
30855
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -31666,6 +31677,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
31666
31677
|
} | undefined;
|
|
31667
31678
|
children?: any;
|
|
31668
31679
|
doNotPlace?: boolean | undefined;
|
|
31680
|
+
allowOffBoard?: boolean | undefined;
|
|
31669
31681
|
obstructsWithinBounds?: boolean | undefined;
|
|
31670
31682
|
showAsTranslucentModel?: boolean | undefined;
|
|
31671
31683
|
mfn?: string | undefined;
|
|
@@ -32240,6 +32252,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
32240
32252
|
} | undefined;
|
|
32241
32253
|
children?: any;
|
|
32242
32254
|
doNotPlace?: boolean | undefined;
|
|
32255
|
+
allowOffBoard?: boolean | undefined;
|
|
32243
32256
|
obstructsWithinBounds?: boolean | undefined;
|
|
32244
32257
|
showAsTranslucentModel?: boolean | undefined;
|
|
32245
32258
|
mfn?: string | undefined;
|
|
@@ -35349,6 +35362,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
35349
35362
|
children: z.ZodOptional<z.ZodAny>;
|
|
35350
35363
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
35351
35364
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
35365
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
35352
35366
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
35353
35367
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
35354
35368
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -36176,6 +36190,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
36176
36190
|
} | undefined;
|
|
36177
36191
|
children?: any;
|
|
36178
36192
|
doNotPlace?: boolean | undefined;
|
|
36193
|
+
allowOffBoard?: boolean | undefined;
|
|
36179
36194
|
obstructsWithinBounds?: boolean | undefined;
|
|
36180
36195
|
showAsTranslucentModel?: boolean | undefined;
|
|
36181
36196
|
mfn?: string | undefined;
|
|
@@ -36750,6 +36765,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
36750
36765
|
} | undefined;
|
|
36751
36766
|
children?: any;
|
|
36752
36767
|
doNotPlace?: boolean | undefined;
|
|
36768
|
+
allowOffBoard?: boolean | undefined;
|
|
36753
36769
|
obstructsWithinBounds?: boolean | undefined;
|
|
36754
36770
|
showAsTranslucentModel?: boolean | undefined;
|
|
36755
36771
|
mfn?: string | undefined;
|
|
@@ -39858,6 +39874,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39858
39874
|
children: z.ZodOptional<z.ZodAny>;
|
|
39859
39875
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
39860
39876
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
39877
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
39861
39878
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
39862
39879
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
39863
39880
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -40685,6 +40702,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40685
40702
|
} | undefined;
|
|
40686
40703
|
children?: any;
|
|
40687
40704
|
doNotPlace?: boolean | undefined;
|
|
40705
|
+
allowOffBoard?: boolean | undefined;
|
|
40688
40706
|
obstructsWithinBounds?: boolean | undefined;
|
|
40689
40707
|
showAsTranslucentModel?: boolean | undefined;
|
|
40690
40708
|
mfn?: string | undefined;
|
|
@@ -41259,6 +41277,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
41259
41277
|
} | undefined;
|
|
41260
41278
|
children?: any;
|
|
41261
41279
|
doNotPlace?: boolean | undefined;
|
|
41280
|
+
allowOffBoard?: boolean | undefined;
|
|
41262
41281
|
obstructsWithinBounds?: boolean | undefined;
|
|
41263
41282
|
showAsTranslucentModel?: boolean | undefined;
|
|
41264
41283
|
mfn?: string | undefined;
|
|
@@ -44399,6 +44418,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44399
44418
|
children: z.ZodOptional<z.ZodAny>;
|
|
44400
44419
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
44401
44420
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
44421
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
44402
44422
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
44403
44423
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
44404
44424
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -45215,6 +45235,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45215
45235
|
} | undefined;
|
|
45216
45236
|
children?: any;
|
|
45217
45237
|
doNotPlace?: boolean | undefined;
|
|
45238
|
+
allowOffBoard?: boolean | undefined;
|
|
45218
45239
|
obstructsWithinBounds?: boolean | undefined;
|
|
45219
45240
|
showAsTranslucentModel?: boolean | undefined;
|
|
45220
45241
|
mfn?: string | undefined;
|
|
@@ -45784,6 +45805,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45784
45805
|
} | undefined;
|
|
45785
45806
|
children?: any;
|
|
45786
45807
|
doNotPlace?: boolean | undefined;
|
|
45808
|
+
allowOffBoard?: boolean | undefined;
|
|
45787
45809
|
obstructsWithinBounds?: boolean | undefined;
|
|
45788
45810
|
showAsTranslucentModel?: boolean | undefined;
|
|
45789
45811
|
mfn?: string | undefined;
|
|
@@ -48896,6 +48918,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
48896
48918
|
children: z.ZodOptional<z.ZodAny>;
|
|
48897
48919
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
48898
48920
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
48921
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
48899
48922
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
48900
48923
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
48901
48924
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -49715,6 +49738,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49715
49738
|
} | undefined;
|
|
49716
49739
|
children?: any;
|
|
49717
49740
|
doNotPlace?: boolean | undefined;
|
|
49741
|
+
allowOffBoard?: boolean | undefined;
|
|
49718
49742
|
obstructsWithinBounds?: boolean | undefined;
|
|
49719
49743
|
showAsTranslucentModel?: boolean | undefined;
|
|
49720
49744
|
mfn?: string | undefined;
|
|
@@ -50286,6 +50310,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50286
50310
|
} | undefined;
|
|
50287
50311
|
children?: any;
|
|
50288
50312
|
doNotPlace?: boolean | undefined;
|
|
50313
|
+
allowOffBoard?: boolean | undefined;
|
|
50289
50314
|
obstructsWithinBounds?: boolean | undefined;
|
|
50290
50315
|
showAsTranslucentModel?: boolean | undefined;
|
|
50291
50316
|
mfn?: string | undefined;
|
|
@@ -53409,6 +53434,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
53409
53434
|
children: z.ZodOptional<z.ZodAny>;
|
|
53410
53435
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
53411
53436
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
53437
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
53412
53438
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
53413
53439
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
53414
53440
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -54099,6 +54125,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54099
54125
|
} | undefined;
|
|
54100
54126
|
children?: any;
|
|
54101
54127
|
doNotPlace?: boolean | undefined;
|
|
54128
|
+
allowOffBoard?: boolean | undefined;
|
|
54102
54129
|
obstructsWithinBounds?: boolean | undefined;
|
|
54103
54130
|
showAsTranslucentModel?: boolean | undefined;
|
|
54104
54131
|
mfn?: string | undefined;
|
|
@@ -54640,6 +54667,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54640
54667
|
} | undefined;
|
|
54641
54668
|
children?: any;
|
|
54642
54669
|
doNotPlace?: boolean | undefined;
|
|
54670
|
+
allowOffBoard?: boolean | undefined;
|
|
54643
54671
|
obstructsWithinBounds?: boolean | undefined;
|
|
54644
54672
|
showAsTranslucentModel?: boolean | undefined;
|
|
54645
54673
|
mfn?: string | undefined;
|
|
@@ -57725,6 +57753,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
57725
57753
|
children: z.ZodOptional<z.ZodAny>;
|
|
57726
57754
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
57727
57755
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
57756
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
57728
57757
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
57729
57758
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
57730
57759
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -58259,6 +58288,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58259
58288
|
} | undefined;
|
|
58260
58289
|
children?: any;
|
|
58261
58290
|
doNotPlace?: boolean | undefined;
|
|
58291
|
+
allowOffBoard?: boolean | undefined;
|
|
58262
58292
|
obstructsWithinBounds?: boolean | undefined;
|
|
58263
58293
|
showAsTranslucentModel?: boolean | undefined;
|
|
58264
58294
|
mfn?: string | undefined;
|
|
@@ -58760,6 +58790,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58760
58790
|
} | undefined;
|
|
58761
58791
|
children?: any;
|
|
58762
58792
|
doNotPlace?: boolean | undefined;
|
|
58793
|
+
allowOffBoard?: boolean | undefined;
|
|
58763
58794
|
obstructsWithinBounds?: boolean | undefined;
|
|
58764
58795
|
showAsTranslucentModel?: boolean | undefined;
|
|
58765
58796
|
mfn?: string | undefined;
|
|
@@ -61823,6 +61854,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
61823
61854
|
children: z.ZodOptional<z.ZodAny>;
|
|
61824
61855
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
61825
61856
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
61857
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
61826
61858
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
61827
61859
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
61828
61860
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -62360,6 +62392,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62360
62392
|
} | undefined;
|
|
62361
62393
|
children?: any;
|
|
62362
62394
|
doNotPlace?: boolean | undefined;
|
|
62395
|
+
allowOffBoard?: boolean | undefined;
|
|
62363
62396
|
obstructsWithinBounds?: boolean | undefined;
|
|
62364
62397
|
showAsTranslucentModel?: boolean | undefined;
|
|
62365
62398
|
mfn?: string | undefined;
|
|
@@ -62863,6 +62896,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62863
62896
|
} | undefined;
|
|
62864
62897
|
children?: any;
|
|
62865
62898
|
doNotPlace?: boolean | undefined;
|
|
62899
|
+
allowOffBoard?: boolean | undefined;
|
|
62866
62900
|
obstructsWithinBounds?: boolean | undefined;
|
|
62867
62901
|
showAsTranslucentModel?: boolean | undefined;
|
|
62868
62902
|
mfn?: string | undefined;
|
|
@@ -67534,6 +67568,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
67534
67568
|
children: z.ZodOptional<z.ZodAny>;
|
|
67535
67569
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
67536
67570
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
67571
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
67537
67572
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
67538
67573
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
67539
67574
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -68075,6 +68110,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68075
68110
|
} | undefined;
|
|
68076
68111
|
children?: any;
|
|
68077
68112
|
doNotPlace?: boolean | undefined;
|
|
68113
|
+
allowOffBoard?: boolean | undefined;
|
|
68078
68114
|
obstructsWithinBounds?: boolean | undefined;
|
|
68079
68115
|
showAsTranslucentModel?: boolean | undefined;
|
|
68080
68116
|
mfn?: string | undefined;
|
|
@@ -68582,6 +68618,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68582
68618
|
} | undefined;
|
|
68583
68619
|
children?: any;
|
|
68584
68620
|
doNotPlace?: boolean | undefined;
|
|
68621
|
+
allowOffBoard?: boolean | undefined;
|
|
68585
68622
|
obstructsWithinBounds?: boolean | undefined;
|
|
68586
68623
|
showAsTranslucentModel?: boolean | undefined;
|
|
68587
68624
|
mfn?: string | undefined;
|
|
@@ -71629,6 +71666,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
71629
71666
|
children: z.ZodOptional<z.ZodAny>;
|
|
71630
71667
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
71631
71668
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
71669
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
71632
71670
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
71633
71671
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
71634
71672
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -72163,6 +72201,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
72163
72201
|
} | undefined;
|
|
72164
72202
|
children?: any;
|
|
72165
72203
|
doNotPlace?: boolean | undefined;
|
|
72204
|
+
allowOffBoard?: boolean | undefined;
|
|
72166
72205
|
obstructsWithinBounds?: boolean | undefined;
|
|
72167
72206
|
showAsTranslucentModel?: boolean | undefined;
|
|
72168
72207
|
mfn?: string | undefined;
|
|
@@ -72663,6 +72702,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
72663
72702
|
} | undefined;
|
|
72664
72703
|
children?: any;
|
|
72665
72704
|
doNotPlace?: boolean | undefined;
|
|
72705
|
+
allowOffBoard?: boolean | undefined;
|
|
72666
72706
|
obstructsWithinBounds?: boolean | undefined;
|
|
72667
72707
|
showAsTranslucentModel?: boolean | undefined;
|
|
72668
72708
|
mfn?: string | undefined;
|
|
@@ -75707,6 +75747,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
75707
75747
|
children: z.ZodOptional<z.ZodAny>;
|
|
75708
75748
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
75709
75749
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
75750
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
75710
75751
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
75711
75752
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
75712
75753
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -76246,6 +76287,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
76246
76287
|
} | undefined;
|
|
76247
76288
|
children?: any;
|
|
76248
76289
|
doNotPlace?: boolean | undefined;
|
|
76290
|
+
allowOffBoard?: boolean | undefined;
|
|
76249
76291
|
obstructsWithinBounds?: boolean | undefined;
|
|
76250
76292
|
showAsTranslucentModel?: boolean | undefined;
|
|
76251
76293
|
mfn?: string | undefined;
|
|
@@ -76750,6 +76792,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
76750
76792
|
} | undefined;
|
|
76751
76793
|
children?: any;
|
|
76752
76794
|
doNotPlace?: boolean | undefined;
|
|
76795
|
+
allowOffBoard?: boolean | undefined;
|
|
76753
76796
|
obstructsWithinBounds?: boolean | undefined;
|
|
76754
76797
|
showAsTranslucentModel?: boolean | undefined;
|
|
76755
76798
|
mfn?: string | undefined;
|
|
@@ -79793,6 +79836,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
79793
79836
|
children: z.ZodOptional<z.ZodAny>;
|
|
79794
79837
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
79795
79838
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
79839
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
79796
79840
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
79797
79841
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
79798
79842
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -80329,6 +80373,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
80329
80373
|
} | undefined;
|
|
80330
80374
|
children?: any;
|
|
80331
80375
|
doNotPlace?: boolean | undefined;
|
|
80376
|
+
allowOffBoard?: boolean | undefined;
|
|
80332
80377
|
obstructsWithinBounds?: boolean | undefined;
|
|
80333
80378
|
showAsTranslucentModel?: boolean | undefined;
|
|
80334
80379
|
mfn?: string | undefined;
|
|
@@ -80830,6 +80875,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
80830
80875
|
} | undefined;
|
|
80831
80876
|
children?: any;
|
|
80832
80877
|
doNotPlace?: boolean | undefined;
|
|
80878
|
+
allowOffBoard?: boolean | undefined;
|
|
80833
80879
|
obstructsWithinBounds?: boolean | undefined;
|
|
80834
80880
|
showAsTranslucentModel?: boolean | undefined;
|
|
80835
80881
|
mfn?: string | undefined;
|
|
@@ -85356,6 +85402,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
85356
85402
|
children: z.ZodOptional<z.ZodAny>;
|
|
85357
85403
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
85358
85404
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
85405
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
85359
85406
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
85360
85407
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
85361
85408
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -85902,6 +85949,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
85902
85949
|
} | undefined;
|
|
85903
85950
|
children?: any;
|
|
85904
85951
|
doNotPlace?: boolean | undefined;
|
|
85952
|
+
allowOffBoard?: boolean | undefined;
|
|
85905
85953
|
obstructsWithinBounds?: boolean | undefined;
|
|
85906
85954
|
showAsTranslucentModel?: boolean | undefined;
|
|
85907
85955
|
mfn?: string | undefined;
|
|
@@ -86410,6 +86458,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
86410
86458
|
} | undefined;
|
|
86411
86459
|
children?: any;
|
|
86412
86460
|
doNotPlace?: boolean | undefined;
|
|
86461
|
+
allowOffBoard?: boolean | undefined;
|
|
86413
86462
|
obstructsWithinBounds?: boolean | undefined;
|
|
86414
86463
|
showAsTranslucentModel?: boolean | undefined;
|
|
86415
86464
|
mfn?: string | undefined;
|
|
@@ -89486,6 +89535,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
89486
89535
|
children: z.ZodOptional<z.ZodAny>;
|
|
89487
89536
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
89488
89537
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
89538
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
89489
89539
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
89490
89540
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
89491
89541
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -90019,6 +90069,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
90019
90069
|
} | undefined;
|
|
90020
90070
|
children?: any;
|
|
90021
90071
|
doNotPlace?: boolean | undefined;
|
|
90072
|
+
allowOffBoard?: boolean | undefined;
|
|
90022
90073
|
obstructsWithinBounds?: boolean | undefined;
|
|
90023
90074
|
showAsTranslucentModel?: boolean | undefined;
|
|
90024
90075
|
mfn?: string | undefined;
|
|
@@ -90519,6 +90570,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
90519
90570
|
} | undefined;
|
|
90520
90571
|
children?: any;
|
|
90521
90572
|
doNotPlace?: boolean | undefined;
|
|
90573
|
+
allowOffBoard?: boolean | undefined;
|
|
90522
90574
|
obstructsWithinBounds?: boolean | undefined;
|
|
90523
90575
|
showAsTranslucentModel?: boolean | undefined;
|
|
90524
90576
|
mfn?: string | undefined;
|
|
@@ -98026,6 +98078,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
98026
98078
|
children: z.ZodOptional<z.ZodAny>;
|
|
98027
98079
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
98028
98080
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
98081
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
98029
98082
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
98030
98083
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
98031
98084
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -98561,6 +98614,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
98561
98614
|
} | undefined;
|
|
98562
98615
|
children?: any;
|
|
98563
98616
|
doNotPlace?: boolean | undefined;
|
|
98617
|
+
allowOffBoard?: boolean | undefined;
|
|
98564
98618
|
obstructsWithinBounds?: boolean | undefined;
|
|
98565
98619
|
showAsTranslucentModel?: boolean | undefined;
|
|
98566
98620
|
mfn?: string | undefined;
|
|
@@ -99063,6 +99117,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
99063
99117
|
} | undefined;
|
|
99064
99118
|
children?: any;
|
|
99065
99119
|
doNotPlace?: boolean | undefined;
|
|
99120
|
+
allowOffBoard?: boolean | undefined;
|
|
99066
99121
|
obstructsWithinBounds?: boolean | undefined;
|
|
99067
99122
|
showAsTranslucentModel?: boolean | undefined;
|
|
99068
99123
|
mfn?: string | undefined;
|
|
@@ -103780,6 +103835,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
103780
103835
|
children: z.ZodOptional<z.ZodAny>;
|
|
103781
103836
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
103782
103837
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
103838
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
103783
103839
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
103784
103840
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
103785
103841
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -104482,6 +104538,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
104482
104538
|
} | undefined;
|
|
104483
104539
|
children?: any;
|
|
104484
104540
|
doNotPlace?: boolean | undefined;
|
|
104541
|
+
allowOffBoard?: boolean | undefined;
|
|
104485
104542
|
obstructsWithinBounds?: boolean | undefined;
|
|
104486
104543
|
showAsTranslucentModel?: boolean | undefined;
|
|
104487
104544
|
mfn?: string | undefined;
|
|
@@ -105032,6 +105089,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
105032
105089
|
} | undefined;
|
|
105033
105090
|
children?: any;
|
|
105034
105091
|
doNotPlace?: boolean | undefined;
|
|
105092
|
+
allowOffBoard?: boolean | undefined;
|
|
105035
105093
|
obstructsWithinBounds?: boolean | undefined;
|
|
105036
105094
|
showAsTranslucentModel?: boolean | undefined;
|
|
105037
105095
|
mfn?: string | undefined;
|
|
@@ -108186,6 +108244,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
108186
108244
|
children: z.ZodOptional<z.ZodAny>;
|
|
108187
108245
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
108188
108246
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
108247
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
108189
108248
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
108190
108249
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
108191
108250
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -109013,6 +109072,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
109013
109072
|
} | undefined;
|
|
109014
109073
|
children?: any;
|
|
109015
109074
|
doNotPlace?: boolean | undefined;
|
|
109075
|
+
allowOffBoard?: boolean | undefined;
|
|
109016
109076
|
obstructsWithinBounds?: boolean | undefined;
|
|
109017
109077
|
showAsTranslucentModel?: boolean | undefined;
|
|
109018
109078
|
mfn?: string | undefined;
|
|
@@ -109587,6 +109647,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
109587
109647
|
} | undefined;
|
|
109588
109648
|
children?: any;
|
|
109589
109649
|
doNotPlace?: boolean | undefined;
|
|
109650
|
+
allowOffBoard?: boolean | undefined;
|
|
109590
109651
|
obstructsWithinBounds?: boolean | undefined;
|
|
109591
109652
|
showAsTranslucentModel?: boolean | undefined;
|
|
109592
109653
|
mfn?: string | undefined;
|
|
@@ -114097,6 +114158,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
114097
114158
|
children: z.ZodOptional<z.ZodAny>;
|
|
114098
114159
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
114099
114160
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
114161
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
114100
114162
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
114101
114163
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
114102
114164
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -114631,6 +114693,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
114631
114693
|
} | undefined;
|
|
114632
114694
|
children?: any;
|
|
114633
114695
|
doNotPlace?: boolean | undefined;
|
|
114696
|
+
allowOffBoard?: boolean | undefined;
|
|
114634
114697
|
obstructsWithinBounds?: boolean | undefined;
|
|
114635
114698
|
showAsTranslucentModel?: boolean | undefined;
|
|
114636
114699
|
mfn?: string | undefined;
|
|
@@ -115131,6 +115194,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
115131
115194
|
} | undefined;
|
|
115132
115195
|
children?: any;
|
|
115133
115196
|
doNotPlace?: boolean | undefined;
|
|
115197
|
+
allowOffBoard?: boolean | undefined;
|
|
115134
115198
|
obstructsWithinBounds?: boolean | undefined;
|
|
115135
115199
|
showAsTranslucentModel?: boolean | undefined;
|
|
115136
115200
|
mfn?: string | undefined;
|
|
@@ -118171,6 +118235,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
118171
118235
|
children: z.ZodOptional<z.ZodAny>;
|
|
118172
118236
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
118173
118237
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
118238
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
118174
118239
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
118175
118240
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
118176
118241
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -118706,6 +118771,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
118706
118771
|
} | undefined;
|
|
118707
118772
|
children?: any;
|
|
118708
118773
|
doNotPlace?: boolean | undefined;
|
|
118774
|
+
allowOffBoard?: boolean | undefined;
|
|
118709
118775
|
obstructsWithinBounds?: boolean | undefined;
|
|
118710
118776
|
showAsTranslucentModel?: boolean | undefined;
|
|
118711
118777
|
mfn?: string | undefined;
|
|
@@ -119206,6 +119272,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
119206
119272
|
} | undefined;
|
|
119207
119273
|
children?: any;
|
|
119208
119274
|
doNotPlace?: boolean | undefined;
|
|
119275
|
+
allowOffBoard?: boolean | undefined;
|
|
119209
119276
|
obstructsWithinBounds?: boolean | undefined;
|
|
119210
119277
|
showAsTranslucentModel?: boolean | undefined;
|
|
119211
119278
|
mfn?: string | undefined;
|
|
@@ -122252,6 +122319,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
122252
122319
|
children: z.ZodOptional<z.ZodAny>;
|
|
122253
122320
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
122254
122321
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
122322
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
122255
122323
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
122256
122324
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
122257
122325
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -122784,6 +122852,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
122784
122852
|
} | undefined;
|
|
122785
122853
|
children?: any;
|
|
122786
122854
|
doNotPlace?: boolean | undefined;
|
|
122855
|
+
allowOffBoard?: boolean | undefined;
|
|
122787
122856
|
obstructsWithinBounds?: boolean | undefined;
|
|
122788
122857
|
showAsTranslucentModel?: boolean | undefined;
|
|
122789
122858
|
mfn?: string | undefined;
|
|
@@ -123283,6 +123352,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
123283
123352
|
} | undefined;
|
|
123284
123353
|
children?: any;
|
|
123285
123354
|
doNotPlace?: boolean | undefined;
|
|
123355
|
+
allowOffBoard?: boolean | undefined;
|
|
123286
123356
|
obstructsWithinBounds?: boolean | undefined;
|
|
123287
123357
|
showAsTranslucentModel?: boolean | undefined;
|
|
123288
123358
|
mfn?: string | undefined;
|
|
@@ -126330,6 +126400,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
126330
126400
|
children: z.ZodOptional<z.ZodAny>;
|
|
126331
126401
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
126332
126402
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
126403
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
126333
126404
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
126334
126405
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
126335
126406
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -126866,6 +126937,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
126866
126937
|
} | undefined;
|
|
126867
126938
|
children?: any;
|
|
126868
126939
|
doNotPlace?: boolean | undefined;
|
|
126940
|
+
allowOffBoard?: boolean | undefined;
|
|
126869
126941
|
obstructsWithinBounds?: boolean | undefined;
|
|
126870
126942
|
showAsTranslucentModel?: boolean | undefined;
|
|
126871
126943
|
mfn?: string | undefined;
|
|
@@ -127368,6 +127440,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
127368
127440
|
} | undefined;
|
|
127369
127441
|
children?: any;
|
|
127370
127442
|
doNotPlace?: boolean | undefined;
|
|
127443
|
+
allowOffBoard?: boolean | undefined;
|
|
127371
127444
|
obstructsWithinBounds?: boolean | undefined;
|
|
127372
127445
|
showAsTranslucentModel?: boolean | undefined;
|
|
127373
127446
|
mfn?: string | undefined;
|
|
@@ -130404,6 +130477,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
130404
130477
|
children: z.ZodOptional<z.ZodAny>;
|
|
130405
130478
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
130406
130479
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
130480
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
130407
130481
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
130408
130482
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
130409
130483
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -130945,6 +131019,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
130945
131019
|
} | undefined;
|
|
130946
131020
|
children?: any;
|
|
130947
131021
|
doNotPlace?: boolean | undefined;
|
|
131022
|
+
allowOffBoard?: boolean | undefined;
|
|
130948
131023
|
obstructsWithinBounds?: boolean | undefined;
|
|
130949
131024
|
showAsTranslucentModel?: boolean | undefined;
|
|
130950
131025
|
mfn?: string | undefined;
|
|
@@ -131451,6 +131526,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
131451
131526
|
} | undefined;
|
|
131452
131527
|
children?: any;
|
|
131453
131528
|
doNotPlace?: boolean | undefined;
|
|
131529
|
+
allowOffBoard?: boolean | undefined;
|
|
131454
131530
|
obstructsWithinBounds?: boolean | undefined;
|
|
131455
131531
|
showAsTranslucentModel?: boolean | undefined;
|
|
131456
131532
|
mfn?: string | undefined;
|
|
@@ -131957,6 +132033,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
131957
132033
|
} | undefined;
|
|
131958
132034
|
children?: any;
|
|
131959
132035
|
doNotPlace?: boolean | undefined;
|
|
132036
|
+
allowOffBoard?: boolean | undefined;
|
|
131960
132037
|
obstructsWithinBounds?: boolean | undefined;
|
|
131961
132038
|
showAsTranslucentModel?: boolean | undefined;
|
|
131962
132039
|
mfn?: string | undefined;
|
|
@@ -132463,6 +132540,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
132463
132540
|
} | undefined;
|
|
132464
132541
|
children?: any;
|
|
132465
132542
|
doNotPlace?: boolean | undefined;
|
|
132543
|
+
allowOffBoard?: boolean | undefined;
|
|
132466
132544
|
obstructsWithinBounds?: boolean | undefined;
|
|
132467
132545
|
showAsTranslucentModel?: boolean | undefined;
|
|
132468
132546
|
mfn?: string | undefined;
|
|
@@ -132975,6 +133053,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
132975
133053
|
} | undefined;
|
|
132976
133054
|
children?: any;
|
|
132977
133055
|
doNotPlace?: boolean | undefined;
|
|
133056
|
+
allowOffBoard?: boolean | undefined;
|
|
132978
133057
|
obstructsWithinBounds?: boolean | undefined;
|
|
132979
133058
|
showAsTranslucentModel?: boolean | undefined;
|
|
132980
133059
|
mfn?: string | undefined;
|
|
@@ -133475,6 +133554,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133475
133554
|
} | undefined;
|
|
133476
133555
|
children?: any;
|
|
133477
133556
|
doNotPlace?: boolean | undefined;
|
|
133557
|
+
allowOffBoard?: boolean | undefined;
|
|
133478
133558
|
obstructsWithinBounds?: boolean | undefined;
|
|
133479
133559
|
showAsTranslucentModel?: boolean | undefined;
|
|
133480
133560
|
mfn?: string | undefined;
|
|
@@ -136539,6 +136619,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
136539
136619
|
children: z.ZodOptional<z.ZodAny>;
|
|
136540
136620
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
136541
136621
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
136622
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
136542
136623
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
136543
136624
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
136544
136625
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -137076,6 +137157,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
137076
137157
|
} | undefined;
|
|
137077
137158
|
children?: any;
|
|
137078
137159
|
doNotPlace?: boolean | undefined;
|
|
137160
|
+
allowOffBoard?: boolean | undefined;
|
|
137079
137161
|
obstructsWithinBounds?: boolean | undefined;
|
|
137080
137162
|
showAsTranslucentModel?: boolean | undefined;
|
|
137081
137163
|
mfn?: string | undefined;
|
|
@@ -137580,6 +137662,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
137580
137662
|
} | undefined;
|
|
137581
137663
|
children?: any;
|
|
137582
137664
|
doNotPlace?: boolean | undefined;
|
|
137665
|
+
allowOffBoard?: boolean | undefined;
|
|
137583
137666
|
obstructsWithinBounds?: boolean | undefined;
|
|
137584
137667
|
showAsTranslucentModel?: boolean | undefined;
|
|
137585
137668
|
mfn?: string | undefined;
|
|
@@ -140635,6 +140718,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
140635
140718
|
children: z.ZodOptional<z.ZodAny>;
|
|
140636
140719
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
140637
140720
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
140721
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
140638
140722
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
140639
140723
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
140640
140724
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -141180,6 +141264,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
141180
141264
|
} | undefined;
|
|
141181
141265
|
children?: any;
|
|
141182
141266
|
doNotPlace?: boolean | undefined;
|
|
141267
|
+
allowOffBoard?: boolean | undefined;
|
|
141183
141268
|
obstructsWithinBounds?: boolean | undefined;
|
|
141184
141269
|
showAsTranslucentModel?: boolean | undefined;
|
|
141185
141270
|
mfn?: string | undefined;
|
|
@@ -141689,6 +141774,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
141689
141774
|
} | undefined;
|
|
141690
141775
|
children?: any;
|
|
141691
141776
|
doNotPlace?: boolean | undefined;
|
|
141777
|
+
allowOffBoard?: boolean | undefined;
|
|
141692
141778
|
obstructsWithinBounds?: boolean | undefined;
|
|
141693
141779
|
showAsTranslucentModel?: boolean | undefined;
|
|
141694
141780
|
mfn?: string | undefined;
|
|
@@ -142199,6 +142285,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
142199
142285
|
} | undefined;
|
|
142200
142286
|
children?: any;
|
|
142201
142287
|
doNotPlace?: boolean | undefined;
|
|
142288
|
+
allowOffBoard?: boolean | undefined;
|
|
142202
142289
|
obstructsWithinBounds?: boolean | undefined;
|
|
142203
142290
|
showAsTranslucentModel?: boolean | undefined;
|
|
142204
142291
|
mfn?: string | undefined;
|
|
@@ -146251,6 +146338,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
146251
146338
|
children: z.ZodOptional<z.ZodAny>;
|
|
146252
146339
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
146253
146340
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
146341
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
146254
146342
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
146255
146343
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
146256
146344
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -146796,6 +146884,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
146796
146884
|
} | undefined;
|
|
146797
146885
|
children?: any;
|
|
146798
146886
|
doNotPlace?: boolean | undefined;
|
|
146887
|
+
allowOffBoard?: boolean | undefined;
|
|
146799
146888
|
obstructsWithinBounds?: boolean | undefined;
|
|
146800
146889
|
showAsTranslucentModel?: boolean | undefined;
|
|
146801
146890
|
mfn?: string | undefined;
|
|
@@ -147302,6 +147391,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
147302
147391
|
} | undefined;
|
|
147303
147392
|
children?: any;
|
|
147304
147393
|
doNotPlace?: boolean | undefined;
|
|
147394
|
+
allowOffBoard?: boolean | undefined;
|
|
147305
147395
|
obstructsWithinBounds?: boolean | undefined;
|
|
147306
147396
|
showAsTranslucentModel?: boolean | undefined;
|
|
147307
147397
|
mfn?: string | undefined;
|
|
@@ -147808,6 +147898,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
147808
147898
|
} | undefined;
|
|
147809
147899
|
children?: any;
|
|
147810
147900
|
doNotPlace?: boolean | undefined;
|
|
147901
|
+
allowOffBoard?: boolean | undefined;
|
|
147811
147902
|
obstructsWithinBounds?: boolean | undefined;
|
|
147812
147903
|
showAsTranslucentModel?: boolean | undefined;
|
|
147813
147904
|
mfn?: string | undefined;
|
|
@@ -148314,6 +148405,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
148314
148405
|
} | undefined;
|
|
148315
148406
|
children?: any;
|
|
148316
148407
|
doNotPlace?: boolean | undefined;
|
|
148408
|
+
allowOffBoard?: boolean | undefined;
|
|
148317
148409
|
obstructsWithinBounds?: boolean | undefined;
|
|
148318
148410
|
showAsTranslucentModel?: boolean | undefined;
|
|
148319
148411
|
mfn?: string | undefined;
|
|
@@ -152581,6 +152673,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
152581
152673
|
children: z.ZodOptional<z.ZodAny>;
|
|
152582
152674
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
152583
152675
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
152676
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
152584
152677
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
152585
152678
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
152586
152679
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -153114,6 +153207,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
153114
153207
|
} | undefined;
|
|
153115
153208
|
children?: any;
|
|
153116
153209
|
doNotPlace?: boolean | undefined;
|
|
153210
|
+
allowOffBoard?: boolean | undefined;
|
|
153117
153211
|
obstructsWithinBounds?: boolean | undefined;
|
|
153118
153212
|
showAsTranslucentModel?: boolean | undefined;
|
|
153119
153213
|
mfn?: string | undefined;
|
|
@@ -153613,6 +153707,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
153613
153707
|
} | undefined;
|
|
153614
153708
|
children?: any;
|
|
153615
153709
|
doNotPlace?: boolean | undefined;
|
|
153710
|
+
allowOffBoard?: boolean | undefined;
|
|
153616
153711
|
obstructsWithinBounds?: boolean | undefined;
|
|
153617
153712
|
showAsTranslucentModel?: boolean | undefined;
|
|
153618
153713
|
mfn?: string | undefined;
|
|
@@ -156659,6 +156754,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
156659
156754
|
children: z.ZodOptional<z.ZodAny>;
|
|
156660
156755
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
156661
156756
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
156757
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
156662
156758
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
156663
156759
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
156664
156760
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -157197,6 +157293,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
157197
157293
|
} | undefined;
|
|
157198
157294
|
children?: any;
|
|
157199
157295
|
doNotPlace?: boolean | undefined;
|
|
157296
|
+
allowOffBoard?: boolean | undefined;
|
|
157200
157297
|
obstructsWithinBounds?: boolean | undefined;
|
|
157201
157298
|
showAsTranslucentModel?: boolean | undefined;
|
|
157202
157299
|
mfn?: string | undefined;
|
|
@@ -157702,6 +157799,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
157702
157799
|
} | undefined;
|
|
157703
157800
|
children?: any;
|
|
157704
157801
|
doNotPlace?: boolean | undefined;
|
|
157802
|
+
allowOffBoard?: boolean | undefined;
|
|
157705
157803
|
obstructsWithinBounds?: boolean | undefined;
|
|
157706
157804
|
showAsTranslucentModel?: boolean | undefined;
|
|
157707
157805
|
mfn?: string | undefined;
|
|
@@ -160754,6 +160852,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
160754
160852
|
children: z.ZodOptional<z.ZodAny>;
|
|
160755
160853
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
160756
160854
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
160855
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
160757
160856
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
160758
160857
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
160759
160858
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -161292,6 +161391,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
161292
161391
|
} | undefined;
|
|
161293
161392
|
children?: any;
|
|
161294
161393
|
doNotPlace?: boolean | undefined;
|
|
161394
|
+
allowOffBoard?: boolean | undefined;
|
|
161295
161395
|
obstructsWithinBounds?: boolean | undefined;
|
|
161296
161396
|
showAsTranslucentModel?: boolean | undefined;
|
|
161297
161397
|
mfn?: string | undefined;
|
|
@@ -161797,6 +161897,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
161797
161897
|
} | undefined;
|
|
161798
161898
|
children?: any;
|
|
161799
161899
|
doNotPlace?: boolean | undefined;
|
|
161900
|
+
allowOffBoard?: boolean | undefined;
|
|
161800
161901
|
obstructsWithinBounds?: boolean | undefined;
|
|
161801
161902
|
showAsTranslucentModel?: boolean | undefined;
|
|
161802
161903
|
mfn?: string | undefined;
|
|
@@ -164844,6 +164945,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
164844
164945
|
children: z.ZodOptional<z.ZodAny>;
|
|
164845
164946
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
164846
164947
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
164948
|
+
allowOffBoard: z.ZodOptional<z.ZodBoolean>;
|
|
164847
164949
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
164848
164950
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
164849
164951
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -165380,6 +165482,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
165380
165482
|
} | undefined;
|
|
165381
165483
|
children?: any;
|
|
165382
165484
|
doNotPlace?: boolean | undefined;
|
|
165485
|
+
allowOffBoard?: boolean | undefined;
|
|
165383
165486
|
obstructsWithinBounds?: boolean | undefined;
|
|
165384
165487
|
showAsTranslucentModel?: boolean | undefined;
|
|
165385
165488
|
mfn?: string | undefined;
|
|
@@ -165881,6 +165984,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
165881
165984
|
} | undefined;
|
|
165882
165985
|
children?: any;
|
|
165883
165986
|
doNotPlace?: boolean | undefined;
|
|
165987
|
+
allowOffBoard?: boolean | undefined;
|
|
165884
165988
|
obstructsWithinBounds?: boolean | undefined;
|
|
165885
165989
|
showAsTranslucentModel?: boolean | undefined;
|
|
165886
165990
|
mfn?: string | undefined;
|