@tscircuit/props 0.0.415 → 0.0.416
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 +95 -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
|
@@ -1771,6 +1771,10 @@ interface CommonComponentProps<PinLabel extends string = string> extends CommonL
|
|
|
1771
1771
|
* chips can be placed between the pin headers) or for tall modules where chips fit underneath.
|
|
1772
1772
|
*/
|
|
1773
1773
|
obstructsWithinBounds?: boolean;
|
|
1774
|
+
/**
|
|
1775
|
+
* Whether to show this component's CAD model as translucent in the 3D viewer.
|
|
1776
|
+
*/
|
|
1777
|
+
showAsTranslucentModel?: boolean;
|
|
1774
1778
|
}
|
|
1775
1779
|
declare const commonComponentProps: z.ZodObject<{
|
|
1776
1780
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -2424,6 +2428,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2424
2428
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
2425
2429
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
2426
2430
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
2431
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
2427
2432
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2428
2433
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
2429
2434
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2649,6 +2654,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2649
2654
|
symbolName?: string | undefined;
|
|
2650
2655
|
doNotPlace?: boolean | undefined;
|
|
2651
2656
|
obstructsWithinBounds?: boolean | undefined;
|
|
2657
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
2652
2658
|
}, {
|
|
2653
2659
|
name: string;
|
|
2654
2660
|
symbol?: SymbolProp | undefined;
|
|
@@ -2842,6 +2848,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2842
2848
|
symbolName?: string | undefined;
|
|
2843
2849
|
doNotPlace?: boolean | undefined;
|
|
2844
2850
|
obstructsWithinBounds?: boolean | undefined;
|
|
2851
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
2845
2852
|
}>;
|
|
2846
2853
|
declare const componentProps: z.ZodObject<{
|
|
2847
2854
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3495,6 +3502,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3495
3502
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
3496
3503
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
3497
3504
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
3505
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
3498
3506
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3499
3507
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
3500
3508
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3720,6 +3728,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3720
3728
|
symbolName?: string | undefined;
|
|
3721
3729
|
doNotPlace?: boolean | undefined;
|
|
3722
3730
|
obstructsWithinBounds?: boolean | undefined;
|
|
3731
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
3723
3732
|
}, {
|
|
3724
3733
|
name: string;
|
|
3725
3734
|
symbol?: SymbolProp | undefined;
|
|
@@ -3913,6 +3922,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3913
3922
|
symbolName?: string | undefined;
|
|
3914
3923
|
doNotPlace?: boolean | undefined;
|
|
3915
3924
|
obstructsWithinBounds?: boolean | undefined;
|
|
3925
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
3916
3926
|
}>;
|
|
3917
3927
|
type ComponentProps = z.input<typeof componentProps>;
|
|
3918
3928
|
declare const lrPins: readonly ["pin1", "left", "pin2", "right"];
|
|
@@ -15857,6 +15867,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
15857
15867
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
15858
15868
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
15859
15869
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
15870
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
15860
15871
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
15861
15872
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
15862
15873
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16332,6 +16343,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
16332
16343
|
symbolName?: string | undefined;
|
|
16333
16344
|
doNotPlace?: boolean | undefined;
|
|
16334
16345
|
obstructsWithinBounds?: boolean | undefined;
|
|
16346
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
16335
16347
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
16336
16348
|
schPinArrangement?: {
|
|
16337
16349
|
leftSize?: number | undefined;
|
|
@@ -16602,6 +16614,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
16602
16614
|
symbolName?: string | undefined;
|
|
16603
16615
|
doNotPlace?: boolean | undefined;
|
|
16604
16616
|
obstructsWithinBounds?: boolean | undefined;
|
|
16617
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
16605
16618
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
16606
16619
|
schPinArrangement?: {
|
|
16607
16620
|
leftSize?: number | undefined;
|
|
@@ -17335,6 +17348,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
17335
17348
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
17336
17349
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
17337
17350
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
17351
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
17338
17352
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
17339
17353
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
17340
17354
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17810,6 +17824,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
17810
17824
|
symbolName?: string | undefined;
|
|
17811
17825
|
doNotPlace?: boolean | undefined;
|
|
17812
17826
|
obstructsWithinBounds?: boolean | undefined;
|
|
17827
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
17813
17828
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
17814
17829
|
schPinArrangement?: {
|
|
17815
17830
|
leftSize?: number | undefined;
|
|
@@ -18080,6 +18095,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
18080
18095
|
symbolName?: string | undefined;
|
|
18081
18096
|
doNotPlace?: boolean | undefined;
|
|
18082
18097
|
obstructsWithinBounds?: boolean | undefined;
|
|
18098
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
18083
18099
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
18084
18100
|
schPinArrangement?: {
|
|
18085
18101
|
leftSize?: number | undefined;
|
|
@@ -18812,6 +18828,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
18812
18828
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
18813
18829
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
18814
18830
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
18831
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
18815
18832
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
18816
18833
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
18817
18834
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -19287,6 +19304,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
19287
19304
|
symbolName?: string | undefined;
|
|
19288
19305
|
doNotPlace?: boolean | undefined;
|
|
19289
19306
|
obstructsWithinBounds?: boolean | undefined;
|
|
19307
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
19290
19308
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
19291
19309
|
schPinArrangement?: {
|
|
19292
19310
|
leftSize?: number | undefined;
|
|
@@ -19557,6 +19575,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
19557
19575
|
symbolName?: string | undefined;
|
|
19558
19576
|
doNotPlace?: boolean | undefined;
|
|
19559
19577
|
obstructsWithinBounds?: boolean | undefined;
|
|
19578
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
19560
19579
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
19561
19580
|
schPinArrangement?: {
|
|
19562
19581
|
leftSize?: number | undefined;
|
|
@@ -20321,6 +20340,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
20321
20340
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
20322
20341
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
20323
20342
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
20343
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
20324
20344
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
20325
20345
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
20326
20346
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -20785,6 +20805,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
20785
20805
|
symbolName?: string | undefined;
|
|
20786
20806
|
doNotPlace?: boolean | undefined;
|
|
20787
20807
|
obstructsWithinBounds?: boolean | undefined;
|
|
20808
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
20788
20809
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
20789
20810
|
schPinArrangement?: {
|
|
20790
20811
|
leftSize?: number | undefined;
|
|
@@ -21050,6 +21071,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
21050
21071
|
symbolName?: string | undefined;
|
|
21051
21072
|
doNotPlace?: boolean | undefined;
|
|
21052
21073
|
obstructsWithinBounds?: boolean | undefined;
|
|
21074
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
21053
21075
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
21054
21076
|
schPinArrangement?: {
|
|
21055
21077
|
leftSize?: number | undefined;
|
|
@@ -21786,6 +21808,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
21786
21808
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
21787
21809
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
21788
21810
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
21811
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
21789
21812
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21790
21813
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
21791
21814
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -22253,6 +22276,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
22253
22276
|
symbolName?: string | undefined;
|
|
22254
22277
|
doNotPlace?: boolean | undefined;
|
|
22255
22278
|
obstructsWithinBounds?: boolean | undefined;
|
|
22279
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
22256
22280
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
22257
22281
|
schPinArrangement?: {
|
|
22258
22282
|
leftSize?: number | undefined;
|
|
@@ -22520,6 +22544,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
22520
22544
|
symbolName?: string | undefined;
|
|
22521
22545
|
doNotPlace?: boolean | undefined;
|
|
22522
22546
|
obstructsWithinBounds?: boolean | undefined;
|
|
22547
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
22523
22548
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
22524
22549
|
schPinArrangement?: {
|
|
22525
22550
|
leftSize?: number | undefined;
|
|
@@ -23267,6 +23292,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
23267
23292
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
23268
23293
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
23269
23294
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
23295
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
23270
23296
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23271
23297
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
23272
23298
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -23629,6 +23655,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
23629
23655
|
symbolName?: string | undefined;
|
|
23630
23656
|
doNotPlace?: boolean | undefined;
|
|
23631
23657
|
obstructsWithinBounds?: boolean | undefined;
|
|
23658
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
23632
23659
|
schPinSpacing?: number | undefined;
|
|
23633
23660
|
schPinStyle?: Record<string, {
|
|
23634
23661
|
marginLeft?: number | undefined;
|
|
@@ -23866,6 +23893,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
23866
23893
|
symbolName?: string | undefined;
|
|
23867
23894
|
doNotPlace?: boolean | undefined;
|
|
23868
23895
|
obstructsWithinBounds?: boolean | undefined;
|
|
23896
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
23869
23897
|
schPinSpacing?: string | number | undefined;
|
|
23870
23898
|
schPinStyle?: Record<string, {
|
|
23871
23899
|
marginLeft?: string | number | undefined;
|
|
@@ -24567,6 +24595,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
24567
24595
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
24568
24596
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
24569
24597
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
24598
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
24570
24599
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24571
24600
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
24572
24601
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -24794,6 +24823,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
24794
24823
|
symbolName?: string | undefined;
|
|
24795
24824
|
doNotPlace?: boolean | undefined;
|
|
24796
24825
|
obstructsWithinBounds?: boolean | undefined;
|
|
24826
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
24797
24827
|
standard?: "TSC0001_36P_XALT_2025_11" | undefined;
|
|
24798
24828
|
}, {
|
|
24799
24829
|
name: string;
|
|
@@ -24988,6 +25018,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
24988
25018
|
symbolName?: string | undefined;
|
|
24989
25019
|
doNotPlace?: boolean | undefined;
|
|
24990
25020
|
obstructsWithinBounds?: boolean | undefined;
|
|
25021
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
24991
25022
|
standard?: "TSC0001_36P_XALT_2025_11" | undefined;
|
|
24992
25023
|
}>;
|
|
24993
25024
|
|
|
@@ -25670,6 +25701,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
25670
25701
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
25671
25702
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
25672
25703
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
25704
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
25673
25705
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
25674
25706
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
25675
25707
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -25902,6 +25934,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
25902
25934
|
symbolName?: string | undefined;
|
|
25903
25935
|
doNotPlace?: boolean | undefined;
|
|
25904
25936
|
obstructsWithinBounds?: boolean | undefined;
|
|
25937
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
25905
25938
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
25906
25939
|
voltageRating?: string | number | undefined;
|
|
25907
25940
|
schShowRatings?: boolean | undefined;
|
|
@@ -26100,6 +26133,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
26100
26133
|
symbolName?: string | undefined;
|
|
26101
26134
|
doNotPlace?: boolean | undefined;
|
|
26102
26135
|
obstructsWithinBounds?: boolean | undefined;
|
|
26136
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
26103
26137
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
26104
26138
|
voltageRating?: string | number | undefined;
|
|
26105
26139
|
schShowRatings?: boolean | undefined;
|
|
@@ -28156,6 +28190,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
28156
28190
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
28157
28191
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
28158
28192
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
28193
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
28159
28194
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28160
28195
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
28161
28196
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -28390,6 +28425,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
28390
28425
|
symbolName?: string | undefined;
|
|
28391
28426
|
doNotPlace?: boolean | undefined;
|
|
28392
28427
|
obstructsWithinBounds?: boolean | undefined;
|
|
28428
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
28393
28429
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
28394
28430
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
28395
28431
|
pullupFor?: string | undefined;
|
|
@@ -28590,6 +28626,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
28590
28626
|
symbolName?: string | undefined;
|
|
28591
28627
|
doNotPlace?: boolean | undefined;
|
|
28592
28628
|
obstructsWithinBounds?: boolean | undefined;
|
|
28629
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
28593
28630
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
28594
28631
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
28595
28632
|
pullupFor?: string | undefined;
|
|
@@ -29256,6 +29293,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
29256
29293
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
29257
29294
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
29258
29295
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
29296
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
29259
29297
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
29260
29298
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
29261
29299
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -29485,6 +29523,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
29485
29523
|
symbolName?: string | undefined;
|
|
29486
29524
|
doNotPlace?: boolean | undefined;
|
|
29487
29525
|
obstructsWithinBounds?: boolean | undefined;
|
|
29526
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
29488
29527
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
29489
29528
|
}, {
|
|
29490
29529
|
name: string;
|
|
@@ -29680,6 +29719,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
29680
29719
|
symbolName?: string | undefined;
|
|
29681
29720
|
doNotPlace?: boolean | undefined;
|
|
29682
29721
|
obstructsWithinBounds?: boolean | undefined;
|
|
29722
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
29683
29723
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
29684
29724
|
}>;
|
|
29685
29725
|
|
|
@@ -30347,6 +30387,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
30347
30387
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
30348
30388
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
30349
30389
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
30390
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
30350
30391
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
30351
30392
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
30352
30393
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -30582,6 +30623,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
30582
30623
|
symbolName?: string | undefined;
|
|
30583
30624
|
doNotPlace?: boolean | undefined;
|
|
30584
30625
|
obstructsWithinBounds?: boolean | undefined;
|
|
30626
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
30585
30627
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
30586
30628
|
manufacturerPartNumber?: string | undefined;
|
|
30587
30629
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -30782,6 +30824,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
30782
30824
|
symbolName?: string | undefined;
|
|
30783
30825
|
doNotPlace?: boolean | undefined;
|
|
30784
30826
|
obstructsWithinBounds?: boolean | undefined;
|
|
30827
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
30785
30828
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
30786
30829
|
manufacturerPartNumber?: string | undefined;
|
|
30787
30830
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -31447,6 +31490,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
31447
31490
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
31448
31491
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
31449
31492
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
31493
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
31450
31494
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31451
31495
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
31452
31496
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -31678,6 +31722,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
31678
31722
|
symbolName?: string | undefined;
|
|
31679
31723
|
doNotPlace?: boolean | undefined;
|
|
31680
31724
|
obstructsWithinBounds?: boolean | undefined;
|
|
31725
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
31681
31726
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
31682
31727
|
}, {
|
|
31683
31728
|
name: string;
|
|
@@ -31874,6 +31919,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
31874
31919
|
symbolName?: string | undefined;
|
|
31875
31920
|
doNotPlace?: boolean | undefined;
|
|
31876
31921
|
obstructsWithinBounds?: boolean | undefined;
|
|
31922
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
31877
31923
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
31878
31924
|
}>;
|
|
31879
31925
|
|
|
@@ -33932,6 +33978,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
33932
33978
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
33933
33979
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
33934
33980
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
33981
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
33935
33982
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
33936
33983
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
33937
33984
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -34172,6 +34219,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
34172
34219
|
symbolName?: string | undefined;
|
|
34173
34220
|
doNotPlace?: boolean | undefined;
|
|
34174
34221
|
obstructsWithinBounds?: boolean | undefined;
|
|
34222
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
34175
34223
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
34176
34224
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
34177
34225
|
maxVoltageRating?: number | undefined;
|
|
@@ -34374,6 +34422,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
34374
34422
|
symbolName?: string | undefined;
|
|
34375
34423
|
doNotPlace?: boolean | undefined;
|
|
34376
34424
|
obstructsWithinBounds?: boolean | undefined;
|
|
34425
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
34377
34426
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
34378
34427
|
schShowRatings?: boolean | undefined;
|
|
34379
34428
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -38608,6 +38657,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
38608
38657
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
38609
38658
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
38610
38659
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
38660
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
38611
38661
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
38612
38662
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
38613
38663
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -38838,6 +38888,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
38838
38888
|
symbolName?: string | undefined;
|
|
38839
38889
|
doNotPlace?: boolean | undefined;
|
|
38840
38890
|
obstructsWithinBounds?: boolean | undefined;
|
|
38891
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
38841
38892
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
38842
38893
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
38843
38894
|
capacity?: number | undefined;
|
|
@@ -39035,6 +39086,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
39035
39086
|
symbolName?: string | undefined;
|
|
39036
39087
|
doNotPlace?: boolean | undefined;
|
|
39037
39088
|
obstructsWithinBounds?: boolean | undefined;
|
|
39089
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
39038
39090
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
39039
39091
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
39040
39092
|
capacity?: string | number | undefined;
|
|
@@ -39775,6 +39827,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
39775
39827
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
39776
39828
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
39777
39829
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
39830
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
39778
39831
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
39779
39832
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
39780
39833
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -40148,6 +40201,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
40148
40201
|
symbolName?: string | undefined;
|
|
40149
40202
|
doNotPlace?: boolean | undefined;
|
|
40150
40203
|
obstructsWithinBounds?: boolean | undefined;
|
|
40204
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
40151
40205
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
40152
40206
|
schPinArrangement?: {
|
|
40153
40207
|
leftSize?: number | undefined;
|
|
@@ -40393,6 +40447,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
40393
40447
|
symbolName?: string | undefined;
|
|
40394
40448
|
doNotPlace?: boolean | undefined;
|
|
40395
40449
|
obstructsWithinBounds?: boolean | undefined;
|
|
40450
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
40396
40451
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
40397
40452
|
schPinArrangement?: {
|
|
40398
40453
|
leftSize?: number | undefined;
|
|
@@ -41170,6 +41225,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
41170
41225
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
41171
41226
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
41172
41227
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
41228
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
41173
41229
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
41174
41230
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
41175
41231
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -41645,6 +41701,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
41645
41701
|
symbolName?: string | undefined;
|
|
41646
41702
|
doNotPlace?: boolean | undefined;
|
|
41647
41703
|
obstructsWithinBounds?: boolean | undefined;
|
|
41704
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
41648
41705
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
41649
41706
|
schPinArrangement?: {
|
|
41650
41707
|
leftSize?: number | undefined;
|
|
@@ -41915,6 +41972,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
41915
41972
|
symbolName?: string | undefined;
|
|
41916
41973
|
doNotPlace?: boolean | undefined;
|
|
41917
41974
|
obstructsWithinBounds?: boolean | undefined;
|
|
41975
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
41918
41976
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
41919
41977
|
schPinArrangement?: {
|
|
41920
41978
|
leftSize?: number | undefined;
|
|
@@ -43962,6 +44020,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
43962
44020
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
43963
44021
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
43964
44022
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
44023
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
43965
44024
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
43966
44025
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
43967
44026
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -44191,6 +44250,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
44191
44250
|
symbolName?: string | undefined;
|
|
44192
44251
|
doNotPlace?: boolean | undefined;
|
|
44193
44252
|
obstructsWithinBounds?: boolean | undefined;
|
|
44253
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
44194
44254
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
44195
44255
|
}, {
|
|
44196
44256
|
type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
|
|
@@ -44386,6 +44446,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
44386
44446
|
symbolName?: string | undefined;
|
|
44387
44447
|
doNotPlace?: boolean | undefined;
|
|
44388
44448
|
obstructsWithinBounds?: boolean | undefined;
|
|
44449
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
44389
44450
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
44390
44451
|
}>;
|
|
44391
44452
|
declare const transistorPins: readonly ["pin1", "emitter", "pin2", "collector", "pin3", "base"];
|
|
@@ -45047,6 +45108,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
45047
45108
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
45048
45109
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
45049
45110
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
45111
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
45050
45112
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
45051
45113
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
45052
45114
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -45277,6 +45339,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
45277
45339
|
symbolName?: string | undefined;
|
|
45278
45340
|
doNotPlace?: boolean | undefined;
|
|
45279
45341
|
obstructsWithinBounds?: boolean | undefined;
|
|
45342
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
45280
45343
|
}, {
|
|
45281
45344
|
name: string;
|
|
45282
45345
|
channelType: "n" | "p";
|
|
@@ -45472,6 +45535,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
45472
45535
|
symbolName?: string | undefined;
|
|
45473
45536
|
doNotPlace?: boolean | undefined;
|
|
45474
45537
|
obstructsWithinBounds?: boolean | undefined;
|
|
45538
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
45475
45539
|
}>;
|
|
45476
45540
|
declare const mosfetPins: readonly ["pin1", "drain", "pin2", "source", "pin3", "gate"];
|
|
45477
45541
|
type MosfetPinLabels = (typeof mosfetPins)[number];
|
|
@@ -46136,6 +46200,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
46136
46200
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
46137
46201
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
46138
46202
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
46203
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
46139
46204
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
46140
46205
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
46141
46206
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -46367,6 +46432,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
46367
46432
|
symbolName?: string | undefined;
|
|
46368
46433
|
doNotPlace?: boolean | undefined;
|
|
46369
46434
|
obstructsWithinBounds?: boolean | undefined;
|
|
46435
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
46370
46436
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
46371
46437
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
46372
46438
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -46564,6 +46630,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
46564
46630
|
symbolName?: string | undefined;
|
|
46565
46631
|
doNotPlace?: boolean | undefined;
|
|
46566
46632
|
obstructsWithinBounds?: boolean | undefined;
|
|
46633
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
46567
46634
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
46568
46635
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
46569
46636
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -47221,6 +47288,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
47221
47288
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
47222
47289
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
47223
47290
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
47291
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
47224
47292
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
47225
47293
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
47226
47294
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -47457,6 +47525,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
47457
47525
|
symbolName?: string | undefined;
|
|
47458
47526
|
doNotPlace?: boolean | undefined;
|
|
47459
47527
|
obstructsWithinBounds?: boolean | undefined;
|
|
47528
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
47460
47529
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
47461
47530
|
standard?: boolean | undefined;
|
|
47462
47531
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -47658,6 +47727,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
47658
47727
|
symbolName?: string | undefined;
|
|
47659
47728
|
doNotPlace?: boolean | undefined;
|
|
47660
47729
|
obstructsWithinBounds?: boolean | undefined;
|
|
47730
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
47661
47731
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
47662
47732
|
standard?: boolean | undefined;
|
|
47663
47733
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -47859,6 +47929,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
47859
47929
|
symbolName?: string | undefined;
|
|
47860
47930
|
doNotPlace?: boolean | undefined;
|
|
47861
47931
|
obstructsWithinBounds?: boolean | undefined;
|
|
47932
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
47862
47933
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
47863
47934
|
standard?: boolean | undefined;
|
|
47864
47935
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -48060,6 +48131,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
48060
48131
|
symbolName?: string | undefined;
|
|
48061
48132
|
doNotPlace?: boolean | undefined;
|
|
48062
48133
|
obstructsWithinBounds?: boolean | undefined;
|
|
48134
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
48063
48135
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
48064
48136
|
standard?: boolean | undefined;
|
|
48065
48137
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -48267,6 +48339,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
48267
48339
|
symbolName?: string | undefined;
|
|
48268
48340
|
doNotPlace?: boolean | undefined;
|
|
48269
48341
|
obstructsWithinBounds?: boolean | undefined;
|
|
48342
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
48270
48343
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
48271
48344
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
48272
48345
|
}, {
|
|
@@ -48462,6 +48535,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
48462
48535
|
symbolName?: string | undefined;
|
|
48463
48536
|
doNotPlace?: boolean | undefined;
|
|
48464
48537
|
obstructsWithinBounds?: boolean | undefined;
|
|
48538
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
48465
48539
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
48466
48540
|
standard?: boolean | undefined;
|
|
48467
48541
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -49147,6 +49221,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
49147
49221
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
49148
49222
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
49149
49223
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
49224
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
49150
49225
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
49151
49226
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
49152
49227
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -49379,6 +49454,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
49379
49454
|
symbolName?: string | undefined;
|
|
49380
49455
|
doNotPlace?: boolean | undefined;
|
|
49381
49456
|
obstructsWithinBounds?: boolean | undefined;
|
|
49457
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
49382
49458
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
49383
49459
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
49384
49460
|
color?: string | undefined;
|
|
@@ -49578,6 +49654,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
49578
49654
|
symbolName?: string | undefined;
|
|
49579
49655
|
doNotPlace?: boolean | undefined;
|
|
49580
49656
|
obstructsWithinBounds?: boolean | undefined;
|
|
49657
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
49581
49658
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
49582
49659
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
49583
49660
|
color?: string | undefined;
|
|
@@ -50254,6 +50331,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
50254
50331
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
50255
50332
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
50256
50333
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
50334
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
50257
50335
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
50258
50336
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
50259
50337
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -50494,6 +50572,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
50494
50572
|
symbolName?: string | undefined;
|
|
50495
50573
|
doNotPlace?: boolean | undefined;
|
|
50496
50574
|
obstructsWithinBounds?: boolean | undefined;
|
|
50575
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
50497
50576
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
50498
50577
|
spst?: boolean | undefined;
|
|
50499
50578
|
spdt?: boolean | undefined;
|
|
@@ -50698,6 +50777,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
50698
50777
|
symbolName?: string | undefined;
|
|
50699
50778
|
doNotPlace?: boolean | undefined;
|
|
50700
50779
|
obstructsWithinBounds?: boolean | undefined;
|
|
50780
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
50701
50781
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
50702
50782
|
spst?: boolean | undefined;
|
|
50703
50783
|
spdt?: boolean | undefined;
|
|
@@ -50903,6 +50983,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
50903
50983
|
symbolName?: string | undefined;
|
|
50904
50984
|
doNotPlace?: boolean | undefined;
|
|
50905
50985
|
obstructsWithinBounds?: boolean | undefined;
|
|
50986
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
50906
50987
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
50907
50988
|
spst?: boolean | undefined;
|
|
50908
50989
|
spdt?: boolean | undefined;
|
|
@@ -52449,6 +52530,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
52449
52530
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
52450
52531
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
52451
52532
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
52533
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
52452
52534
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
52453
52535
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
52454
52536
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -52689,6 +52771,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
52689
52771
|
symbolName?: string | undefined;
|
|
52690
52772
|
doNotPlace?: boolean | undefined;
|
|
52691
52773
|
obstructsWithinBounds?: boolean | undefined;
|
|
52774
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
52692
52775
|
width?: number | undefined;
|
|
52693
52776
|
height?: number | undefined;
|
|
52694
52777
|
connections?: {
|
|
@@ -52890,6 +52973,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
52890
52973
|
symbolName?: string | undefined;
|
|
52891
52974
|
doNotPlace?: boolean | undefined;
|
|
52892
52975
|
obstructsWithinBounds?: boolean | undefined;
|
|
52976
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
52893
52977
|
width?: string | number | undefined;
|
|
52894
52978
|
height?: string | number | undefined;
|
|
52895
52979
|
connections?: {
|
|
@@ -53091,6 +53175,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
53091
53175
|
symbolName?: string | undefined;
|
|
53092
53176
|
doNotPlace?: boolean | undefined;
|
|
53093
53177
|
obstructsWithinBounds?: boolean | undefined;
|
|
53178
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
53094
53179
|
width?: number | undefined;
|
|
53095
53180
|
height?: number | undefined;
|
|
53096
53181
|
connections?: {
|
|
@@ -53292,6 +53377,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
53292
53377
|
symbolName?: string | undefined;
|
|
53293
53378
|
doNotPlace?: boolean | undefined;
|
|
53294
53379
|
obstructsWithinBounds?: boolean | undefined;
|
|
53380
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
53295
53381
|
width?: string | number | undefined;
|
|
53296
53382
|
height?: string | number | undefined;
|
|
53297
53383
|
connections?: {
|
|
@@ -54752,6 +54838,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
54752
54838
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
54753
54839
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
54754
54840
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
54841
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
54755
54842
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
54756
54843
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
54757
54844
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -54980,6 +55067,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
54980
55067
|
symbolName?: string | undefined;
|
|
54981
55068
|
doNotPlace?: boolean | undefined;
|
|
54982
55069
|
obstructsWithinBounds?: boolean | undefined;
|
|
55070
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
54983
55071
|
}, {
|
|
54984
55072
|
name: string;
|
|
54985
55073
|
voltage: string | number;
|
|
@@ -55174,6 +55262,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
55174
55262
|
symbolName?: string | undefined;
|
|
55175
55263
|
doNotPlace?: boolean | undefined;
|
|
55176
55264
|
obstructsWithinBounds?: boolean | undefined;
|
|
55265
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
55177
55266
|
}>;
|
|
55178
55267
|
type PowerSourceProps = z.input<typeof powerSourceProps>;
|
|
55179
55268
|
|
|
@@ -55841,6 +55930,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
55841
55930
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
55842
55931
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
55843
55932
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
55933
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
55844
55934
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
55845
55935
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
55846
55936
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -56074,6 +56164,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
56074
56164
|
symbolName?: string | undefined;
|
|
56075
56165
|
doNotPlace?: boolean | undefined;
|
|
56076
56166
|
obstructsWithinBounds?: boolean | undefined;
|
|
56167
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
56077
56168
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
56078
56169
|
frequency?: number | undefined;
|
|
56079
56170
|
voltage?: number | undefined;
|
|
@@ -56274,6 +56365,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
56274
56365
|
symbolName?: string | undefined;
|
|
56275
56366
|
doNotPlace?: boolean | undefined;
|
|
56276
56367
|
obstructsWithinBounds?: boolean | undefined;
|
|
56368
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
56277
56369
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
56278
56370
|
frequency?: string | number | undefined;
|
|
56279
56371
|
voltage?: string | number | undefined;
|
|
@@ -56942,6 +57034,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
56942
57034
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
56943
57035
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
56944
57036
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
57037
|
+
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
56945
57038
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
56946
57039
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
56947
57040
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -57173,6 +57266,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
57173
57266
|
symbolName?: string | undefined;
|
|
57174
57267
|
doNotPlace?: boolean | undefined;
|
|
57175
57268
|
obstructsWithinBounds?: boolean | undefined;
|
|
57269
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
57176
57270
|
color?: string | undefined;
|
|
57177
57271
|
referenceTo?: string | undefined;
|
|
57178
57272
|
}, {
|
|
@@ -57369,6 +57463,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
57369
57463
|
symbolName?: string | undefined;
|
|
57370
57464
|
doNotPlace?: boolean | undefined;
|
|
57371
57465
|
obstructsWithinBounds?: boolean | undefined;
|
|
57466
|
+
showAsTranslucentModel?: boolean | undefined;
|
|
57372
57467
|
color?: string | undefined;
|
|
57373
57468
|
referenceTo?: string | undefined;
|
|
57374
57469
|
}>;
|