@tscircuit/props 0.0.339 → 0.0.340
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 +91 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +12 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1556,6 +1556,12 @@ interface CommonComponentProps<PinLabel extends string = string> extends CommonL
|
|
|
1556
1556
|
children?: any;
|
|
1557
1557
|
symbolName?: string;
|
|
1558
1558
|
doNotPlace?: boolean;
|
|
1559
|
+
/**
|
|
1560
|
+
* Does this component take up all the space within its bounds on a layer. This is generally true
|
|
1561
|
+
* except for when separated pin headers are being represented by a single component (in which case,
|
|
1562
|
+
* chips can be placed between the pin headers) or for tall modules where chips fit underneath.
|
|
1563
|
+
*/
|
|
1564
|
+
obstructsWithinBounds?: boolean;
|
|
1559
1565
|
}
|
|
1560
1566
|
declare const commonComponentProps: z.ZodObject<{
|
|
1561
1567
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -2156,6 +2162,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2156
2162
|
children: z.ZodOptional<z.ZodAny>;
|
|
2157
2163
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
2158
2164
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
2165
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
2159
2166
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2160
2167
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
2161
2168
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2358,6 +2365,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2358
2365
|
children?: any;
|
|
2359
2366
|
symbolName?: string | undefined;
|
|
2360
2367
|
doNotPlace?: boolean | undefined;
|
|
2368
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
2361
2369
|
}, {
|
|
2362
2370
|
name: string;
|
|
2363
2371
|
symbol?: SymbolProp | undefined;
|
|
@@ -2531,6 +2539,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2531
2539
|
children?: any;
|
|
2532
2540
|
symbolName?: string | undefined;
|
|
2533
2541
|
doNotPlace?: boolean | undefined;
|
|
2542
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
2534
2543
|
}>;
|
|
2535
2544
|
declare const componentProps: z.ZodObject<{
|
|
2536
2545
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3131,6 +3140,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3131
3140
|
children: z.ZodOptional<z.ZodAny>;
|
|
3132
3141
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
3133
3142
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
3143
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
3134
3144
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3135
3145
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
3136
3146
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3333,6 +3343,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3333
3343
|
children?: any;
|
|
3334
3344
|
symbolName?: string | undefined;
|
|
3335
3345
|
doNotPlace?: boolean | undefined;
|
|
3346
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
3336
3347
|
}, {
|
|
3337
3348
|
name: string;
|
|
3338
3349
|
symbol?: SymbolProp | undefined;
|
|
@@ -3506,6 +3517,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3506
3517
|
children?: any;
|
|
3507
3518
|
symbolName?: string | undefined;
|
|
3508
3519
|
doNotPlace?: boolean | undefined;
|
|
3520
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
3509
3521
|
}>;
|
|
3510
3522
|
type ComponentProps = z.input<typeof componentProps>;
|
|
3511
3523
|
declare const lrPins: readonly ["pin1", "left", "pin2", "right"];
|
|
@@ -14212,6 +14224,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
14212
14224
|
children: z.ZodOptional<z.ZodAny>;
|
|
14213
14225
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
14214
14226
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
14227
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
14215
14228
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
14216
14229
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
14217
14230
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14664,6 +14677,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
14664
14677
|
children?: any;
|
|
14665
14678
|
symbolName?: string | undefined;
|
|
14666
14679
|
doNotPlace?: boolean | undefined;
|
|
14680
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
14667
14681
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
14668
14682
|
schPinArrangement?: {
|
|
14669
14683
|
leftSize?: number | undefined;
|
|
@@ -14914,6 +14928,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
14914
14928
|
children?: any;
|
|
14915
14929
|
symbolName?: string | undefined;
|
|
14916
14930
|
doNotPlace?: boolean | undefined;
|
|
14931
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
14917
14932
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
14918
14933
|
schPinArrangement?: {
|
|
14919
14934
|
leftSize?: number | undefined;
|
|
@@ -15594,6 +15609,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
15594
15609
|
children: z.ZodOptional<z.ZodAny>;
|
|
15595
15610
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
15596
15611
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
15612
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
15597
15613
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
15598
15614
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
15599
15615
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16046,6 +16062,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
16046
16062
|
children?: any;
|
|
16047
16063
|
symbolName?: string | undefined;
|
|
16048
16064
|
doNotPlace?: boolean | undefined;
|
|
16065
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
16049
16066
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
16050
16067
|
schPinArrangement?: {
|
|
16051
16068
|
leftSize?: number | undefined;
|
|
@@ -16296,6 +16313,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
16296
16313
|
children?: any;
|
|
16297
16314
|
symbolName?: string | undefined;
|
|
16298
16315
|
doNotPlace?: boolean | undefined;
|
|
16316
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
16299
16317
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
16300
16318
|
schPinArrangement?: {
|
|
16301
16319
|
leftSize?: number | undefined;
|
|
@@ -16975,6 +16993,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
16975
16993
|
children: z.ZodOptional<z.ZodAny>;
|
|
16976
16994
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
16977
16995
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
16996
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
16978
16997
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16979
16998
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
16980
16999
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17427,6 +17446,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
17427
17446
|
children?: any;
|
|
17428
17447
|
symbolName?: string | undefined;
|
|
17429
17448
|
doNotPlace?: boolean | undefined;
|
|
17449
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
17430
17450
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
17431
17451
|
schPinArrangement?: {
|
|
17432
17452
|
leftSize?: number | undefined;
|
|
@@ -17677,6 +17697,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
17677
17697
|
children?: any;
|
|
17678
17698
|
symbolName?: string | undefined;
|
|
17679
17699
|
doNotPlace?: boolean | undefined;
|
|
17700
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
17680
17701
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
17681
17702
|
schPinArrangement?: {
|
|
17682
17703
|
leftSize?: number | undefined;
|
|
@@ -18388,6 +18409,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
18388
18409
|
children: z.ZodOptional<z.ZodAny>;
|
|
18389
18410
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
18390
18411
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
18412
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
18391
18413
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
18392
18414
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
18393
18415
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18829,6 +18851,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
18829
18851
|
children?: any;
|
|
18830
18852
|
symbolName?: string | undefined;
|
|
18831
18853
|
doNotPlace?: boolean | undefined;
|
|
18854
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
18832
18855
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
18833
18856
|
schPinArrangement?: {
|
|
18834
18857
|
leftSize?: number | undefined;
|
|
@@ -19074,6 +19097,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
19074
19097
|
children?: any;
|
|
19075
19098
|
symbolName?: string | undefined;
|
|
19076
19099
|
doNotPlace?: boolean | undefined;
|
|
19100
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
19077
19101
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
19078
19102
|
schPinArrangement?: {
|
|
19079
19103
|
leftSize?: number | undefined;
|
|
@@ -19757,6 +19781,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
19757
19781
|
children: z.ZodOptional<z.ZodAny>;
|
|
19758
19782
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
19759
19783
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
19784
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
19760
19785
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
19761
19786
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
19762
19787
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -20201,6 +20226,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
20201
20226
|
children?: any;
|
|
20202
20227
|
symbolName?: string | undefined;
|
|
20203
20228
|
doNotPlace?: boolean | undefined;
|
|
20229
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
20204
20230
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
20205
20231
|
schPinArrangement?: {
|
|
20206
20232
|
leftSize?: number | undefined;
|
|
@@ -20448,6 +20474,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
20448
20474
|
children?: any;
|
|
20449
20475
|
symbolName?: string | undefined;
|
|
20450
20476
|
doNotPlace?: boolean | undefined;
|
|
20477
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
20451
20478
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
20452
20479
|
schPinArrangement?: {
|
|
20453
20480
|
leftSize?: number | undefined;
|
|
@@ -21142,6 +21169,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
21142
21169
|
children: z.ZodOptional<z.ZodAny>;
|
|
21143
21170
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
21144
21171
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
21172
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
21145
21173
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21146
21174
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
21147
21175
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -21481,6 +21509,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
21481
21509
|
children?: any;
|
|
21482
21510
|
symbolName?: string | undefined;
|
|
21483
21511
|
doNotPlace?: boolean | undefined;
|
|
21512
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
21484
21513
|
schPinSpacing?: number | undefined;
|
|
21485
21514
|
schPinStyle?: Record<string, {
|
|
21486
21515
|
marginLeft?: number | undefined;
|
|
@@ -21698,6 +21727,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
21698
21727
|
children?: any;
|
|
21699
21728
|
symbolName?: string | undefined;
|
|
21700
21729
|
doNotPlace?: boolean | undefined;
|
|
21730
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
21701
21731
|
schPinSpacing?: string | number | undefined;
|
|
21702
21732
|
schPinStyle?: Record<string, {
|
|
21703
21733
|
marginLeft?: string | number | undefined;
|
|
@@ -22370,6 +22400,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
22370
22400
|
children: z.ZodOptional<z.ZodAny>;
|
|
22371
22401
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
22372
22402
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
22403
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
22373
22404
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22374
22405
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
22375
22406
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -22579,6 +22610,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
22579
22610
|
children?: any;
|
|
22580
22611
|
symbolName?: string | undefined;
|
|
22581
22612
|
doNotPlace?: boolean | undefined;
|
|
22613
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
22582
22614
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
22583
22615
|
voltageRating?: string | number | undefined;
|
|
22584
22616
|
schShowRatings?: boolean | undefined;
|
|
@@ -22757,6 +22789,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
22757
22789
|
children?: any;
|
|
22758
22790
|
symbolName?: string | undefined;
|
|
22759
22791
|
doNotPlace?: boolean | undefined;
|
|
22792
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
22760
22793
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
22761
22794
|
voltageRating?: string | number | undefined;
|
|
22762
22795
|
schShowRatings?: boolean | undefined;
|
|
@@ -24072,6 +24105,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
24072
24105
|
children: z.ZodOptional<z.ZodAny>;
|
|
24073
24106
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
24074
24107
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
24108
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
24075
24109
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24076
24110
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
24077
24111
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -24283,6 +24317,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
24283
24317
|
children?: any;
|
|
24284
24318
|
symbolName?: string | undefined;
|
|
24285
24319
|
doNotPlace?: boolean | undefined;
|
|
24320
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
24286
24321
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
24287
24322
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
24288
24323
|
pullupFor?: string | undefined;
|
|
@@ -24463,6 +24498,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
24463
24498
|
children?: any;
|
|
24464
24499
|
symbolName?: string | undefined;
|
|
24465
24500
|
doNotPlace?: boolean | undefined;
|
|
24501
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
24466
24502
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
24467
24503
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
24468
24504
|
pullupFor?: string | undefined;
|
|
@@ -25076,6 +25112,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
25076
25112
|
children: z.ZodOptional<z.ZodAny>;
|
|
25077
25113
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
25078
25114
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
25115
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
25079
25116
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25080
25117
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
25081
25118
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -25282,6 +25319,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
25282
25319
|
children?: any;
|
|
25283
25320
|
symbolName?: string | undefined;
|
|
25284
25321
|
doNotPlace?: boolean | undefined;
|
|
25322
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
25285
25323
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
25286
25324
|
}, {
|
|
25287
25325
|
name: string;
|
|
@@ -25457,6 +25495,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
25457
25495
|
children?: any;
|
|
25458
25496
|
symbolName?: string | undefined;
|
|
25459
25497
|
doNotPlace?: boolean | undefined;
|
|
25498
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
25460
25499
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
25461
25500
|
}>;
|
|
25462
25501
|
|
|
@@ -26071,6 +26110,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
26071
26110
|
children: z.ZodOptional<z.ZodAny>;
|
|
26072
26111
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
26073
26112
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
26113
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
26074
26114
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
26075
26115
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
26076
26116
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26283,6 +26323,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
26283
26323
|
children?: any;
|
|
26284
26324
|
symbolName?: string | undefined;
|
|
26285
26325
|
doNotPlace?: boolean | undefined;
|
|
26326
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
26286
26327
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
26287
26328
|
manufacturerPartNumber?: string | undefined;
|
|
26288
26329
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -26463,6 +26504,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
26463
26504
|
children?: any;
|
|
26464
26505
|
symbolName?: string | undefined;
|
|
26465
26506
|
doNotPlace?: boolean | undefined;
|
|
26507
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
26466
26508
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
26467
26509
|
manufacturerPartNumber?: string | undefined;
|
|
26468
26510
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -27075,6 +27117,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
27075
27117
|
children: z.ZodOptional<z.ZodAny>;
|
|
27076
27118
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
27077
27119
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
27120
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
27078
27121
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27079
27122
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
27080
27123
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -27283,6 +27326,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
27283
27326
|
children?: any;
|
|
27284
27327
|
symbolName?: string | undefined;
|
|
27285
27328
|
doNotPlace?: boolean | undefined;
|
|
27329
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
27286
27330
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
27287
27331
|
}, {
|
|
27288
27332
|
name: string;
|
|
@@ -27459,6 +27503,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
27459
27503
|
children?: any;
|
|
27460
27504
|
symbolName?: string | undefined;
|
|
27461
27505
|
doNotPlace?: boolean | undefined;
|
|
27506
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
27462
27507
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
27463
27508
|
}>;
|
|
27464
27509
|
|
|
@@ -29435,6 +29480,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
29435
29480
|
children: z.ZodOptional<z.ZodAny>;
|
|
29436
29481
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
29437
29482
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
29483
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
29438
29484
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29439
29485
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
29440
29486
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -29652,6 +29698,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
29652
29698
|
children?: any;
|
|
29653
29699
|
symbolName?: string | undefined;
|
|
29654
29700
|
doNotPlace?: boolean | undefined;
|
|
29701
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
29655
29702
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
29656
29703
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
29657
29704
|
maxVoltageRating?: number | undefined;
|
|
@@ -29834,6 +29881,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
29834
29881
|
children?: any;
|
|
29835
29882
|
symbolName?: string | undefined;
|
|
29836
29883
|
doNotPlace?: boolean | undefined;
|
|
29884
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
29837
29885
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
29838
29886
|
schShowRatings?: boolean | undefined;
|
|
29839
29887
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -32595,6 +32643,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
32595
32643
|
children: z.ZodOptional<z.ZodAny>;
|
|
32596
32644
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
32597
32645
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
32646
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
32598
32647
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
32599
32648
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
32600
32649
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -32802,6 +32851,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
32802
32851
|
children?: any;
|
|
32803
32852
|
symbolName?: string | undefined;
|
|
32804
32853
|
doNotPlace?: boolean | undefined;
|
|
32854
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
32805
32855
|
voltage?: number | undefined;
|
|
32806
32856
|
capacity?: number | undefined;
|
|
32807
32857
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
@@ -32979,6 +33029,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
32979
33029
|
children?: any;
|
|
32980
33030
|
symbolName?: string | undefined;
|
|
32981
33031
|
doNotPlace?: boolean | undefined;
|
|
33032
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
32982
33033
|
voltage?: string | number | undefined;
|
|
32983
33034
|
capacity?: string | number | undefined;
|
|
32984
33035
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
@@ -33666,6 +33717,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
33666
33717
|
children: z.ZodOptional<z.ZodAny>;
|
|
33667
33718
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
33668
33719
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
33720
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
33669
33721
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33670
33722
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
33671
33723
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -34016,6 +34068,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
34016
34068
|
children?: any;
|
|
34017
34069
|
symbolName?: string | undefined;
|
|
34018
34070
|
doNotPlace?: boolean | undefined;
|
|
34071
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
34019
34072
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
34020
34073
|
schPinArrangement?: {
|
|
34021
34074
|
leftSize?: number | undefined;
|
|
@@ -34241,6 +34294,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
34241
34294
|
children?: any;
|
|
34242
34295
|
symbolName?: string | undefined;
|
|
34243
34296
|
doNotPlace?: boolean | undefined;
|
|
34297
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
34244
34298
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
34245
34299
|
schPinArrangement?: {
|
|
34246
34300
|
leftSize?: number | undefined;
|
|
@@ -34965,6 +35019,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
34965
35019
|
children: z.ZodOptional<z.ZodAny>;
|
|
34966
35020
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
34967
35021
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
35022
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
34968
35023
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34969
35024
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
34970
35025
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -35417,6 +35472,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
35417
35472
|
children?: any;
|
|
35418
35473
|
symbolName?: string | undefined;
|
|
35419
35474
|
doNotPlace?: boolean | undefined;
|
|
35475
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
35420
35476
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
35421
35477
|
schPinArrangement?: {
|
|
35422
35478
|
leftSize?: number | undefined;
|
|
@@ -35667,6 +35723,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
35667
35723
|
children?: any;
|
|
35668
35724
|
symbolName?: string | undefined;
|
|
35669
35725
|
doNotPlace?: boolean | undefined;
|
|
35726
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
35670
35727
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
35671
35728
|
schPinArrangement?: {
|
|
35672
35729
|
leftSize?: number | undefined;
|
|
@@ -37637,6 +37694,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
37637
37694
|
children: z.ZodOptional<z.ZodAny>;
|
|
37638
37695
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
37639
37696
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
37697
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
37640
37698
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
37641
37699
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
37642
37700
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -37843,6 +37901,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
37843
37901
|
children?: any;
|
|
37844
37902
|
symbolName?: string | undefined;
|
|
37845
37903
|
doNotPlace?: boolean | undefined;
|
|
37904
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
37846
37905
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
37847
37906
|
}, {
|
|
37848
37907
|
type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
|
|
@@ -38018,6 +38077,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
38018
38077
|
children?: any;
|
|
38019
38078
|
symbolName?: string | undefined;
|
|
38020
38079
|
doNotPlace?: boolean | undefined;
|
|
38080
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
38021
38081
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
38022
38082
|
}>;
|
|
38023
38083
|
declare const transistorPins: readonly ["pin1", "emitter", "pin2", "collector", "pin3", "base"];
|
|
@@ -38626,6 +38686,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
38626
38686
|
children: z.ZodOptional<z.ZodAny>;
|
|
38627
38687
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
38628
38688
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
38689
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
38629
38690
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
38630
38691
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
38631
38692
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -38833,6 +38894,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
38833
38894
|
children?: any;
|
|
38834
38895
|
symbolName?: string | undefined;
|
|
38835
38896
|
doNotPlace?: boolean | undefined;
|
|
38897
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
38836
38898
|
}, {
|
|
38837
38899
|
name: string;
|
|
38838
38900
|
channelType: "n" | "p";
|
|
@@ -39008,6 +39070,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
39008
39070
|
children?: any;
|
|
39009
39071
|
symbolName?: string | undefined;
|
|
39010
39072
|
doNotPlace?: boolean | undefined;
|
|
39073
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
39011
39074
|
}>;
|
|
39012
39075
|
declare const mosfetPins: readonly ["pin1", "drain", "pin2", "source", "pin3", "gate"];
|
|
39013
39076
|
type MosfetPinLabels = (typeof mosfetPins)[number];
|
|
@@ -39619,6 +39682,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
39619
39682
|
children: z.ZodOptional<z.ZodAny>;
|
|
39620
39683
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
39621
39684
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
39685
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
39622
39686
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
39623
39687
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
39624
39688
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -39827,6 +39891,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
39827
39891
|
children?: any;
|
|
39828
39892
|
symbolName?: string | undefined;
|
|
39829
39893
|
doNotPlace?: boolean | undefined;
|
|
39894
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
39830
39895
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
39831
39896
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
39832
39897
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -40004,6 +40069,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
40004
40069
|
children?: any;
|
|
40005
40070
|
symbolName?: string | undefined;
|
|
40006
40071
|
doNotPlace?: boolean | undefined;
|
|
40072
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
40007
40073
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
40008
40074
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
40009
40075
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -40608,6 +40674,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
40608
40674
|
children: z.ZodOptional<z.ZodAny>;
|
|
40609
40675
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
40610
40676
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
40677
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
40611
40678
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
40612
40679
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
40613
40680
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -40821,6 +40888,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
40821
40888
|
children?: any;
|
|
40822
40889
|
symbolName?: string | undefined;
|
|
40823
40890
|
doNotPlace?: boolean | undefined;
|
|
40891
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
40824
40892
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
40825
40893
|
standard?: boolean | undefined;
|
|
40826
40894
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -41002,6 +41070,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
41002
41070
|
children?: any;
|
|
41003
41071
|
symbolName?: string | undefined;
|
|
41004
41072
|
doNotPlace?: boolean | undefined;
|
|
41073
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
41005
41074
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
41006
41075
|
standard?: boolean | undefined;
|
|
41007
41076
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -41183,6 +41252,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
41183
41252
|
children?: any;
|
|
41184
41253
|
symbolName?: string | undefined;
|
|
41185
41254
|
doNotPlace?: boolean | undefined;
|
|
41255
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
41186
41256
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
41187
41257
|
standard?: boolean | undefined;
|
|
41188
41258
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -41364,6 +41434,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
41364
41434
|
children?: any;
|
|
41365
41435
|
symbolName?: string | undefined;
|
|
41366
41436
|
doNotPlace?: boolean | undefined;
|
|
41437
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
41367
41438
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
41368
41439
|
standard?: boolean | undefined;
|
|
41369
41440
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -41551,6 +41622,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
41551
41622
|
children?: any;
|
|
41552
41623
|
symbolName?: string | undefined;
|
|
41553
41624
|
doNotPlace?: boolean | undefined;
|
|
41625
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
41554
41626
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
41555
41627
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
41556
41628
|
}, {
|
|
@@ -41726,6 +41798,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
41726
41798
|
children?: any;
|
|
41727
41799
|
symbolName?: string | undefined;
|
|
41728
41800
|
doNotPlace?: boolean | undefined;
|
|
41801
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
41729
41802
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
41730
41803
|
standard?: boolean | undefined;
|
|
41731
41804
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -42358,6 +42431,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
42358
42431
|
children: z.ZodOptional<z.ZodAny>;
|
|
42359
42432
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
42360
42433
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
42434
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
42361
42435
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
42362
42436
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
42363
42437
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -42567,6 +42641,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
42567
42641
|
children?: any;
|
|
42568
42642
|
symbolName?: string | undefined;
|
|
42569
42643
|
doNotPlace?: boolean | undefined;
|
|
42644
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
42570
42645
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
42571
42646
|
color?: string | undefined;
|
|
42572
42647
|
wavelength?: string | undefined;
|
|
@@ -42746,6 +42821,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
42746
42821
|
children?: any;
|
|
42747
42822
|
symbolName?: string | undefined;
|
|
42748
42823
|
doNotPlace?: boolean | undefined;
|
|
42824
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
42749
42825
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
42750
42826
|
color?: string | undefined;
|
|
42751
42827
|
wavelength?: string | undefined;
|
|
@@ -43363,6 +43439,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
43363
43439
|
children: z.ZodOptional<z.ZodAny>;
|
|
43364
43440
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
43365
43441
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
43442
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
43366
43443
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
43367
43444
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
43368
43445
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -43574,6 +43651,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
43574
43651
|
children?: any;
|
|
43575
43652
|
symbolName?: string | undefined;
|
|
43576
43653
|
doNotPlace?: boolean | undefined;
|
|
43654
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
43577
43655
|
spst?: boolean | undefined;
|
|
43578
43656
|
spdt?: boolean | undefined;
|
|
43579
43657
|
dpst?: boolean | undefined;
|
|
@@ -43752,6 +43830,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
43752
43830
|
children?: any;
|
|
43753
43831
|
symbolName?: string | undefined;
|
|
43754
43832
|
doNotPlace?: boolean | undefined;
|
|
43833
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
43755
43834
|
spst?: boolean | undefined;
|
|
43756
43835
|
spdt?: boolean | undefined;
|
|
43757
43836
|
dpst?: boolean | undefined;
|
|
@@ -43931,6 +44010,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
43931
44010
|
children?: any;
|
|
43932
44011
|
symbolName?: string | undefined;
|
|
43933
44012
|
doNotPlace?: boolean | undefined;
|
|
44013
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
43934
44014
|
spst?: boolean | undefined;
|
|
43935
44015
|
spdt?: boolean | undefined;
|
|
43936
44016
|
dpst?: boolean | undefined;
|
|
@@ -44931,6 +45011,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
44931
45011
|
children: z.ZodOptional<z.ZodAny>;
|
|
44932
45012
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
44933
45013
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
45014
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
44934
45015
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
44935
45016
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
44936
45017
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -45141,6 +45222,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
45141
45222
|
children?: any;
|
|
45142
45223
|
symbolName?: string | undefined;
|
|
45143
45224
|
doNotPlace?: boolean | undefined;
|
|
45225
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
45144
45226
|
width?: number | undefined;
|
|
45145
45227
|
height?: number | undefined;
|
|
45146
45228
|
holeDiameter?: number | undefined;
|
|
@@ -45319,6 +45401,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
45319
45401
|
children?: any;
|
|
45320
45402
|
symbolName?: string | undefined;
|
|
45321
45403
|
doNotPlace?: boolean | undefined;
|
|
45404
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
45322
45405
|
width?: string | number | undefined;
|
|
45323
45406
|
height?: string | number | undefined;
|
|
45324
45407
|
holeDiameter?: string | number | undefined;
|
|
@@ -45497,6 +45580,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
45497
45580
|
children?: any;
|
|
45498
45581
|
symbolName?: string | undefined;
|
|
45499
45582
|
doNotPlace?: boolean | undefined;
|
|
45583
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
45500
45584
|
width?: number | undefined;
|
|
45501
45585
|
height?: number | undefined;
|
|
45502
45586
|
holeDiameter?: number | undefined;
|
|
@@ -45675,6 +45759,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
45675
45759
|
children?: any;
|
|
45676
45760
|
symbolName?: string | undefined;
|
|
45677
45761
|
doNotPlace?: boolean | undefined;
|
|
45762
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
45678
45763
|
width?: string | number | undefined;
|
|
45679
45764
|
height?: string | number | undefined;
|
|
45680
45765
|
holeDiameter?: string | number | undefined;
|
|
@@ -46632,6 +46717,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
46632
46717
|
children: z.ZodOptional<z.ZodAny>;
|
|
46633
46718
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
46634
46719
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
46720
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
46635
46721
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
46636
46722
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
46637
46723
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -46837,6 +46923,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
46837
46923
|
children?: any;
|
|
46838
46924
|
symbolName?: string | undefined;
|
|
46839
46925
|
doNotPlace?: boolean | undefined;
|
|
46926
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
46840
46927
|
}, {
|
|
46841
46928
|
name: string;
|
|
46842
46929
|
voltage: string | number;
|
|
@@ -47011,6 +47098,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
47011
47098
|
children?: any;
|
|
47012
47099
|
symbolName?: string | undefined;
|
|
47013
47100
|
doNotPlace?: boolean | undefined;
|
|
47101
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
47014
47102
|
}>;
|
|
47015
47103
|
type PowerSourceProps = z.input<typeof powerSourceProps>;
|
|
47016
47104
|
|
|
@@ -47625,6 +47713,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
47625
47713
|
children: z.ZodOptional<z.ZodAny>;
|
|
47626
47714
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
47627
47715
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
47716
|
+
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
47628
47717
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
47629
47718
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
47630
47719
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -47835,6 +47924,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
47835
47924
|
children?: any;
|
|
47836
47925
|
symbolName?: string | undefined;
|
|
47837
47926
|
doNotPlace?: boolean | undefined;
|
|
47927
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
47838
47928
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
47839
47929
|
voltage?: number | undefined;
|
|
47840
47930
|
frequency?: number | undefined;
|
|
@@ -48015,6 +48105,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
48015
48105
|
children?: any;
|
|
48016
48106
|
symbolName?: string | undefined;
|
|
48017
48107
|
doNotPlace?: boolean | undefined;
|
|
48108
|
+
obstructsWithinBounds?: boolean | undefined;
|
|
48018
48109
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
48019
48110
|
voltage?: string | number | undefined;
|
|
48020
48111
|
frequency?: string | number | undefined;
|