@tscircuit/props 0.0.446 → 0.0.447

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 CHANGED
@@ -1862,6 +1862,7 @@ interface CommonComponentProps<PinLabel extends string = string> extends CommonL
1862
1862
  key?: any;
1863
1863
  name: string;
1864
1864
  displayName?: string;
1865
+ datasheetUrl?: string;
1865
1866
  pinAttributes?: Record<PinLabel, PinAttributeMap>;
1866
1867
  supplierPartNumbers?: SupplierPartNumbers;
1867
1868
  cadModel?: CadModelProp;
@@ -1970,6 +1971,7 @@ declare const commonComponentProps: z.ZodObject<{
1970
1971
  key: z.ZodOptional<z.ZodAny>;
1971
1972
  name: z.ZodString;
1972
1973
  displayName: z.ZodOptional<z.ZodString>;
1974
+ datasheetUrl: z.ZodOptional<z.ZodString>;
1973
1975
  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<{
1974
1976
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
1975
1977
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -2638,6 +2640,7 @@ declare const commonComponentProps: z.ZodObject<{
2638
2640
  schRelative?: boolean | undefined;
2639
2641
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
2640
2642
  displayName?: string | undefined;
2643
+ datasheetUrl?: string | undefined;
2641
2644
  pinAttributes?: Record<string, {
2642
2645
  providesPower?: boolean | undefined;
2643
2646
  requiresPower?: boolean | undefined;
@@ -2843,6 +2846,7 @@ declare const commonComponentProps: z.ZodObject<{
2843
2846
  schRelative?: boolean | undefined;
2844
2847
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
2845
2848
  displayName?: string | undefined;
2849
+ datasheetUrl?: string | undefined;
2846
2850
  pinAttributes?: Record<string, {
2847
2851
  providesPower?: boolean | undefined;
2848
2852
  requiresPower?: boolean | undefined;
@@ -3087,6 +3091,7 @@ declare const componentProps: z.ZodObject<{
3087
3091
  key: z.ZodOptional<z.ZodAny>;
3088
3092
  name: z.ZodString;
3089
3093
  displayName: z.ZodOptional<z.ZodString>;
3094
+ datasheetUrl: z.ZodOptional<z.ZodString>;
3090
3095
  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<{
3091
3096
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
3092
3097
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -3755,6 +3760,7 @@ declare const componentProps: z.ZodObject<{
3755
3760
  schRelative?: boolean | undefined;
3756
3761
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
3757
3762
  displayName?: string | undefined;
3763
+ datasheetUrl?: string | undefined;
3758
3764
  pinAttributes?: Record<string, {
3759
3765
  providesPower?: boolean | undefined;
3760
3766
  requiresPower?: boolean | undefined;
@@ -3960,6 +3966,7 @@ declare const componentProps: z.ZodObject<{
3960
3966
  schRelative?: boolean | undefined;
3961
3967
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
3962
3968
  displayName?: string | undefined;
3969
+ datasheetUrl?: string | undefined;
3963
3970
  pinAttributes?: Record<string, {
3964
3971
  providesPower?: boolean | undefined;
3965
3972
  requiresPower?: boolean | undefined;
@@ -17070,6 +17077,7 @@ declare const chipProps: z.ZodObject<{
17070
17077
  key: z.ZodOptional<z.ZodAny>;
17071
17078
  name: z.ZodString;
17072
17079
  displayName: z.ZodOptional<z.ZodString>;
17080
+ datasheetUrl: z.ZodOptional<z.ZodString>;
17073
17081
  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<{
17074
17082
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
17075
17083
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -17988,6 +17996,7 @@ declare const chipProps: z.ZodObject<{
17988
17996
  schRelative?: boolean | undefined;
17989
17997
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
17990
17998
  displayName?: string | undefined;
17999
+ datasheetUrl?: string | undefined;
17991
18000
  pinAttributes?: Record<string, {
17992
18001
  providesPower?: boolean | undefined;
17993
18002
  requiresPower?: boolean | undefined;
@@ -18270,6 +18279,7 @@ declare const chipProps: z.ZodObject<{
18270
18279
  schRelative?: boolean | undefined;
18271
18280
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
18272
18281
  displayName?: string | undefined;
18282
+ datasheetUrl?: string | undefined;
18273
18283
  pinAttributes?: Record<string, {
18274
18284
  providesPower?: boolean | undefined;
18275
18285
  requiresPower?: boolean | undefined;
@@ -18594,6 +18604,7 @@ declare const bugProps: z.ZodObject<{
18594
18604
  key: z.ZodOptional<z.ZodAny>;
18595
18605
  name: z.ZodString;
18596
18606
  displayName: z.ZodOptional<z.ZodString>;
18607
+ datasheetUrl: z.ZodOptional<z.ZodString>;
18597
18608
  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<{
18598
18609
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
18599
18610
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -19512,6 +19523,7 @@ declare const bugProps: z.ZodObject<{
19512
19523
  schRelative?: boolean | undefined;
19513
19524
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
19514
19525
  displayName?: string | undefined;
19526
+ datasheetUrl?: string | undefined;
19515
19527
  pinAttributes?: Record<string, {
19516
19528
  providesPower?: boolean | undefined;
19517
19529
  requiresPower?: boolean | undefined;
@@ -19794,6 +19806,7 @@ declare const bugProps: z.ZodObject<{
19794
19806
  schRelative?: boolean | undefined;
19795
19807
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
19796
19808
  displayName?: string | undefined;
19809
+ datasheetUrl?: string | undefined;
19797
19810
  pinAttributes?: Record<string, {
19798
19811
  providesPower?: boolean | undefined;
19799
19812
  requiresPower?: boolean | undefined;
@@ -20117,6 +20130,7 @@ declare const pinoutProps: z.ZodObject<{
20117
20130
  key: z.ZodOptional<z.ZodAny>;
20118
20131
  name: z.ZodString;
20119
20132
  displayName: z.ZodOptional<z.ZodString>;
20133
+ datasheetUrl: z.ZodOptional<z.ZodString>;
20120
20134
  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<{
20121
20135
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
20122
20136
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -21035,6 +21049,7 @@ declare const pinoutProps: z.ZodObject<{
21035
21049
  schRelative?: boolean | undefined;
21036
21050
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
21037
21051
  displayName?: string | undefined;
21052
+ datasheetUrl?: string | undefined;
21038
21053
  pinAttributes?: Record<string, {
21039
21054
  providesPower?: boolean | undefined;
21040
21055
  requiresPower?: boolean | undefined;
@@ -21317,6 +21332,7 @@ declare const pinoutProps: z.ZodObject<{
21317
21332
  schRelative?: boolean | undefined;
21318
21333
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
21319
21334
  displayName?: string | undefined;
21335
+ datasheetUrl?: string | undefined;
21320
21336
  pinAttributes?: Record<string, {
21321
21337
  providesPower?: boolean | undefined;
21322
21338
  requiresPower?: boolean | undefined;
@@ -21672,6 +21688,7 @@ declare const jumperProps: z.ZodObject<{
21672
21688
  key: z.ZodOptional<z.ZodAny>;
21673
21689
  name: z.ZodString;
21674
21690
  displayName: z.ZodOptional<z.ZodString>;
21691
+ datasheetUrl: z.ZodOptional<z.ZodString>;
21675
21692
  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<{
21676
21693
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
21677
21694
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -22579,6 +22596,7 @@ declare const jumperProps: z.ZodObject<{
22579
22596
  schRelative?: boolean | undefined;
22580
22597
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
22581
22598
  displayName?: string | undefined;
22599
+ datasheetUrl?: string | undefined;
22582
22600
  pinAttributes?: Record<string, {
22583
22601
  providesPower?: boolean | undefined;
22584
22602
  requiresPower?: boolean | undefined;
@@ -22856,6 +22874,7 @@ declare const jumperProps: z.ZodObject<{
22856
22874
  schRelative?: boolean | undefined;
22857
22875
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
22858
22876
  displayName?: string | undefined;
22877
+ datasheetUrl?: string | undefined;
22859
22878
  pinAttributes?: Record<string, {
22860
22879
  providesPower?: boolean | undefined;
22861
22880
  requiresPower?: boolean | undefined;
@@ -23183,6 +23202,7 @@ declare const solderjumperProps: z.ZodObject<{
23183
23202
  key: z.ZodOptional<z.ZodAny>;
23184
23203
  name: z.ZodString;
23185
23204
  displayName: z.ZodOptional<z.ZodString>;
23205
+ datasheetUrl: z.ZodOptional<z.ZodString>;
23186
23206
  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<{
23187
23207
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
23188
23208
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -24093,6 +24113,7 @@ declare const solderjumperProps: z.ZodObject<{
24093
24113
  schRelative?: boolean | undefined;
24094
24114
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
24095
24115
  displayName?: string | undefined;
24116
+ datasheetUrl?: string | undefined;
24096
24117
  pinAttributes?: Record<string, {
24097
24118
  providesPower?: boolean | undefined;
24098
24119
  requiresPower?: boolean | undefined;
@@ -24372,6 +24393,7 @@ declare const solderjumperProps: z.ZodObject<{
24372
24393
  schRelative?: boolean | undefined;
24373
24394
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
24374
24395
  displayName?: string | undefined;
24396
+ datasheetUrl?: string | undefined;
24375
24397
  pinAttributes?: Record<string, {
24376
24398
  providesPower?: boolean | undefined;
24377
24399
  requiresPower?: boolean | undefined;
@@ -24710,6 +24732,7 @@ declare const connectorProps: z.ZodObject<{
24710
24732
  key: z.ZodOptional<z.ZodAny>;
24711
24733
  name: z.ZodString;
24712
24734
  displayName: z.ZodOptional<z.ZodString>;
24735
+ datasheetUrl: z.ZodOptional<z.ZodString>;
24713
24736
  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<{
24714
24737
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
24715
24738
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -25515,6 +25538,7 @@ declare const connectorProps: z.ZodObject<{
25515
25538
  schRelative?: boolean | undefined;
25516
25539
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
25517
25540
  displayName?: string | undefined;
25541
+ datasheetUrl?: string | undefined;
25518
25542
  pinAttributes?: Record<string, {
25519
25543
  providesPower?: boolean | undefined;
25520
25544
  requiresPower?: boolean | undefined;
@@ -25764,6 +25788,7 @@ declare const connectorProps: z.ZodObject<{
25764
25788
  schRelative?: boolean | undefined;
25765
25789
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
25766
25790
  displayName?: string | undefined;
25791
+ datasheetUrl?: string | undefined;
25767
25792
  pinAttributes?: Record<string, {
25768
25793
  providesPower?: boolean | undefined;
25769
25794
  requiresPower?: boolean | undefined;
@@ -26062,6 +26087,7 @@ declare const interconnectProps: z.ZodObject<{
26062
26087
  key: z.ZodOptional<z.ZodAny>;
26063
26088
  name: z.ZodString;
26064
26089
  displayName: z.ZodOptional<z.ZodString>;
26090
+ datasheetUrl: z.ZodOptional<z.ZodString>;
26065
26091
  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<{
26066
26092
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
26067
26093
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -26734,6 +26760,7 @@ declare const interconnectProps: z.ZodObject<{
26734
26760
  schRelative?: boolean | undefined;
26735
26761
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
26736
26762
  displayName?: string | undefined;
26763
+ datasheetUrl?: string | undefined;
26737
26764
  pinAttributes?: Record<string, {
26738
26765
  providesPower?: boolean | undefined;
26739
26766
  requiresPower?: boolean | undefined;
@@ -26942,6 +26969,7 @@ declare const interconnectProps: z.ZodObject<{
26942
26969
  schRelative?: boolean | undefined;
26943
26970
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
26944
26971
  displayName?: string | undefined;
26972
+ datasheetUrl?: string | undefined;
26945
26973
  pinAttributes?: Record<string, {
26946
26974
  providesPower?: boolean | undefined;
26947
26975
  requiresPower?: boolean | undefined;
@@ -27217,6 +27245,7 @@ declare const fuseProps: z.ZodObject<{
27217
27245
  key: z.ZodOptional<z.ZodAny>;
27218
27246
  name: z.ZodString;
27219
27247
  displayName: z.ZodOptional<z.ZodString>;
27248
+ datasheetUrl: z.ZodOptional<z.ZodString>;
27220
27249
  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<{
27221
27250
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
27222
27251
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -27892,6 +27921,7 @@ declare const fuseProps: z.ZodObject<{
27892
27921
  schRelative?: boolean | undefined;
27893
27922
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27894
27923
  displayName?: string | undefined;
27924
+ datasheetUrl?: string | undefined;
27895
27925
  pinAttributes?: Record<string, {
27896
27926
  providesPower?: boolean | undefined;
27897
27927
  requiresPower?: boolean | undefined;
@@ -28102,6 +28132,7 @@ declare const fuseProps: z.ZodObject<{
28102
28132
  schRelative?: boolean | undefined;
28103
28133
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28104
28134
  displayName?: string | undefined;
28135
+ datasheetUrl?: string | undefined;
28105
28136
  pinAttributes?: Record<string, {
28106
28137
  providesPower?: boolean | undefined;
28107
28138
  requiresPower?: boolean | undefined;
@@ -29954,6 +29985,7 @@ declare const resistorProps: z.ZodObject<{
29954
29985
  key: z.ZodOptional<z.ZodAny>;
29955
29986
  name: z.ZodString;
29956
29987
  displayName: z.ZodOptional<z.ZodString>;
29988
+ datasheetUrl: z.ZodOptional<z.ZodString>;
29957
29989
  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<{
29958
29990
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
29959
29991
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -30632,6 +30664,7 @@ declare const resistorProps: z.ZodObject<{
30632
30664
  schRelative?: boolean | undefined;
30633
30665
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30634
30666
  displayName?: string | undefined;
30667
+ datasheetUrl?: string | undefined;
30635
30668
  pinAttributes?: Record<string, {
30636
30669
  providesPower?: boolean | undefined;
30637
30670
  requiresPower?: boolean | undefined;
@@ -30845,6 +30878,7 @@ declare const resistorProps: z.ZodObject<{
30845
30878
  schRelative?: boolean | undefined;
30846
30879
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30847
30880
  displayName?: string | undefined;
30881
+ datasheetUrl?: string | undefined;
30848
30882
  pinAttributes?: Record<string, {
30849
30883
  providesPower?: boolean | undefined;
30850
30884
  requiresPower?: boolean | undefined;
@@ -31103,6 +31137,7 @@ declare const potentiometerProps: z.ZodObject<{
31103
31137
  key: z.ZodOptional<z.ZodAny>;
31104
31138
  name: z.ZodString;
31105
31139
  displayName: z.ZodOptional<z.ZodString>;
31140
+ datasheetUrl: z.ZodOptional<z.ZodString>;
31106
31141
  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<{
31107
31142
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
31108
31143
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -31775,6 +31810,7 @@ declare const potentiometerProps: z.ZodObject<{
31775
31810
  schRelative?: boolean | undefined;
31776
31811
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
31777
31812
  displayName?: string | undefined;
31813
+ datasheetUrl?: string | undefined;
31778
31814
  pinAttributes?: Record<string, {
31779
31815
  providesPower?: boolean | undefined;
31780
31816
  requiresPower?: boolean | undefined;
@@ -31982,6 +32018,7 @@ declare const potentiometerProps: z.ZodObject<{
31982
32018
  schRelative?: boolean | undefined;
31983
32019
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
31984
32020
  displayName?: string | undefined;
32021
+ datasheetUrl?: string | undefined;
31985
32022
  pinAttributes?: Record<string, {
31986
32023
  providesPower?: boolean | undefined;
31987
32024
  requiresPower?: boolean | undefined;
@@ -32240,6 +32277,7 @@ declare const crystalProps: z.ZodObject<{
32240
32277
  key: z.ZodOptional<z.ZodAny>;
32241
32278
  name: z.ZodString;
32242
32279
  displayName: z.ZodOptional<z.ZodString>;
32280
+ datasheetUrl: z.ZodOptional<z.ZodString>;
32243
32281
  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<{
32244
32282
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
32245
32283
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -32918,6 +32956,7 @@ declare const crystalProps: z.ZodObject<{
32918
32956
  schRelative?: boolean | undefined;
32919
32957
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
32920
32958
  displayName?: string | undefined;
32959
+ datasheetUrl?: string | undefined;
32921
32960
  pinAttributes?: Record<string, {
32922
32961
  providesPower?: boolean | undefined;
32923
32962
  requiresPower?: boolean | undefined;
@@ -33130,6 +33169,7 @@ declare const crystalProps: z.ZodObject<{
33130
33169
  schRelative?: boolean | undefined;
33131
33170
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
33132
33171
  displayName?: string | undefined;
33172
+ datasheetUrl?: string | undefined;
33133
33173
  pinAttributes?: Record<string, {
33134
33174
  providesPower?: boolean | undefined;
33135
33175
  requiresPower?: boolean | undefined;
@@ -33386,6 +33426,7 @@ declare const resonatorProps: z.ZodObject<{
33386
33426
  key: z.ZodOptional<z.ZodAny>;
33387
33427
  name: z.ZodString;
33388
33428
  displayName: z.ZodOptional<z.ZodString>;
33429
+ datasheetUrl: z.ZodOptional<z.ZodString>;
33389
33430
  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<{
33390
33431
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
33391
33432
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -34060,6 +34101,7 @@ declare const resonatorProps: z.ZodObject<{
34060
34101
  schRelative?: boolean | undefined;
34061
34102
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34062
34103
  displayName?: string | undefined;
34104
+ datasheetUrl?: string | undefined;
34063
34105
  pinAttributes?: Record<string, {
34064
34106
  providesPower?: boolean | undefined;
34065
34107
  requiresPower?: boolean | undefined;
@@ -34268,6 +34310,7 @@ declare const resonatorProps: z.ZodObject<{
34268
34310
  schRelative?: boolean | undefined;
34269
34311
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34270
34312
  displayName?: string | undefined;
34313
+ datasheetUrl?: string | undefined;
34271
34314
  pinAttributes?: Record<string, {
34272
34315
  providesPower?: boolean | undefined;
34273
34316
  requiresPower?: boolean | undefined;
@@ -35976,6 +36019,7 @@ declare const capacitorProps: z.ZodObject<{
35976
36019
  key: z.ZodOptional<z.ZodAny>;
35977
36020
  name: z.ZodString;
35978
36021
  displayName: z.ZodOptional<z.ZodString>;
36022
+ datasheetUrl: z.ZodOptional<z.ZodString>;
35979
36023
  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<{
35980
36024
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
35981
36025
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -36660,6 +36704,7 @@ declare const capacitorProps: z.ZodObject<{
36660
36704
  schRelative?: boolean | undefined;
36661
36705
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36662
36706
  displayName?: string | undefined;
36707
+ datasheetUrl?: string | undefined;
36663
36708
  pinAttributes?: Record<string, {
36664
36709
  providesPower?: boolean | undefined;
36665
36710
  requiresPower?: boolean | undefined;
@@ -36875,6 +36920,7 @@ declare const capacitorProps: z.ZodObject<{
36875
36920
  schRelative?: boolean | undefined;
36876
36921
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36877
36922
  displayName?: string | undefined;
36923
+ datasheetUrl?: string | undefined;
36878
36924
  pinAttributes?: Record<string, {
36879
36925
  providesPower?: boolean | undefined;
36880
36926
  requiresPower?: boolean | undefined;
@@ -37163,6 +37209,7 @@ declare const fiducialProps: z.ZodObject<{
37163
37209
  key: z.ZodOptional<z.ZodAny>;
37164
37210
  name: z.ZodString;
37165
37211
  displayName: z.ZodOptional<z.ZodString>;
37212
+ datasheetUrl: z.ZodOptional<z.ZodString>;
37166
37213
  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<{
37167
37214
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
37168
37215
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -37834,6 +37881,7 @@ declare const fiducialProps: z.ZodObject<{
37834
37881
  schRelative?: boolean | undefined;
37835
37882
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
37836
37883
  displayName?: string | undefined;
37884
+ datasheetUrl?: string | undefined;
37837
37885
  pinAttributes?: Record<string, {
37838
37886
  providesPower?: boolean | undefined;
37839
37887
  requiresPower?: boolean | undefined;
@@ -38041,6 +38089,7 @@ declare const fiducialProps: z.ZodObject<{
38041
38089
  schRelative?: boolean | undefined;
38042
38090
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
38043
38091
  displayName?: string | undefined;
38092
+ datasheetUrl?: string | undefined;
38044
38093
  pinAttributes?: Record<string, {
38045
38094
  providesPower?: boolean | undefined;
38046
38095
  requiresPower?: boolean | undefined;
@@ -42446,6 +42495,7 @@ declare const batteryProps: z.ZodObject<{
42446
42495
  key: z.ZodOptional<z.ZodAny>;
42447
42496
  name: z.ZodString;
42448
42497
  displayName: z.ZodOptional<z.ZodString>;
42498
+ datasheetUrl: z.ZodOptional<z.ZodString>;
42449
42499
  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<{
42450
42500
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
42451
42501
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -43119,6 +43169,7 @@ declare const batteryProps: z.ZodObject<{
43119
43169
  schRelative?: boolean | undefined;
43120
43170
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
43121
43171
  displayName?: string | undefined;
43172
+ datasheetUrl?: string | undefined;
43122
43173
  pinAttributes?: Record<string, {
43123
43174
  providesPower?: boolean | undefined;
43124
43175
  requiresPower?: boolean | undefined;
@@ -43328,6 +43379,7 @@ declare const batteryProps: z.ZodObject<{
43328
43379
  schRelative?: boolean | undefined;
43329
43380
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
43330
43381
  displayName?: string | undefined;
43382
+ datasheetUrl?: string | undefined;
43331
43383
  pinAttributes?: Record<string, {
43332
43384
  providesPower?: boolean | undefined;
43333
43385
  requiresPower?: boolean | undefined;
@@ -43659,6 +43711,7 @@ declare const pinHeaderProps: z.ZodObject<{
43659
43711
  key: z.ZodOptional<z.ZodAny>;
43660
43712
  name: z.ZodString;
43661
43713
  displayName: z.ZodOptional<z.ZodString>;
43714
+ datasheetUrl: z.ZodOptional<z.ZodString>;
43662
43715
  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<{
43663
43716
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
43664
43717
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -44475,6 +44528,7 @@ declare const pinHeaderProps: z.ZodObject<{
44475
44528
  schRelative?: boolean | undefined;
44476
44529
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
44477
44530
  displayName?: string | undefined;
44531
+ datasheetUrl?: string | undefined;
44478
44532
  pinAttributes?: Record<string, {
44479
44533
  providesPower?: boolean | undefined;
44480
44534
  requiresPower?: boolean | undefined;
@@ -44732,6 +44786,7 @@ declare const pinHeaderProps: z.ZodObject<{
44732
44786
  schRelative?: boolean | undefined;
44733
44787
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
44734
44788
  displayName?: string | undefined;
44789
+ datasheetUrl?: string | undefined;
44735
44790
  pinAttributes?: Record<string, {
44736
44791
  providesPower?: boolean | undefined;
44737
44792
  requiresPower?: boolean | undefined;
@@ -45100,6 +45155,7 @@ declare const pushButtonProps: z.ZodObject<{
45100
45155
  key: z.ZodOptional<z.ZodAny>;
45101
45156
  name: z.ZodString;
45102
45157
  displayName: z.ZodOptional<z.ZodString>;
45158
+ datasheetUrl: z.ZodOptional<z.ZodString>;
45103
45159
  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<{
45104
45160
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
45105
45161
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -46018,6 +46074,7 @@ declare const pushButtonProps: z.ZodObject<{
46018
46074
  schRelative?: boolean | undefined;
46019
46075
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
46020
46076
  displayName?: string | undefined;
46077
+ datasheetUrl?: string | undefined;
46021
46078
  pinAttributes?: Record<string, {
46022
46079
  providesPower?: boolean | undefined;
46023
46080
  requiresPower?: boolean | undefined;
@@ -46300,6 +46357,7 @@ declare const pushButtonProps: z.ZodObject<{
46300
46357
  schRelative?: boolean | undefined;
46301
46358
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
46302
46359
  displayName?: string | undefined;
46360
+ datasheetUrl?: string | undefined;
46303
46361
  pinAttributes?: Record<string, {
46304
46362
  providesPower?: boolean | undefined;
46305
46363
  requiresPower?: boolean | undefined;
@@ -47993,6 +48051,7 @@ declare const transistorProps: z.ZodObject<{
47993
48051
  key: z.ZodOptional<z.ZodAny>;
47994
48052
  name: z.ZodString;
47995
48053
  displayName: z.ZodOptional<z.ZodString>;
48054
+ datasheetUrl: z.ZodOptional<z.ZodString>;
47996
48055
  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<{
47997
48056
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
47998
48057
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -48665,6 +48724,7 @@ declare const transistorProps: z.ZodObject<{
48665
48724
  schRelative?: boolean | undefined;
48666
48725
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
48667
48726
  displayName?: string | undefined;
48727
+ datasheetUrl?: string | undefined;
48668
48728
  pinAttributes?: Record<string, {
48669
48729
  providesPower?: boolean | undefined;
48670
48730
  requiresPower?: boolean | undefined;
@@ -48872,6 +48932,7 @@ declare const transistorProps: z.ZodObject<{
48872
48932
  schRelative?: boolean | undefined;
48873
48933
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
48874
48934
  displayName?: string | undefined;
48935
+ datasheetUrl?: string | undefined;
48875
48936
  pinAttributes?: Record<string, {
48876
48937
  providesPower?: boolean | undefined;
48877
48938
  requiresPower?: boolean | undefined;
@@ -49124,6 +49185,7 @@ declare const mosfetProps: z.ZodObject<{
49124
49185
  key: z.ZodOptional<z.ZodAny>;
49125
49186
  name: z.ZodString;
49126
49187
  displayName: z.ZodOptional<z.ZodString>;
49188
+ datasheetUrl: z.ZodOptional<z.ZodString>;
49127
49189
  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<{
49128
49190
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
49129
49191
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -49797,6 +49859,7 @@ declare const mosfetProps: z.ZodObject<{
49797
49859
  schRelative?: boolean | undefined;
49798
49860
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
49799
49861
  displayName?: string | undefined;
49862
+ datasheetUrl?: string | undefined;
49800
49863
  pinAttributes?: Record<string, {
49801
49864
  providesPower?: boolean | undefined;
49802
49865
  requiresPower?: boolean | undefined;
@@ -50004,6 +50067,7 @@ declare const mosfetProps: z.ZodObject<{
50004
50067
  schRelative?: boolean | undefined;
50005
50068
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
50006
50069
  displayName?: string | undefined;
50070
+ datasheetUrl?: string | undefined;
50007
50071
  pinAttributes?: Record<string, {
50008
50072
  providesPower?: boolean | undefined;
50009
50073
  requiresPower?: boolean | undefined;
@@ -50262,6 +50326,7 @@ declare const opampProps: z.ZodObject<{
50262
50326
  key: z.ZodOptional<z.ZodAny>;
50263
50327
  name: z.ZodString;
50264
50328
  displayName: z.ZodOptional<z.ZodString>;
50329
+ datasheetUrl: z.ZodOptional<z.ZodString>;
50265
50330
  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<{
50266
50331
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
50267
50332
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -50932,6 +50997,7 @@ declare const opampProps: z.ZodObject<{
50932
50997
  schRelative?: boolean | undefined;
50933
50998
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
50934
50999
  displayName?: string | undefined;
51000
+ datasheetUrl?: string | undefined;
50935
51001
  pinAttributes?: Record<string, {
50936
51002
  providesPower?: boolean | undefined;
50937
51003
  requiresPower?: boolean | undefined;
@@ -51138,6 +51204,7 @@ declare const opampProps: z.ZodObject<{
51138
51204
  schRelative?: boolean | undefined;
51139
51205
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
51140
51206
  displayName?: string | undefined;
51207
+ datasheetUrl?: string | undefined;
51141
51208
  pinAttributes?: Record<string, {
51142
51209
  providesPower?: boolean | undefined;
51143
51210
  requiresPower?: boolean | undefined;
@@ -51397,6 +51464,7 @@ declare const inductorProps: z.ZodObject<{
51397
51464
  key: z.ZodOptional<z.ZodAny>;
51398
51465
  name: z.ZodString;
51399
51466
  displayName: z.ZodOptional<z.ZodString>;
51467
+ datasheetUrl: z.ZodOptional<z.ZodString>;
51400
51468
  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<{
51401
51469
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
51402
51470
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -52071,6 +52139,7 @@ declare const inductorProps: z.ZodObject<{
52071
52139
  schRelative?: boolean | undefined;
52072
52140
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
52073
52141
  displayName?: string | undefined;
52142
+ datasheetUrl?: string | undefined;
52074
52143
  pinAttributes?: Record<string, {
52075
52144
  providesPower?: boolean | undefined;
52076
52145
  requiresPower?: boolean | undefined;
@@ -52280,6 +52349,7 @@ declare const inductorProps: z.ZodObject<{
52280
52349
  schRelative?: boolean | undefined;
52281
52350
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
52282
52351
  displayName?: string | undefined;
52352
+ datasheetUrl?: string | undefined;
52283
52353
  pinAttributes?: Record<string, {
52284
52354
  providesPower?: boolean | undefined;
52285
52355
  requiresPower?: boolean | undefined;
@@ -52528,6 +52598,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
52528
52598
  key: z.ZodOptional<z.ZodAny>;
52529
52599
  name: z.ZodString;
52530
52600
  displayName: z.ZodOptional<z.ZodString>;
52601
+ datasheetUrl: z.ZodOptional<z.ZodString>;
52531
52602
  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<{
52532
52603
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
52533
52604
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -53207,6 +53278,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
53207
53278
  schRelative?: boolean | undefined;
53208
53279
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53209
53280
  displayName?: string | undefined;
53281
+ datasheetUrl?: string | undefined;
53210
53282
  pinAttributes?: Record<string, {
53211
53283
  providesPower?: boolean | undefined;
53212
53284
  requiresPower?: boolean | undefined;
@@ -53420,6 +53492,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
53420
53492
  schRelative?: boolean | undefined;
53421
53493
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53422
53494
  displayName?: string | undefined;
53495
+ datasheetUrl?: string | undefined;
53423
53496
  pinAttributes?: Record<string, {
53424
53497
  providesPower?: boolean | undefined;
53425
53498
  requiresPower?: boolean | undefined;
@@ -53633,6 +53706,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
53633
53706
  schRelative?: boolean | undefined;
53634
53707
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53635
53708
  displayName?: string | undefined;
53709
+ datasheetUrl?: string | undefined;
53636
53710
  pinAttributes?: Record<string, {
53637
53711
  providesPower?: boolean | undefined;
53638
53712
  requiresPower?: boolean | undefined;
@@ -53846,6 +53920,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
53846
53920
  schRelative?: boolean | undefined;
53847
53921
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53848
53922
  displayName?: string | undefined;
53923
+ datasheetUrl?: string | undefined;
53849
53924
  pinAttributes?: Record<string, {
53850
53925
  providesPower?: boolean | undefined;
53851
53926
  requiresPower?: boolean | undefined;
@@ -54065,6 +54140,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
54065
54140
  schRelative?: boolean | undefined;
54066
54141
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54067
54142
  displayName?: string | undefined;
54143
+ datasheetUrl?: string | undefined;
54068
54144
  pinAttributes?: Record<string, {
54069
54145
  providesPower?: boolean | undefined;
54070
54146
  requiresPower?: boolean | undefined;
@@ -54272,6 +54348,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
54272
54348
  schRelative?: boolean | undefined;
54273
54349
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54274
54350
  displayName?: string | undefined;
54351
+ datasheetUrl?: string | undefined;
54275
54352
  pinAttributes?: Record<string, {
54276
54353
  providesPower?: boolean | undefined;
54277
54354
  requiresPower?: boolean | undefined;
@@ -54548,6 +54625,7 @@ declare const ledProps: z.ZodObject<{
54548
54625
  key: z.ZodOptional<z.ZodAny>;
54549
54626
  name: z.ZodString;
54550
54627
  displayName: z.ZodOptional<z.ZodString>;
54628
+ datasheetUrl: z.ZodOptional<z.ZodString>;
54551
54629
  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<{
54552
54630
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
54553
54631
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -55223,6 +55301,7 @@ declare const ledProps: z.ZodObject<{
55223
55301
  schRelative?: boolean | undefined;
55224
55302
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55225
55303
  displayName?: string | undefined;
55304
+ datasheetUrl?: string | undefined;
55226
55305
  pinAttributes?: Record<string, {
55227
55306
  providesPower?: boolean | undefined;
55228
55307
  requiresPower?: boolean | undefined;
@@ -55434,6 +55513,7 @@ declare const ledProps: z.ZodObject<{
55434
55513
  schRelative?: boolean | undefined;
55435
55514
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55436
55515
  displayName?: string | undefined;
55516
+ datasheetUrl?: string | undefined;
55437
55517
  pinAttributes?: Record<string, {
55438
55518
  providesPower?: boolean | undefined;
55439
55519
  requiresPower?: boolean | undefined;
@@ -55701,6 +55781,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
55701
55781
  key: z.ZodOptional<z.ZodAny>;
55702
55782
  name: z.ZodString;
55703
55783
  displayName: z.ZodOptional<z.ZodString>;
55784
+ datasheetUrl: z.ZodOptional<z.ZodString>;
55704
55785
  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<{
55705
55786
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
55706
55787
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -56384,6 +56465,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
56384
56465
  schRelative?: boolean | undefined;
56385
56466
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
56386
56467
  displayName?: string | undefined;
56468
+ datasheetUrl?: string | undefined;
56387
56469
  pinAttributes?: Record<string, {
56388
56470
  providesPower?: boolean | undefined;
56389
56471
  requiresPower?: boolean | undefined;
@@ -56600,6 +56682,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
56600
56682
  schRelative?: boolean | undefined;
56601
56683
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
56602
56684
  displayName?: string | undefined;
56685
+ datasheetUrl?: string | undefined;
56603
56686
  pinAttributes?: Record<string, {
56604
56687
  providesPower?: boolean | undefined;
56605
56688
  requiresPower?: boolean | undefined;
@@ -56817,6 +56900,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
56817
56900
  schRelative?: boolean | undefined;
56818
56901
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
56819
56902
  displayName?: string | undefined;
56903
+ datasheetUrl?: string | undefined;
56820
56904
  pinAttributes?: Record<string, {
56821
56905
  providesPower?: boolean | undefined;
56822
56906
  requiresPower?: boolean | undefined;
@@ -58066,6 +58150,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
58066
58150
  key: z.ZodOptional<z.ZodAny>;
58067
58151
  name: z.ZodString;
58068
58152
  displayName: z.ZodOptional<z.ZodString>;
58153
+ datasheetUrl: z.ZodOptional<z.ZodString>;
58069
58154
  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<{
58070
58155
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
58071
58156
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -58749,6 +58834,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
58749
58834
  schRelative?: boolean | undefined;
58750
58835
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
58751
58836
  displayName?: string | undefined;
58837
+ datasheetUrl?: string | undefined;
58752
58838
  pinAttributes?: Record<string, {
58753
58839
  providesPower?: boolean | undefined;
58754
58840
  requiresPower?: boolean | undefined;
@@ -58962,6 +59048,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
58962
59048
  schRelative?: boolean | undefined;
58963
59049
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
58964
59050
  displayName?: string | undefined;
59051
+ datasheetUrl?: string | undefined;
58965
59052
  pinAttributes?: Record<string, {
58966
59053
  providesPower?: boolean | undefined;
58967
59054
  requiresPower?: boolean | undefined;
@@ -59175,6 +59262,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
59175
59262
  schRelative?: boolean | undefined;
59176
59263
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
59177
59264
  displayName?: string | undefined;
59265
+ datasheetUrl?: string | undefined;
59178
59266
  pinAttributes?: Record<string, {
59179
59267
  providesPower?: boolean | undefined;
59180
59268
  requiresPower?: boolean | undefined;
@@ -59388,6 +59476,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
59388
59476
  schRelative?: boolean | undefined;
59389
59477
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
59390
59478
  displayName?: string | undefined;
59479
+ datasheetUrl?: string | undefined;
59391
59480
  pinAttributes?: Record<string, {
59392
59481
  providesPower?: boolean | undefined;
59393
59482
  requiresPower?: boolean | undefined;
@@ -60576,6 +60665,7 @@ declare const powerSourceProps: z.ZodObject<{
60576
60665
  key: z.ZodOptional<z.ZodAny>;
60577
60666
  name: z.ZodString;
60578
60667
  displayName: z.ZodOptional<z.ZodString>;
60668
+ datasheetUrl: z.ZodOptional<z.ZodString>;
60579
60669
  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<{
60580
60670
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
60581
60671
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -61247,6 +61337,7 @@ declare const powerSourceProps: z.ZodObject<{
61247
61337
  schRelative?: boolean | undefined;
61248
61338
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
61249
61339
  displayName?: string | undefined;
61340
+ datasheetUrl?: string | undefined;
61250
61341
  pinAttributes?: Record<string, {
61251
61342
  providesPower?: boolean | undefined;
61252
61343
  requiresPower?: boolean | undefined;
@@ -61453,6 +61544,7 @@ declare const powerSourceProps: z.ZodObject<{
61453
61544
  schRelative?: boolean | undefined;
61454
61545
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
61455
61546
  displayName?: string | undefined;
61547
+ datasheetUrl?: string | undefined;
61456
61548
  pinAttributes?: Record<string, {
61457
61549
  providesPower?: boolean | undefined;
61458
61550
  requiresPower?: boolean | undefined;
@@ -61711,6 +61803,7 @@ declare const voltageSourceProps: z.ZodObject<{
61711
61803
  key: z.ZodOptional<z.ZodAny>;
61712
61804
  name: z.ZodString;
61713
61805
  displayName: z.ZodOptional<z.ZodString>;
61806
+ datasheetUrl: z.ZodOptional<z.ZodString>;
61714
61807
  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<{
61715
61808
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
61716
61809
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -62387,6 +62480,7 @@ declare const voltageSourceProps: z.ZodObject<{
62387
62480
  schRelative?: boolean | undefined;
62388
62481
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
62389
62482
  displayName?: string | undefined;
62483
+ datasheetUrl?: string | undefined;
62390
62484
  pinAttributes?: Record<string, {
62391
62485
  providesPower?: boolean | undefined;
62392
62486
  requiresPower?: boolean | undefined;
@@ -62599,6 +62693,7 @@ declare const voltageSourceProps: z.ZodObject<{
62599
62693
  schRelative?: boolean | undefined;
62600
62694
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
62601
62695
  displayName?: string | undefined;
62696
+ datasheetUrl?: string | undefined;
62602
62697
  pinAttributes?: Record<string, {
62603
62698
  providesPower?: boolean | undefined;
62604
62699
  requiresPower?: boolean | undefined;
@@ -62863,6 +62958,7 @@ declare const currentSourceProps: z.ZodObject<{
62863
62958
  key: z.ZodOptional<z.ZodAny>;
62864
62959
  name: z.ZodString;
62865
62960
  displayName: z.ZodOptional<z.ZodString>;
62961
+ datasheetUrl: z.ZodOptional<z.ZodString>;
62866
62962
  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<{
62867
62963
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
62868
62964
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -63539,6 +63635,7 @@ declare const currentSourceProps: z.ZodObject<{
63539
63635
  schRelative?: boolean | undefined;
63540
63636
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
63541
63637
  displayName?: string | undefined;
63638
+ datasheetUrl?: string | undefined;
63542
63639
  pinAttributes?: Record<string, {
63543
63640
  providesPower?: boolean | undefined;
63544
63641
  requiresPower?: boolean | undefined;
@@ -63751,6 +63848,7 @@ declare const currentSourceProps: z.ZodObject<{
63751
63848
  schRelative?: boolean | undefined;
63752
63849
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
63753
63850
  displayName?: string | undefined;
63851
+ datasheetUrl?: string | undefined;
63754
63852
  pinAttributes?: Record<string, {
63755
63853
  providesPower?: boolean | undefined;
63756
63854
  requiresPower?: boolean | undefined;
@@ -64010,6 +64108,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
64010
64108
  key: z.ZodOptional<z.ZodAny>;
64011
64109
  name: z.ZodString;
64012
64110
  displayName: z.ZodOptional<z.ZodString>;
64111
+ datasheetUrl: z.ZodOptional<z.ZodString>;
64013
64112
  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<{
64014
64113
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
64015
64114
  x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -64684,6 +64783,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
64684
64783
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
64685
64784
  name?: string | undefined;
64686
64785
  displayName?: string | undefined;
64786
+ datasheetUrl?: string | undefined;
64687
64787
  pinAttributes?: Record<string, {
64688
64788
  providesPower?: boolean | undefined;
64689
64789
  requiresPower?: boolean | undefined;
@@ -64892,6 +64992,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
64892
64992
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
64893
64993
  name?: string | undefined;
64894
64994
  displayName?: string | undefined;
64995
+ datasheetUrl?: string | undefined;
64895
64996
  pinAttributes?: Record<string, {
64896
64997
  providesPower?: boolean | undefined;
64897
64998
  requiresPower?: boolean | undefined;