@tscircuit/props 0.0.443 → 0.0.444
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/README.md +4 -0
- package/dist/index.d.ts +101 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1861,6 +1861,7 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
1861
1861
|
interface CommonComponentProps<PinLabel extends string = string> extends CommonLayoutProps {
|
|
1862
1862
|
key?: any;
|
|
1863
1863
|
name: string;
|
|
1864
|
+
displayName?: string;
|
|
1864
1865
|
pinAttributes?: Record<PinLabel, PinAttributeMap>;
|
|
1865
1866
|
supplierPartNumbers?: SupplierPartNumbers;
|
|
1866
1867
|
cadModel?: CadModelProp;
|
|
@@ -1968,6 +1969,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
1968
1969
|
} & {
|
|
1969
1970
|
key: z.ZodOptional<z.ZodAny>;
|
|
1970
1971
|
name: z.ZodString;
|
|
1972
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
1971
1973
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
1972
1974
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
1973
1975
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -2635,6 +2637,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2635
2637
|
} | undefined;
|
|
2636
2638
|
schRelative?: boolean | undefined;
|
|
2637
2639
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
2640
|
+
displayName?: string | undefined;
|
|
2638
2641
|
pinAttributes?: Record<string, {
|
|
2639
2642
|
providesPower?: boolean | undefined;
|
|
2640
2643
|
requiresPower?: boolean | undefined;
|
|
@@ -2839,6 +2842,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2839
2842
|
} | undefined;
|
|
2840
2843
|
schRelative?: boolean | undefined;
|
|
2841
2844
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
2845
|
+
displayName?: string | undefined;
|
|
2842
2846
|
pinAttributes?: Record<string, {
|
|
2843
2847
|
providesPower?: boolean | undefined;
|
|
2844
2848
|
requiresPower?: boolean | undefined;
|
|
@@ -3082,6 +3086,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3082
3086
|
} & {
|
|
3083
3087
|
key: z.ZodOptional<z.ZodAny>;
|
|
3084
3088
|
name: z.ZodString;
|
|
3089
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
3085
3090
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
3086
3091
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
3087
3092
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -3749,6 +3754,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3749
3754
|
} | undefined;
|
|
3750
3755
|
schRelative?: boolean | undefined;
|
|
3751
3756
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3757
|
+
displayName?: string | undefined;
|
|
3752
3758
|
pinAttributes?: Record<string, {
|
|
3753
3759
|
providesPower?: boolean | undefined;
|
|
3754
3760
|
requiresPower?: boolean | undefined;
|
|
@@ -3953,6 +3959,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3953
3959
|
} | undefined;
|
|
3954
3960
|
schRelative?: boolean | undefined;
|
|
3955
3961
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3962
|
+
displayName?: string | undefined;
|
|
3956
3963
|
pinAttributes?: Record<string, {
|
|
3957
3964
|
providesPower?: boolean | undefined;
|
|
3958
3965
|
requiresPower?: boolean | undefined;
|
|
@@ -17058,6 +17065,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
17058
17065
|
} & {
|
|
17059
17066
|
key: z.ZodOptional<z.ZodAny>;
|
|
17060
17067
|
name: z.ZodString;
|
|
17068
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
17061
17069
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
17062
17070
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
17063
17071
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -17975,6 +17983,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
17975
17983
|
} | undefined;
|
|
17976
17984
|
schRelative?: boolean | undefined;
|
|
17977
17985
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
17986
|
+
displayName?: string | undefined;
|
|
17978
17987
|
pinAttributes?: Record<string, {
|
|
17979
17988
|
providesPower?: boolean | undefined;
|
|
17980
17989
|
requiresPower?: boolean | undefined;
|
|
@@ -18256,6 +18265,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
18256
18265
|
} | undefined;
|
|
18257
18266
|
schRelative?: boolean | undefined;
|
|
18258
18267
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
18268
|
+
displayName?: string | undefined;
|
|
18259
18269
|
pinAttributes?: Record<string, {
|
|
18260
18270
|
providesPower?: boolean | undefined;
|
|
18261
18271
|
requiresPower?: boolean | undefined;
|
|
@@ -18579,6 +18589,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
18579
18589
|
} & {
|
|
18580
18590
|
key: z.ZodOptional<z.ZodAny>;
|
|
18581
18591
|
name: z.ZodString;
|
|
18592
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
18582
18593
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
18583
18594
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
18584
18595
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -19496,6 +19507,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
19496
19507
|
} | undefined;
|
|
19497
19508
|
schRelative?: boolean | undefined;
|
|
19498
19509
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
19510
|
+
displayName?: string | undefined;
|
|
19499
19511
|
pinAttributes?: Record<string, {
|
|
19500
19512
|
providesPower?: boolean | undefined;
|
|
19501
19513
|
requiresPower?: boolean | undefined;
|
|
@@ -19777,6 +19789,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
19777
19789
|
} | undefined;
|
|
19778
19790
|
schRelative?: boolean | undefined;
|
|
19779
19791
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
19792
|
+
displayName?: string | undefined;
|
|
19780
19793
|
pinAttributes?: Record<string, {
|
|
19781
19794
|
providesPower?: boolean | undefined;
|
|
19782
19795
|
requiresPower?: boolean | undefined;
|
|
@@ -20099,6 +20112,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
20099
20112
|
} & {
|
|
20100
20113
|
key: z.ZodOptional<z.ZodAny>;
|
|
20101
20114
|
name: z.ZodString;
|
|
20115
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
20102
20116
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
20103
20117
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
20104
20118
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -21016,6 +21030,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
21016
21030
|
} | undefined;
|
|
21017
21031
|
schRelative?: boolean | undefined;
|
|
21018
21032
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21033
|
+
displayName?: string | undefined;
|
|
21019
21034
|
pinAttributes?: Record<string, {
|
|
21020
21035
|
providesPower?: boolean | undefined;
|
|
21021
21036
|
requiresPower?: boolean | undefined;
|
|
@@ -21297,6 +21312,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
21297
21312
|
} | undefined;
|
|
21298
21313
|
schRelative?: boolean | undefined;
|
|
21299
21314
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21315
|
+
displayName?: string | undefined;
|
|
21300
21316
|
pinAttributes?: Record<string, {
|
|
21301
21317
|
providesPower?: boolean | undefined;
|
|
21302
21318
|
requiresPower?: boolean | undefined;
|
|
@@ -21651,6 +21667,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
21651
21667
|
} & {
|
|
21652
21668
|
key: z.ZodOptional<z.ZodAny>;
|
|
21653
21669
|
name: z.ZodString;
|
|
21670
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
21654
21671
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
21655
21672
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
21656
21673
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -22557,6 +22574,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
22557
22574
|
} | undefined;
|
|
22558
22575
|
schRelative?: boolean | undefined;
|
|
22559
22576
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22577
|
+
displayName?: string | undefined;
|
|
22560
22578
|
pinAttributes?: Record<string, {
|
|
22561
22579
|
providesPower?: boolean | undefined;
|
|
22562
22580
|
requiresPower?: boolean | undefined;
|
|
@@ -22833,6 +22851,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
22833
22851
|
} | undefined;
|
|
22834
22852
|
schRelative?: boolean | undefined;
|
|
22835
22853
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22854
|
+
displayName?: string | undefined;
|
|
22836
22855
|
pinAttributes?: Record<string, {
|
|
22837
22856
|
providesPower?: boolean | undefined;
|
|
22838
22857
|
requiresPower?: boolean | undefined;
|
|
@@ -23159,6 +23178,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
23159
23178
|
} & {
|
|
23160
23179
|
key: z.ZodOptional<z.ZodAny>;
|
|
23161
23180
|
name: z.ZodString;
|
|
23181
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
23162
23182
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
23163
23183
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
23164
23184
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -24068,6 +24088,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
24068
24088
|
} | undefined;
|
|
24069
24089
|
schRelative?: boolean | undefined;
|
|
24070
24090
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
24091
|
+
displayName?: string | undefined;
|
|
24071
24092
|
pinAttributes?: Record<string, {
|
|
24072
24093
|
providesPower?: boolean | undefined;
|
|
24073
24094
|
requiresPower?: boolean | undefined;
|
|
@@ -24346,6 +24367,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
24346
24367
|
} | undefined;
|
|
24347
24368
|
schRelative?: boolean | undefined;
|
|
24348
24369
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
24370
|
+
displayName?: string | undefined;
|
|
24349
24371
|
pinAttributes?: Record<string, {
|
|
24350
24372
|
providesPower?: boolean | undefined;
|
|
24351
24373
|
requiresPower?: boolean | undefined;
|
|
@@ -24683,6 +24705,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
24683
24705
|
} & {
|
|
24684
24706
|
key: z.ZodOptional<z.ZodAny>;
|
|
24685
24707
|
name: z.ZodString;
|
|
24708
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
24686
24709
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
24687
24710
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
24688
24711
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -25487,6 +25510,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
25487
25510
|
} | undefined;
|
|
25488
25511
|
schRelative?: boolean | undefined;
|
|
25489
25512
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
25513
|
+
displayName?: string | undefined;
|
|
25490
25514
|
pinAttributes?: Record<string, {
|
|
25491
25515
|
providesPower?: boolean | undefined;
|
|
25492
25516
|
requiresPower?: boolean | undefined;
|
|
@@ -25735,6 +25759,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
25735
25759
|
} | undefined;
|
|
25736
25760
|
schRelative?: boolean | undefined;
|
|
25737
25761
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
25762
|
+
displayName?: string | undefined;
|
|
25738
25763
|
pinAttributes?: Record<string, {
|
|
25739
25764
|
providesPower?: boolean | undefined;
|
|
25740
25765
|
requiresPower?: boolean | undefined;
|
|
@@ -26032,6 +26057,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
26032
26057
|
} & {
|
|
26033
26058
|
key: z.ZodOptional<z.ZodAny>;
|
|
26034
26059
|
name: z.ZodString;
|
|
26060
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
26035
26061
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
26036
26062
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
26037
26063
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -26703,6 +26729,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
26703
26729
|
} | undefined;
|
|
26704
26730
|
schRelative?: boolean | undefined;
|
|
26705
26731
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
26732
|
+
displayName?: string | undefined;
|
|
26706
26733
|
pinAttributes?: Record<string, {
|
|
26707
26734
|
providesPower?: boolean | undefined;
|
|
26708
26735
|
requiresPower?: boolean | undefined;
|
|
@@ -26910,6 +26937,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
26910
26937
|
} | undefined;
|
|
26911
26938
|
schRelative?: boolean | undefined;
|
|
26912
26939
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
26940
|
+
displayName?: string | undefined;
|
|
26913
26941
|
pinAttributes?: Record<string, {
|
|
26914
26942
|
providesPower?: boolean | undefined;
|
|
26915
26943
|
requiresPower?: boolean | undefined;
|
|
@@ -27184,6 +27212,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
27184
27212
|
} & {
|
|
27185
27213
|
key: z.ZodOptional<z.ZodAny>;
|
|
27186
27214
|
name: z.ZodString;
|
|
27215
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
27187
27216
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
27188
27217
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
27189
27218
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -27858,6 +27887,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
27858
27887
|
} | undefined;
|
|
27859
27888
|
schRelative?: boolean | undefined;
|
|
27860
27889
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
27890
|
+
displayName?: string | undefined;
|
|
27861
27891
|
pinAttributes?: Record<string, {
|
|
27862
27892
|
providesPower?: boolean | undefined;
|
|
27863
27893
|
requiresPower?: boolean | undefined;
|
|
@@ -28067,6 +28097,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
28067
28097
|
} | undefined;
|
|
28068
28098
|
schRelative?: boolean | undefined;
|
|
28069
28099
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
28100
|
+
displayName?: string | undefined;
|
|
28070
28101
|
pinAttributes?: Record<string, {
|
|
28071
28102
|
providesPower?: boolean | undefined;
|
|
28072
28103
|
requiresPower?: boolean | undefined;
|
|
@@ -29918,6 +29949,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
29918
29949
|
} & {
|
|
29919
29950
|
key: z.ZodOptional<z.ZodAny>;
|
|
29920
29951
|
name: z.ZodString;
|
|
29952
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
29921
29953
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
29922
29954
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
29923
29955
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -30595,6 +30627,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
30595
30627
|
} | undefined;
|
|
30596
30628
|
schRelative?: boolean | undefined;
|
|
30597
30629
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
30630
|
+
displayName?: string | undefined;
|
|
30598
30631
|
pinAttributes?: Record<string, {
|
|
30599
30632
|
providesPower?: boolean | undefined;
|
|
30600
30633
|
requiresPower?: boolean | undefined;
|
|
@@ -30807,6 +30840,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
30807
30840
|
} | undefined;
|
|
30808
30841
|
schRelative?: boolean | undefined;
|
|
30809
30842
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
30843
|
+
displayName?: string | undefined;
|
|
30810
30844
|
pinAttributes?: Record<string, {
|
|
30811
30845
|
providesPower?: boolean | undefined;
|
|
30812
30846
|
requiresPower?: boolean | undefined;
|
|
@@ -31064,6 +31098,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
31064
31098
|
} & {
|
|
31065
31099
|
key: z.ZodOptional<z.ZodAny>;
|
|
31066
31100
|
name: z.ZodString;
|
|
31101
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
31067
31102
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
31068
31103
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
31069
31104
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -31735,6 +31770,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
31735
31770
|
} | undefined;
|
|
31736
31771
|
schRelative?: boolean | undefined;
|
|
31737
31772
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
31773
|
+
displayName?: string | undefined;
|
|
31738
31774
|
pinAttributes?: Record<string, {
|
|
31739
31775
|
providesPower?: boolean | undefined;
|
|
31740
31776
|
requiresPower?: boolean | undefined;
|
|
@@ -31941,6 +31977,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
31941
31977
|
} | undefined;
|
|
31942
31978
|
schRelative?: boolean | undefined;
|
|
31943
31979
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
31980
|
+
displayName?: string | undefined;
|
|
31944
31981
|
pinAttributes?: Record<string, {
|
|
31945
31982
|
providesPower?: boolean | undefined;
|
|
31946
31983
|
requiresPower?: boolean | undefined;
|
|
@@ -32198,6 +32235,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
32198
32235
|
} & {
|
|
32199
32236
|
key: z.ZodOptional<z.ZodAny>;
|
|
32200
32237
|
name: z.ZodString;
|
|
32238
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
32201
32239
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
32202
32240
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
32203
32241
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -32875,6 +32913,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
32875
32913
|
} | undefined;
|
|
32876
32914
|
schRelative?: boolean | undefined;
|
|
32877
32915
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
32916
|
+
displayName?: string | undefined;
|
|
32878
32917
|
pinAttributes?: Record<string, {
|
|
32879
32918
|
providesPower?: boolean | undefined;
|
|
32880
32919
|
requiresPower?: boolean | undefined;
|
|
@@ -33086,6 +33125,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
33086
33125
|
} | undefined;
|
|
33087
33126
|
schRelative?: boolean | undefined;
|
|
33088
33127
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
33128
|
+
displayName?: string | undefined;
|
|
33089
33129
|
pinAttributes?: Record<string, {
|
|
33090
33130
|
providesPower?: boolean | undefined;
|
|
33091
33131
|
requiresPower?: boolean | undefined;
|
|
@@ -33341,6 +33381,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
33341
33381
|
} & {
|
|
33342
33382
|
key: z.ZodOptional<z.ZodAny>;
|
|
33343
33383
|
name: z.ZodString;
|
|
33384
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
33344
33385
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
33345
33386
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
33346
33387
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -34014,6 +34055,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
34014
34055
|
} | undefined;
|
|
34015
34056
|
schRelative?: boolean | undefined;
|
|
34016
34057
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
34058
|
+
displayName?: string | undefined;
|
|
34017
34059
|
pinAttributes?: Record<string, {
|
|
34018
34060
|
providesPower?: boolean | undefined;
|
|
34019
34061
|
requiresPower?: boolean | undefined;
|
|
@@ -34221,6 +34263,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
34221
34263
|
} | undefined;
|
|
34222
34264
|
schRelative?: boolean | undefined;
|
|
34223
34265
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
34266
|
+
displayName?: string | undefined;
|
|
34224
34267
|
pinAttributes?: Record<string, {
|
|
34225
34268
|
providesPower?: boolean | undefined;
|
|
34226
34269
|
requiresPower?: boolean | undefined;
|
|
@@ -35928,6 +35971,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
35928
35971
|
} & {
|
|
35929
35972
|
key: z.ZodOptional<z.ZodAny>;
|
|
35930
35973
|
name: z.ZodString;
|
|
35974
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
35931
35975
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
35932
35976
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
35933
35977
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -36611,6 +36655,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
36611
36655
|
} | undefined;
|
|
36612
36656
|
schRelative?: boolean | undefined;
|
|
36613
36657
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
36658
|
+
displayName?: string | undefined;
|
|
36614
36659
|
pinAttributes?: Record<string, {
|
|
36615
36660
|
providesPower?: boolean | undefined;
|
|
36616
36661
|
requiresPower?: boolean | undefined;
|
|
@@ -36825,6 +36870,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
36825
36870
|
} | undefined;
|
|
36826
36871
|
schRelative?: boolean | undefined;
|
|
36827
36872
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
36873
|
+
displayName?: string | undefined;
|
|
36828
36874
|
pinAttributes?: Record<string, {
|
|
36829
36875
|
providesPower?: boolean | undefined;
|
|
36830
36876
|
requiresPower?: boolean | undefined;
|
|
@@ -37112,6 +37158,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
37112
37158
|
} & {
|
|
37113
37159
|
key: z.ZodOptional<z.ZodAny>;
|
|
37114
37160
|
name: z.ZodString;
|
|
37161
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
37115
37162
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
37116
37163
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
37117
37164
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -37782,6 +37829,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
37782
37829
|
} | undefined;
|
|
37783
37830
|
schRelative?: boolean | undefined;
|
|
37784
37831
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
37832
|
+
displayName?: string | undefined;
|
|
37785
37833
|
pinAttributes?: Record<string, {
|
|
37786
37834
|
providesPower?: boolean | undefined;
|
|
37787
37835
|
requiresPower?: boolean | undefined;
|
|
@@ -37988,6 +38036,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
37988
38036
|
} | undefined;
|
|
37989
38037
|
schRelative?: boolean | undefined;
|
|
37990
38038
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
38039
|
+
displayName?: string | undefined;
|
|
37991
38040
|
pinAttributes?: Record<string, {
|
|
37992
38041
|
providesPower?: boolean | undefined;
|
|
37993
38042
|
requiresPower?: boolean | undefined;
|
|
@@ -42392,6 +42441,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
42392
42441
|
} & {
|
|
42393
42442
|
key: z.ZodOptional<z.ZodAny>;
|
|
42394
42443
|
name: z.ZodString;
|
|
42444
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
42395
42445
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
42396
42446
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
42397
42447
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -43064,6 +43114,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
43064
43114
|
} | undefined;
|
|
43065
43115
|
schRelative?: boolean | undefined;
|
|
43066
43116
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
43117
|
+
displayName?: string | undefined;
|
|
43067
43118
|
pinAttributes?: Record<string, {
|
|
43068
43119
|
providesPower?: boolean | undefined;
|
|
43069
43120
|
requiresPower?: boolean | undefined;
|
|
@@ -43272,6 +43323,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
43272
43323
|
} | undefined;
|
|
43273
43324
|
schRelative?: boolean | undefined;
|
|
43274
43325
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
43326
|
+
displayName?: string | undefined;
|
|
43275
43327
|
pinAttributes?: Record<string, {
|
|
43276
43328
|
providesPower?: boolean | undefined;
|
|
43277
43329
|
requiresPower?: boolean | undefined;
|
|
@@ -43602,6 +43654,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
43602
43654
|
} & {
|
|
43603
43655
|
key: z.ZodOptional<z.ZodAny>;
|
|
43604
43656
|
name: z.ZodString;
|
|
43657
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
43605
43658
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
43606
43659
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
43607
43660
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -44417,6 +44470,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
44417
44470
|
} | undefined;
|
|
44418
44471
|
schRelative?: boolean | undefined;
|
|
44419
44472
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
44473
|
+
displayName?: string | undefined;
|
|
44420
44474
|
pinAttributes?: Record<string, {
|
|
44421
44475
|
providesPower?: boolean | undefined;
|
|
44422
44476
|
requiresPower?: boolean | undefined;
|
|
@@ -44673,6 +44727,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
44673
44727
|
} | undefined;
|
|
44674
44728
|
schRelative?: boolean | undefined;
|
|
44675
44729
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
44730
|
+
displayName?: string | undefined;
|
|
44676
44731
|
pinAttributes?: Record<string, {
|
|
44677
44732
|
providesPower?: boolean | undefined;
|
|
44678
44733
|
requiresPower?: boolean | undefined;
|
|
@@ -45040,6 +45095,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
45040
45095
|
} & {
|
|
45041
45096
|
key: z.ZodOptional<z.ZodAny>;
|
|
45042
45097
|
name: z.ZodString;
|
|
45098
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
45043
45099
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
45044
45100
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
45045
45101
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -45957,6 +46013,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
45957
46013
|
} | undefined;
|
|
45958
46014
|
schRelative?: boolean | undefined;
|
|
45959
46015
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
46016
|
+
displayName?: string | undefined;
|
|
45960
46017
|
pinAttributes?: Record<string, {
|
|
45961
46018
|
providesPower?: boolean | undefined;
|
|
45962
46019
|
requiresPower?: boolean | undefined;
|
|
@@ -46238,6 +46295,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
46238
46295
|
} | undefined;
|
|
46239
46296
|
schRelative?: boolean | undefined;
|
|
46240
46297
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
46298
|
+
displayName?: string | undefined;
|
|
46241
46299
|
pinAttributes?: Record<string, {
|
|
46242
46300
|
providesPower?: boolean | undefined;
|
|
46243
46301
|
requiresPower?: boolean | undefined;
|
|
@@ -47930,6 +47988,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
47930
47988
|
} & {
|
|
47931
47989
|
key: z.ZodOptional<z.ZodAny>;
|
|
47932
47990
|
name: z.ZodString;
|
|
47991
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
47933
47992
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
47934
47993
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
47935
47994
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -48601,6 +48660,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
48601
48660
|
} | undefined;
|
|
48602
48661
|
schRelative?: boolean | undefined;
|
|
48603
48662
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
48663
|
+
displayName?: string | undefined;
|
|
48604
48664
|
pinAttributes?: Record<string, {
|
|
48605
48665
|
providesPower?: boolean | undefined;
|
|
48606
48666
|
requiresPower?: boolean | undefined;
|
|
@@ -48807,6 +48867,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
48807
48867
|
} | undefined;
|
|
48808
48868
|
schRelative?: boolean | undefined;
|
|
48809
48869
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
48870
|
+
displayName?: string | undefined;
|
|
48810
48871
|
pinAttributes?: Record<string, {
|
|
48811
48872
|
providesPower?: boolean | undefined;
|
|
48812
48873
|
requiresPower?: boolean | undefined;
|
|
@@ -49058,6 +49119,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
49058
49119
|
} & {
|
|
49059
49120
|
key: z.ZodOptional<z.ZodAny>;
|
|
49060
49121
|
name: z.ZodString;
|
|
49122
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
49061
49123
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
49062
49124
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
49063
49125
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -49730,6 +49792,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
49730
49792
|
} | undefined;
|
|
49731
49793
|
schRelative?: boolean | undefined;
|
|
49732
49794
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
49795
|
+
displayName?: string | undefined;
|
|
49733
49796
|
pinAttributes?: Record<string, {
|
|
49734
49797
|
providesPower?: boolean | undefined;
|
|
49735
49798
|
requiresPower?: boolean | undefined;
|
|
@@ -49936,6 +49999,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
49936
49999
|
} | undefined;
|
|
49937
50000
|
schRelative?: boolean | undefined;
|
|
49938
50001
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
50002
|
+
displayName?: string | undefined;
|
|
49939
50003
|
pinAttributes?: Record<string, {
|
|
49940
50004
|
providesPower?: boolean | undefined;
|
|
49941
50005
|
requiresPower?: boolean | undefined;
|
|
@@ -50193,6 +50257,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
50193
50257
|
} & {
|
|
50194
50258
|
key: z.ZodOptional<z.ZodAny>;
|
|
50195
50259
|
name: z.ZodString;
|
|
50260
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
50196
50261
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
50197
50262
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
50198
50263
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -50862,6 +50927,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
50862
50927
|
} | undefined;
|
|
50863
50928
|
schRelative?: boolean | undefined;
|
|
50864
50929
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
50930
|
+
displayName?: string | undefined;
|
|
50865
50931
|
pinAttributes?: Record<string, {
|
|
50866
50932
|
providesPower?: boolean | undefined;
|
|
50867
50933
|
requiresPower?: boolean | undefined;
|
|
@@ -51067,6 +51133,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
51067
51133
|
} | undefined;
|
|
51068
51134
|
schRelative?: boolean | undefined;
|
|
51069
51135
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
51136
|
+
displayName?: string | undefined;
|
|
51070
51137
|
pinAttributes?: Record<string, {
|
|
51071
51138
|
providesPower?: boolean | undefined;
|
|
51072
51139
|
requiresPower?: boolean | undefined;
|
|
@@ -51325,6 +51392,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
51325
51392
|
} & {
|
|
51326
51393
|
key: z.ZodOptional<z.ZodAny>;
|
|
51327
51394
|
name: z.ZodString;
|
|
51395
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
51328
51396
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
51329
51397
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
51330
51398
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -51998,6 +52066,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
51998
52066
|
} | undefined;
|
|
51999
52067
|
schRelative?: boolean | undefined;
|
|
52000
52068
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
52069
|
+
displayName?: string | undefined;
|
|
52001
52070
|
pinAttributes?: Record<string, {
|
|
52002
52071
|
providesPower?: boolean | undefined;
|
|
52003
52072
|
requiresPower?: boolean | undefined;
|
|
@@ -52206,6 +52275,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
52206
52275
|
} | undefined;
|
|
52207
52276
|
schRelative?: boolean | undefined;
|
|
52208
52277
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
52278
|
+
displayName?: string | undefined;
|
|
52209
52279
|
pinAttributes?: Record<string, {
|
|
52210
52280
|
providesPower?: boolean | undefined;
|
|
52211
52281
|
requiresPower?: boolean | undefined;
|
|
@@ -52453,6 +52523,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
52453
52523
|
} & {
|
|
52454
52524
|
key: z.ZodOptional<z.ZodAny>;
|
|
52455
52525
|
name: z.ZodString;
|
|
52526
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
52456
52527
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
52457
52528
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
52458
52529
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -53131,6 +53202,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
53131
53202
|
} | undefined;
|
|
53132
53203
|
schRelative?: boolean | undefined;
|
|
53133
53204
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
53205
|
+
displayName?: string | undefined;
|
|
53134
53206
|
pinAttributes?: Record<string, {
|
|
53135
53207
|
providesPower?: boolean | undefined;
|
|
53136
53208
|
requiresPower?: boolean | undefined;
|
|
@@ -53343,6 +53415,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
53343
53415
|
} | undefined;
|
|
53344
53416
|
schRelative?: boolean | undefined;
|
|
53345
53417
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
53418
|
+
displayName?: string | undefined;
|
|
53346
53419
|
pinAttributes?: Record<string, {
|
|
53347
53420
|
providesPower?: boolean | undefined;
|
|
53348
53421
|
requiresPower?: boolean | undefined;
|
|
@@ -53555,6 +53628,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
53555
53628
|
} | undefined;
|
|
53556
53629
|
schRelative?: boolean | undefined;
|
|
53557
53630
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
53631
|
+
displayName?: string | undefined;
|
|
53558
53632
|
pinAttributes?: Record<string, {
|
|
53559
53633
|
providesPower?: boolean | undefined;
|
|
53560
53634
|
requiresPower?: boolean | undefined;
|
|
@@ -53767,6 +53841,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
53767
53841
|
} | undefined;
|
|
53768
53842
|
schRelative?: boolean | undefined;
|
|
53769
53843
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
53844
|
+
displayName?: string | undefined;
|
|
53770
53845
|
pinAttributes?: Record<string, {
|
|
53771
53846
|
providesPower?: boolean | undefined;
|
|
53772
53847
|
requiresPower?: boolean | undefined;
|
|
@@ -53985,6 +54060,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
53985
54060
|
} | undefined;
|
|
53986
54061
|
schRelative?: boolean | undefined;
|
|
53987
54062
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
54063
|
+
displayName?: string | undefined;
|
|
53988
54064
|
pinAttributes?: Record<string, {
|
|
53989
54065
|
providesPower?: boolean | undefined;
|
|
53990
54066
|
requiresPower?: boolean | undefined;
|
|
@@ -54191,6 +54267,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
54191
54267
|
} | undefined;
|
|
54192
54268
|
schRelative?: boolean | undefined;
|
|
54193
54269
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
54270
|
+
displayName?: string | undefined;
|
|
54194
54271
|
pinAttributes?: Record<string, {
|
|
54195
54272
|
providesPower?: boolean | undefined;
|
|
54196
54273
|
requiresPower?: boolean | undefined;
|
|
@@ -54466,6 +54543,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
54466
54543
|
} & {
|
|
54467
54544
|
key: z.ZodOptional<z.ZodAny>;
|
|
54468
54545
|
name: z.ZodString;
|
|
54546
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
54469
54547
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
54470
54548
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
54471
54549
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -55140,6 +55218,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
55140
55218
|
} | undefined;
|
|
55141
55219
|
schRelative?: boolean | undefined;
|
|
55142
55220
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
55221
|
+
displayName?: string | undefined;
|
|
55143
55222
|
pinAttributes?: Record<string, {
|
|
55144
55223
|
providesPower?: boolean | undefined;
|
|
55145
55224
|
requiresPower?: boolean | undefined;
|
|
@@ -55350,6 +55429,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
55350
55429
|
} | undefined;
|
|
55351
55430
|
schRelative?: boolean | undefined;
|
|
55352
55431
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
55432
|
+
displayName?: string | undefined;
|
|
55353
55433
|
pinAttributes?: Record<string, {
|
|
55354
55434
|
providesPower?: boolean | undefined;
|
|
55355
55435
|
requiresPower?: boolean | undefined;
|
|
@@ -55616,6 +55696,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
55616
55696
|
} & {
|
|
55617
55697
|
key: z.ZodOptional<z.ZodAny>;
|
|
55618
55698
|
name: z.ZodString;
|
|
55699
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
55619
55700
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
55620
55701
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
55621
55702
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -56298,6 +56379,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
56298
56379
|
} | undefined;
|
|
56299
56380
|
schRelative?: boolean | undefined;
|
|
56300
56381
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
56382
|
+
displayName?: string | undefined;
|
|
56301
56383
|
pinAttributes?: Record<string, {
|
|
56302
56384
|
providesPower?: boolean | undefined;
|
|
56303
56385
|
requiresPower?: boolean | undefined;
|
|
@@ -56513,6 +56595,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
56513
56595
|
} | undefined;
|
|
56514
56596
|
schRelative?: boolean | undefined;
|
|
56515
56597
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
56598
|
+
displayName?: string | undefined;
|
|
56516
56599
|
pinAttributes?: Record<string, {
|
|
56517
56600
|
providesPower?: boolean | undefined;
|
|
56518
56601
|
requiresPower?: boolean | undefined;
|
|
@@ -56729,6 +56812,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
56729
56812
|
} | undefined;
|
|
56730
56813
|
schRelative?: boolean | undefined;
|
|
56731
56814
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
56815
|
+
displayName?: string | undefined;
|
|
56732
56816
|
pinAttributes?: Record<string, {
|
|
56733
56817
|
providesPower?: boolean | undefined;
|
|
56734
56818
|
requiresPower?: boolean | undefined;
|
|
@@ -57977,6 +58061,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
57977
58061
|
} & {
|
|
57978
58062
|
key: z.ZodOptional<z.ZodAny>;
|
|
57979
58063
|
name: z.ZodString;
|
|
58064
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
57980
58065
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
57981
58066
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
57982
58067
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -58659,6 +58744,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
58659
58744
|
} | undefined;
|
|
58660
58745
|
schRelative?: boolean | undefined;
|
|
58661
58746
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
58747
|
+
displayName?: string | undefined;
|
|
58662
58748
|
pinAttributes?: Record<string, {
|
|
58663
58749
|
providesPower?: boolean | undefined;
|
|
58664
58750
|
requiresPower?: boolean | undefined;
|
|
@@ -58871,6 +58957,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
58871
58957
|
} | undefined;
|
|
58872
58958
|
schRelative?: boolean | undefined;
|
|
58873
58959
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
58960
|
+
displayName?: string | undefined;
|
|
58874
58961
|
pinAttributes?: Record<string, {
|
|
58875
58962
|
providesPower?: boolean | undefined;
|
|
58876
58963
|
requiresPower?: boolean | undefined;
|
|
@@ -59083,6 +59170,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
59083
59170
|
} | undefined;
|
|
59084
59171
|
schRelative?: boolean | undefined;
|
|
59085
59172
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
59173
|
+
displayName?: string | undefined;
|
|
59086
59174
|
pinAttributes?: Record<string, {
|
|
59087
59175
|
providesPower?: boolean | undefined;
|
|
59088
59176
|
requiresPower?: boolean | undefined;
|
|
@@ -59295,6 +59383,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
59295
59383
|
} | undefined;
|
|
59296
59384
|
schRelative?: boolean | undefined;
|
|
59297
59385
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
59386
|
+
displayName?: string | undefined;
|
|
59298
59387
|
pinAttributes?: Record<string, {
|
|
59299
59388
|
providesPower?: boolean | undefined;
|
|
59300
59389
|
requiresPower?: boolean | undefined;
|
|
@@ -60463,6 +60552,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
60463
60552
|
} & {
|
|
60464
60553
|
key: z.ZodOptional<z.ZodAny>;
|
|
60465
60554
|
name: z.ZodString;
|
|
60555
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
60466
60556
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
60467
60557
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
60468
60558
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -61133,6 +61223,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
61133
61223
|
} | undefined;
|
|
61134
61224
|
schRelative?: boolean | undefined;
|
|
61135
61225
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
61226
|
+
displayName?: string | undefined;
|
|
61136
61227
|
pinAttributes?: Record<string, {
|
|
61137
61228
|
providesPower?: boolean | undefined;
|
|
61138
61229
|
requiresPower?: boolean | undefined;
|
|
@@ -61338,6 +61429,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
61338
61429
|
} | undefined;
|
|
61339
61430
|
schRelative?: boolean | undefined;
|
|
61340
61431
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
61432
|
+
displayName?: string | undefined;
|
|
61341
61433
|
pinAttributes?: Record<string, {
|
|
61342
61434
|
providesPower?: boolean | undefined;
|
|
61343
61435
|
requiresPower?: boolean | undefined;
|
|
@@ -61595,6 +61687,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
61595
61687
|
} & {
|
|
61596
61688
|
key: z.ZodOptional<z.ZodAny>;
|
|
61597
61689
|
name: z.ZodString;
|
|
61690
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
61598
61691
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
61599
61692
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
61600
61693
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -62270,6 +62363,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
62270
62363
|
} | undefined;
|
|
62271
62364
|
schRelative?: boolean | undefined;
|
|
62272
62365
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
62366
|
+
displayName?: string | undefined;
|
|
62273
62367
|
pinAttributes?: Record<string, {
|
|
62274
62368
|
providesPower?: boolean | undefined;
|
|
62275
62369
|
requiresPower?: boolean | undefined;
|
|
@@ -62481,6 +62575,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
62481
62575
|
} | undefined;
|
|
62482
62576
|
schRelative?: boolean | undefined;
|
|
62483
62577
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
62578
|
+
displayName?: string | undefined;
|
|
62484
62579
|
pinAttributes?: Record<string, {
|
|
62485
62580
|
providesPower?: boolean | undefined;
|
|
62486
62581
|
requiresPower?: boolean | undefined;
|
|
@@ -62744,6 +62839,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
62744
62839
|
} & {
|
|
62745
62840
|
key: z.ZodOptional<z.ZodAny>;
|
|
62746
62841
|
name: z.ZodString;
|
|
62842
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
62747
62843
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
62748
62844
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
62749
62845
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -63419,6 +63515,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
63419
63515
|
} | undefined;
|
|
63420
63516
|
schRelative?: boolean | undefined;
|
|
63421
63517
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
63518
|
+
displayName?: string | undefined;
|
|
63422
63519
|
pinAttributes?: Record<string, {
|
|
63423
63520
|
providesPower?: boolean | undefined;
|
|
63424
63521
|
requiresPower?: boolean | undefined;
|
|
@@ -63630,6 +63727,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
63630
63727
|
} | undefined;
|
|
63631
63728
|
schRelative?: boolean | undefined;
|
|
63632
63729
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
63730
|
+
displayName?: string | undefined;
|
|
63633
63731
|
pinAttributes?: Record<string, {
|
|
63634
63732
|
providesPower?: boolean | undefined;
|
|
63635
63733
|
requiresPower?: boolean | undefined;
|
|
@@ -63888,6 +63986,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
63888
63986
|
} & {
|
|
63889
63987
|
key: z.ZodOptional<z.ZodAny>;
|
|
63890
63988
|
name: z.ZodString;
|
|
63989
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
63891
63990
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
63892
63991
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
63893
63992
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -64561,6 +64660,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
64561
64660
|
schRelative?: boolean | undefined;
|
|
64562
64661
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
64563
64662
|
name?: string | undefined;
|
|
64663
|
+
displayName?: string | undefined;
|
|
64564
64664
|
pinAttributes?: Record<string, {
|
|
64565
64665
|
providesPower?: boolean | undefined;
|
|
64566
64666
|
requiresPower?: boolean | undefined;
|
|
@@ -64768,6 +64868,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
64768
64868
|
schRelative?: boolean | undefined;
|
|
64769
64869
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
64770
64870
|
name?: string | undefined;
|
|
64871
|
+
displayName?: string | undefined;
|
|
64771
64872
|
pinAttributes?: Record<string, {
|
|
64772
64873
|
providesPower?: boolean | undefined;
|
|
64773
64874
|
requiresPower?: boolean | undefined;
|