@tscircuit/props 0.0.443 → 0.0.445
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 +105 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +2 -0
- package/lib/components/group.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;
|
|
@@ -5667,6 +5674,7 @@ interface AutorouterConfig {
|
|
|
5667
5674
|
serverCacheEnabled?: boolean;
|
|
5668
5675
|
cache?: PcbRouteCache;
|
|
5669
5676
|
traceClearance?: Distance;
|
|
5677
|
+
availableJumperTypes?: Array<"1206x4" | "0603">;
|
|
5670
5678
|
groupMode?: "sequential_trace" | "subcircuit" | /** @deprecated Use "sequential_trace" */ "sequential-trace";
|
|
5671
5679
|
local?: boolean;
|
|
5672
5680
|
algorithmFn?: (simpleRouteJson: any) => Promise<any>;
|
|
@@ -5681,6 +5689,7 @@ declare const autorouterConfig: z.ZodObject<{
|
|
|
5681
5689
|
serverCacheEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
5682
5690
|
cache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
5683
5691
|
traceClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5692
|
+
availableJumperTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["1206x4", "0603"]>, "many">>;
|
|
5684
5693
|
groupMode: z.ZodOptional<z.ZodEnum<["sequential_trace", "subcircuit", "sequential-trace"]>>;
|
|
5685
5694
|
algorithmFn: z.ZodOptional<z.ZodType<(simpleRouteJson: any) => Promise<any>, z.ZodTypeDef, (simpleRouteJson: any) => Promise<any>>>;
|
|
5686
5695
|
preset: z.ZodOptional<z.ZodEnum<["sequential_trace", "subcircuit", "auto", "auto_local", "auto_cloud", "auto_jumper", "tscircuit_beta", "freerouting", "laser_prefab", "auto-jumper", "sequential-trace", "auto-local", "auto-cloud"]>>;
|
|
@@ -5692,6 +5701,7 @@ declare const autorouterConfig: z.ZodObject<{
|
|
|
5692
5701
|
serverCacheEnabled?: boolean | undefined;
|
|
5693
5702
|
cache?: PcbRouteCache | undefined;
|
|
5694
5703
|
traceClearance?: number | undefined;
|
|
5704
|
+
availableJumperTypes?: ("0603" | "1206x4")[] | undefined;
|
|
5695
5705
|
groupMode?: "sequential_trace" | "subcircuit" | "sequential-trace" | undefined;
|
|
5696
5706
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
5697
5707
|
preset?: "auto" | "sequential_trace" | "subcircuit" | "sequential-trace" | "auto_local" | "auto_cloud" | "auto_jumper" | "tscircuit_beta" | "freerouting" | "laser_prefab" | "auto-jumper" | "auto-local" | "auto-cloud" | undefined;
|
|
@@ -5703,6 +5713,7 @@ declare const autorouterConfig: z.ZodObject<{
|
|
|
5703
5713
|
serverCacheEnabled?: boolean | undefined;
|
|
5704
5714
|
cache?: PcbRouteCache | undefined;
|
|
5705
5715
|
traceClearance?: string | number | undefined;
|
|
5716
|
+
availableJumperTypes?: ("0603" | "1206x4")[] | undefined;
|
|
5706
5717
|
groupMode?: "sequential_trace" | "subcircuit" | "sequential-trace" | undefined;
|
|
5707
5718
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
5708
5719
|
preset?: "auto" | "sequential_trace" | "subcircuit" | "sequential-trace" | "auto_local" | "auto_cloud" | "auto_jumper" | "tscircuit_beta" | "freerouting" | "laser_prefab" | "auto-jumper" | "auto-local" | "auto-cloud" | undefined;
|
|
@@ -17058,6 +17069,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
17058
17069
|
} & {
|
|
17059
17070
|
key: z.ZodOptional<z.ZodAny>;
|
|
17060
17071
|
name: z.ZodString;
|
|
17072
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
17061
17073
|
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
17074
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
17063
17075
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -17975,6 +17987,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
17975
17987
|
} | undefined;
|
|
17976
17988
|
schRelative?: boolean | undefined;
|
|
17977
17989
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
17990
|
+
displayName?: string | undefined;
|
|
17978
17991
|
pinAttributes?: Record<string, {
|
|
17979
17992
|
providesPower?: boolean | undefined;
|
|
17980
17993
|
requiresPower?: boolean | undefined;
|
|
@@ -18256,6 +18269,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
18256
18269
|
} | undefined;
|
|
18257
18270
|
schRelative?: boolean | undefined;
|
|
18258
18271
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
18272
|
+
displayName?: string | undefined;
|
|
18259
18273
|
pinAttributes?: Record<string, {
|
|
18260
18274
|
providesPower?: boolean | undefined;
|
|
18261
18275
|
requiresPower?: boolean | undefined;
|
|
@@ -18579,6 +18593,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
18579
18593
|
} & {
|
|
18580
18594
|
key: z.ZodOptional<z.ZodAny>;
|
|
18581
18595
|
name: z.ZodString;
|
|
18596
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
18582
18597
|
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
18598
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
18584
18599
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -19496,6 +19511,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
19496
19511
|
} | undefined;
|
|
19497
19512
|
schRelative?: boolean | undefined;
|
|
19498
19513
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
19514
|
+
displayName?: string | undefined;
|
|
19499
19515
|
pinAttributes?: Record<string, {
|
|
19500
19516
|
providesPower?: boolean | undefined;
|
|
19501
19517
|
requiresPower?: boolean | undefined;
|
|
@@ -19777,6 +19793,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
19777
19793
|
} | undefined;
|
|
19778
19794
|
schRelative?: boolean | undefined;
|
|
19779
19795
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
19796
|
+
displayName?: string | undefined;
|
|
19780
19797
|
pinAttributes?: Record<string, {
|
|
19781
19798
|
providesPower?: boolean | undefined;
|
|
19782
19799
|
requiresPower?: boolean | undefined;
|
|
@@ -20099,6 +20116,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
20099
20116
|
} & {
|
|
20100
20117
|
key: z.ZodOptional<z.ZodAny>;
|
|
20101
20118
|
name: z.ZodString;
|
|
20119
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
20102
20120
|
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
20121
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
20104
20122
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -21016,6 +21034,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
21016
21034
|
} | undefined;
|
|
21017
21035
|
schRelative?: boolean | undefined;
|
|
21018
21036
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21037
|
+
displayName?: string | undefined;
|
|
21019
21038
|
pinAttributes?: Record<string, {
|
|
21020
21039
|
providesPower?: boolean | undefined;
|
|
21021
21040
|
requiresPower?: boolean | undefined;
|
|
@@ -21297,6 +21316,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
21297
21316
|
} | undefined;
|
|
21298
21317
|
schRelative?: boolean | undefined;
|
|
21299
21318
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21319
|
+
displayName?: string | undefined;
|
|
21300
21320
|
pinAttributes?: Record<string, {
|
|
21301
21321
|
providesPower?: boolean | undefined;
|
|
21302
21322
|
requiresPower?: boolean | undefined;
|
|
@@ -21651,6 +21671,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
21651
21671
|
} & {
|
|
21652
21672
|
key: z.ZodOptional<z.ZodAny>;
|
|
21653
21673
|
name: z.ZodString;
|
|
21674
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
21654
21675
|
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
21676
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
21656
21677
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -22557,6 +22578,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
22557
22578
|
} | undefined;
|
|
22558
22579
|
schRelative?: boolean | undefined;
|
|
22559
22580
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22581
|
+
displayName?: string | undefined;
|
|
22560
22582
|
pinAttributes?: Record<string, {
|
|
22561
22583
|
providesPower?: boolean | undefined;
|
|
22562
22584
|
requiresPower?: boolean | undefined;
|
|
@@ -22833,6 +22855,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
22833
22855
|
} | undefined;
|
|
22834
22856
|
schRelative?: boolean | undefined;
|
|
22835
22857
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22858
|
+
displayName?: string | undefined;
|
|
22836
22859
|
pinAttributes?: Record<string, {
|
|
22837
22860
|
providesPower?: boolean | undefined;
|
|
22838
22861
|
requiresPower?: boolean | undefined;
|
|
@@ -23159,6 +23182,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
23159
23182
|
} & {
|
|
23160
23183
|
key: z.ZodOptional<z.ZodAny>;
|
|
23161
23184
|
name: z.ZodString;
|
|
23185
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
23162
23186
|
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
23187
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
23164
23188
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -24068,6 +24092,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
24068
24092
|
} | undefined;
|
|
24069
24093
|
schRelative?: boolean | undefined;
|
|
24070
24094
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
24095
|
+
displayName?: string | undefined;
|
|
24071
24096
|
pinAttributes?: Record<string, {
|
|
24072
24097
|
providesPower?: boolean | undefined;
|
|
24073
24098
|
requiresPower?: boolean | undefined;
|
|
@@ -24346,6 +24371,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
24346
24371
|
} | undefined;
|
|
24347
24372
|
schRelative?: boolean | undefined;
|
|
24348
24373
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
24374
|
+
displayName?: string | undefined;
|
|
24349
24375
|
pinAttributes?: Record<string, {
|
|
24350
24376
|
providesPower?: boolean | undefined;
|
|
24351
24377
|
requiresPower?: boolean | undefined;
|
|
@@ -24683,6 +24709,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
24683
24709
|
} & {
|
|
24684
24710
|
key: z.ZodOptional<z.ZodAny>;
|
|
24685
24711
|
name: z.ZodString;
|
|
24712
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
24686
24713
|
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
24714
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
24688
24715
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -25487,6 +25514,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
25487
25514
|
} | undefined;
|
|
25488
25515
|
schRelative?: boolean | undefined;
|
|
25489
25516
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
25517
|
+
displayName?: string | undefined;
|
|
25490
25518
|
pinAttributes?: Record<string, {
|
|
25491
25519
|
providesPower?: boolean | undefined;
|
|
25492
25520
|
requiresPower?: boolean | undefined;
|
|
@@ -25735,6 +25763,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
25735
25763
|
} | undefined;
|
|
25736
25764
|
schRelative?: boolean | undefined;
|
|
25737
25765
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
25766
|
+
displayName?: string | undefined;
|
|
25738
25767
|
pinAttributes?: Record<string, {
|
|
25739
25768
|
providesPower?: boolean | undefined;
|
|
25740
25769
|
requiresPower?: boolean | undefined;
|
|
@@ -26032,6 +26061,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
26032
26061
|
} & {
|
|
26033
26062
|
key: z.ZodOptional<z.ZodAny>;
|
|
26034
26063
|
name: z.ZodString;
|
|
26064
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
26035
26065
|
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
26066
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
26037
26067
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -26703,6 +26733,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
26703
26733
|
} | undefined;
|
|
26704
26734
|
schRelative?: boolean | undefined;
|
|
26705
26735
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
26736
|
+
displayName?: string | undefined;
|
|
26706
26737
|
pinAttributes?: Record<string, {
|
|
26707
26738
|
providesPower?: boolean | undefined;
|
|
26708
26739
|
requiresPower?: boolean | undefined;
|
|
@@ -26910,6 +26941,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
26910
26941
|
} | undefined;
|
|
26911
26942
|
schRelative?: boolean | undefined;
|
|
26912
26943
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
26944
|
+
displayName?: string | undefined;
|
|
26913
26945
|
pinAttributes?: Record<string, {
|
|
26914
26946
|
providesPower?: boolean | undefined;
|
|
26915
26947
|
requiresPower?: boolean | undefined;
|
|
@@ -27184,6 +27216,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
27184
27216
|
} & {
|
|
27185
27217
|
key: z.ZodOptional<z.ZodAny>;
|
|
27186
27218
|
name: z.ZodString;
|
|
27219
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
27187
27220
|
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
27221
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
27189
27222
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -27858,6 +27891,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
27858
27891
|
} | undefined;
|
|
27859
27892
|
schRelative?: boolean | undefined;
|
|
27860
27893
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
27894
|
+
displayName?: string | undefined;
|
|
27861
27895
|
pinAttributes?: Record<string, {
|
|
27862
27896
|
providesPower?: boolean | undefined;
|
|
27863
27897
|
requiresPower?: boolean | undefined;
|
|
@@ -28067,6 +28101,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
28067
28101
|
} | undefined;
|
|
28068
28102
|
schRelative?: boolean | undefined;
|
|
28069
28103
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
28104
|
+
displayName?: string | undefined;
|
|
28070
28105
|
pinAttributes?: Record<string, {
|
|
28071
28106
|
providesPower?: boolean | undefined;
|
|
28072
28107
|
requiresPower?: boolean | undefined;
|
|
@@ -29918,6 +29953,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
29918
29953
|
} & {
|
|
29919
29954
|
key: z.ZodOptional<z.ZodAny>;
|
|
29920
29955
|
name: z.ZodString;
|
|
29956
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
29921
29957
|
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
29958
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
29923
29959
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -30595,6 +30631,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
30595
30631
|
} | undefined;
|
|
30596
30632
|
schRelative?: boolean | undefined;
|
|
30597
30633
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
30634
|
+
displayName?: string | undefined;
|
|
30598
30635
|
pinAttributes?: Record<string, {
|
|
30599
30636
|
providesPower?: boolean | undefined;
|
|
30600
30637
|
requiresPower?: boolean | undefined;
|
|
@@ -30807,6 +30844,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
30807
30844
|
} | undefined;
|
|
30808
30845
|
schRelative?: boolean | undefined;
|
|
30809
30846
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
30847
|
+
displayName?: string | undefined;
|
|
30810
30848
|
pinAttributes?: Record<string, {
|
|
30811
30849
|
providesPower?: boolean | undefined;
|
|
30812
30850
|
requiresPower?: boolean | undefined;
|
|
@@ -31064,6 +31102,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
31064
31102
|
} & {
|
|
31065
31103
|
key: z.ZodOptional<z.ZodAny>;
|
|
31066
31104
|
name: z.ZodString;
|
|
31105
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
31067
31106
|
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
31107
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
31069
31108
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -31735,6 +31774,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
31735
31774
|
} | undefined;
|
|
31736
31775
|
schRelative?: boolean | undefined;
|
|
31737
31776
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
31777
|
+
displayName?: string | undefined;
|
|
31738
31778
|
pinAttributes?: Record<string, {
|
|
31739
31779
|
providesPower?: boolean | undefined;
|
|
31740
31780
|
requiresPower?: boolean | undefined;
|
|
@@ -31941,6 +31981,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
31941
31981
|
} | undefined;
|
|
31942
31982
|
schRelative?: boolean | undefined;
|
|
31943
31983
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
31984
|
+
displayName?: string | undefined;
|
|
31944
31985
|
pinAttributes?: Record<string, {
|
|
31945
31986
|
providesPower?: boolean | undefined;
|
|
31946
31987
|
requiresPower?: boolean | undefined;
|
|
@@ -32198,6 +32239,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
32198
32239
|
} & {
|
|
32199
32240
|
key: z.ZodOptional<z.ZodAny>;
|
|
32200
32241
|
name: z.ZodString;
|
|
32242
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
32201
32243
|
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
32244
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
32203
32245
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -32875,6 +32917,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
32875
32917
|
} | undefined;
|
|
32876
32918
|
schRelative?: boolean | undefined;
|
|
32877
32919
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
32920
|
+
displayName?: string | undefined;
|
|
32878
32921
|
pinAttributes?: Record<string, {
|
|
32879
32922
|
providesPower?: boolean | undefined;
|
|
32880
32923
|
requiresPower?: boolean | undefined;
|
|
@@ -33086,6 +33129,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
33086
33129
|
} | undefined;
|
|
33087
33130
|
schRelative?: boolean | undefined;
|
|
33088
33131
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
33132
|
+
displayName?: string | undefined;
|
|
33089
33133
|
pinAttributes?: Record<string, {
|
|
33090
33134
|
providesPower?: boolean | undefined;
|
|
33091
33135
|
requiresPower?: boolean | undefined;
|
|
@@ -33341,6 +33385,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
33341
33385
|
} & {
|
|
33342
33386
|
key: z.ZodOptional<z.ZodAny>;
|
|
33343
33387
|
name: z.ZodString;
|
|
33388
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
33344
33389
|
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
33390
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
33346
33391
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -34014,6 +34059,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
34014
34059
|
} | undefined;
|
|
34015
34060
|
schRelative?: boolean | undefined;
|
|
34016
34061
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
34062
|
+
displayName?: string | undefined;
|
|
34017
34063
|
pinAttributes?: Record<string, {
|
|
34018
34064
|
providesPower?: boolean | undefined;
|
|
34019
34065
|
requiresPower?: boolean | undefined;
|
|
@@ -34221,6 +34267,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
34221
34267
|
} | undefined;
|
|
34222
34268
|
schRelative?: boolean | undefined;
|
|
34223
34269
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
34270
|
+
displayName?: string | undefined;
|
|
34224
34271
|
pinAttributes?: Record<string, {
|
|
34225
34272
|
providesPower?: boolean | undefined;
|
|
34226
34273
|
requiresPower?: boolean | undefined;
|
|
@@ -35928,6 +35975,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
35928
35975
|
} & {
|
|
35929
35976
|
key: z.ZodOptional<z.ZodAny>;
|
|
35930
35977
|
name: z.ZodString;
|
|
35978
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
35931
35979
|
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
35980
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
35933
35981
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -36611,6 +36659,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
36611
36659
|
} | undefined;
|
|
36612
36660
|
schRelative?: boolean | undefined;
|
|
36613
36661
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
36662
|
+
displayName?: string | undefined;
|
|
36614
36663
|
pinAttributes?: Record<string, {
|
|
36615
36664
|
providesPower?: boolean | undefined;
|
|
36616
36665
|
requiresPower?: boolean | undefined;
|
|
@@ -36825,6 +36874,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
36825
36874
|
} | undefined;
|
|
36826
36875
|
schRelative?: boolean | undefined;
|
|
36827
36876
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
36877
|
+
displayName?: string | undefined;
|
|
36828
36878
|
pinAttributes?: Record<string, {
|
|
36829
36879
|
providesPower?: boolean | undefined;
|
|
36830
36880
|
requiresPower?: boolean | undefined;
|
|
@@ -37112,6 +37162,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
37112
37162
|
} & {
|
|
37113
37163
|
key: z.ZodOptional<z.ZodAny>;
|
|
37114
37164
|
name: z.ZodString;
|
|
37165
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
37115
37166
|
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
37167
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
37117
37168
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -37782,6 +37833,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
37782
37833
|
} | undefined;
|
|
37783
37834
|
schRelative?: boolean | undefined;
|
|
37784
37835
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
37836
|
+
displayName?: string | undefined;
|
|
37785
37837
|
pinAttributes?: Record<string, {
|
|
37786
37838
|
providesPower?: boolean | undefined;
|
|
37787
37839
|
requiresPower?: boolean | undefined;
|
|
@@ -37988,6 +38040,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
37988
38040
|
} | undefined;
|
|
37989
38041
|
schRelative?: boolean | undefined;
|
|
37990
38042
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
38043
|
+
displayName?: string | undefined;
|
|
37991
38044
|
pinAttributes?: Record<string, {
|
|
37992
38045
|
providesPower?: boolean | undefined;
|
|
37993
38046
|
requiresPower?: boolean | undefined;
|
|
@@ -42392,6 +42445,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
42392
42445
|
} & {
|
|
42393
42446
|
key: z.ZodOptional<z.ZodAny>;
|
|
42394
42447
|
name: z.ZodString;
|
|
42448
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
42395
42449
|
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
42450
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
42397
42451
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -43064,6 +43118,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
43064
43118
|
} | undefined;
|
|
43065
43119
|
schRelative?: boolean | undefined;
|
|
43066
43120
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
43121
|
+
displayName?: string | undefined;
|
|
43067
43122
|
pinAttributes?: Record<string, {
|
|
43068
43123
|
providesPower?: boolean | undefined;
|
|
43069
43124
|
requiresPower?: boolean | undefined;
|
|
@@ -43272,6 +43327,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
43272
43327
|
} | undefined;
|
|
43273
43328
|
schRelative?: boolean | undefined;
|
|
43274
43329
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
43330
|
+
displayName?: string | undefined;
|
|
43275
43331
|
pinAttributes?: Record<string, {
|
|
43276
43332
|
providesPower?: boolean | undefined;
|
|
43277
43333
|
requiresPower?: boolean | undefined;
|
|
@@ -43602,6 +43658,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
43602
43658
|
} & {
|
|
43603
43659
|
key: z.ZodOptional<z.ZodAny>;
|
|
43604
43660
|
name: z.ZodString;
|
|
43661
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
43605
43662
|
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
43663
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
43607
43664
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -44417,6 +44474,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
44417
44474
|
} | undefined;
|
|
44418
44475
|
schRelative?: boolean | undefined;
|
|
44419
44476
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
44477
|
+
displayName?: string | undefined;
|
|
44420
44478
|
pinAttributes?: Record<string, {
|
|
44421
44479
|
providesPower?: boolean | undefined;
|
|
44422
44480
|
requiresPower?: boolean | undefined;
|
|
@@ -44673,6 +44731,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
44673
44731
|
} | undefined;
|
|
44674
44732
|
schRelative?: boolean | undefined;
|
|
44675
44733
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
44734
|
+
displayName?: string | undefined;
|
|
44676
44735
|
pinAttributes?: Record<string, {
|
|
44677
44736
|
providesPower?: boolean | undefined;
|
|
44678
44737
|
requiresPower?: boolean | undefined;
|
|
@@ -45040,6 +45099,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
45040
45099
|
} & {
|
|
45041
45100
|
key: z.ZodOptional<z.ZodAny>;
|
|
45042
45101
|
name: z.ZodString;
|
|
45102
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
45043
45103
|
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
45104
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
45045
45105
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -45957,6 +46017,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
45957
46017
|
} | undefined;
|
|
45958
46018
|
schRelative?: boolean | undefined;
|
|
45959
46019
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
46020
|
+
displayName?: string | undefined;
|
|
45960
46021
|
pinAttributes?: Record<string, {
|
|
45961
46022
|
providesPower?: boolean | undefined;
|
|
45962
46023
|
requiresPower?: boolean | undefined;
|
|
@@ -46238,6 +46299,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
46238
46299
|
} | undefined;
|
|
46239
46300
|
schRelative?: boolean | undefined;
|
|
46240
46301
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
46302
|
+
displayName?: string | undefined;
|
|
46241
46303
|
pinAttributes?: Record<string, {
|
|
46242
46304
|
providesPower?: boolean | undefined;
|
|
46243
46305
|
requiresPower?: boolean | undefined;
|
|
@@ -47930,6 +47992,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
47930
47992
|
} & {
|
|
47931
47993
|
key: z.ZodOptional<z.ZodAny>;
|
|
47932
47994
|
name: z.ZodString;
|
|
47995
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
47933
47996
|
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
47997
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
47935
47998
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -48601,6 +48664,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
48601
48664
|
} | undefined;
|
|
48602
48665
|
schRelative?: boolean | undefined;
|
|
48603
48666
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
48667
|
+
displayName?: string | undefined;
|
|
48604
48668
|
pinAttributes?: Record<string, {
|
|
48605
48669
|
providesPower?: boolean | undefined;
|
|
48606
48670
|
requiresPower?: boolean | undefined;
|
|
@@ -48807,6 +48871,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
48807
48871
|
} | undefined;
|
|
48808
48872
|
schRelative?: boolean | undefined;
|
|
48809
48873
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
48874
|
+
displayName?: string | undefined;
|
|
48810
48875
|
pinAttributes?: Record<string, {
|
|
48811
48876
|
providesPower?: boolean | undefined;
|
|
48812
48877
|
requiresPower?: boolean | undefined;
|
|
@@ -49058,6 +49123,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
49058
49123
|
} & {
|
|
49059
49124
|
key: z.ZodOptional<z.ZodAny>;
|
|
49060
49125
|
name: z.ZodString;
|
|
49126
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
49061
49127
|
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
49128
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
49063
49129
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -49730,6 +49796,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
49730
49796
|
} | undefined;
|
|
49731
49797
|
schRelative?: boolean | undefined;
|
|
49732
49798
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
49799
|
+
displayName?: string | undefined;
|
|
49733
49800
|
pinAttributes?: Record<string, {
|
|
49734
49801
|
providesPower?: boolean | undefined;
|
|
49735
49802
|
requiresPower?: boolean | undefined;
|
|
@@ -49936,6 +50003,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
49936
50003
|
} | undefined;
|
|
49937
50004
|
schRelative?: boolean | undefined;
|
|
49938
50005
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
50006
|
+
displayName?: string | undefined;
|
|
49939
50007
|
pinAttributes?: Record<string, {
|
|
49940
50008
|
providesPower?: boolean | undefined;
|
|
49941
50009
|
requiresPower?: boolean | undefined;
|
|
@@ -50193,6 +50261,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
50193
50261
|
} & {
|
|
50194
50262
|
key: z.ZodOptional<z.ZodAny>;
|
|
50195
50263
|
name: z.ZodString;
|
|
50264
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
50196
50265
|
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
50266
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
50198
50267
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -50862,6 +50931,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
50862
50931
|
} | undefined;
|
|
50863
50932
|
schRelative?: boolean | undefined;
|
|
50864
50933
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
50934
|
+
displayName?: string | undefined;
|
|
50865
50935
|
pinAttributes?: Record<string, {
|
|
50866
50936
|
providesPower?: boolean | undefined;
|
|
50867
50937
|
requiresPower?: boolean | undefined;
|
|
@@ -51067,6 +51137,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
51067
51137
|
} | undefined;
|
|
51068
51138
|
schRelative?: boolean | undefined;
|
|
51069
51139
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
51140
|
+
displayName?: string | undefined;
|
|
51070
51141
|
pinAttributes?: Record<string, {
|
|
51071
51142
|
providesPower?: boolean | undefined;
|
|
51072
51143
|
requiresPower?: boolean | undefined;
|
|
@@ -51325,6 +51396,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
51325
51396
|
} & {
|
|
51326
51397
|
key: z.ZodOptional<z.ZodAny>;
|
|
51327
51398
|
name: z.ZodString;
|
|
51399
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
51328
51400
|
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
51401
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
51330
51402
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -51998,6 +52070,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
51998
52070
|
} | undefined;
|
|
51999
52071
|
schRelative?: boolean | undefined;
|
|
52000
52072
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
52073
|
+
displayName?: string | undefined;
|
|
52001
52074
|
pinAttributes?: Record<string, {
|
|
52002
52075
|
providesPower?: boolean | undefined;
|
|
52003
52076
|
requiresPower?: boolean | undefined;
|
|
@@ -52206,6 +52279,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
52206
52279
|
} | undefined;
|
|
52207
52280
|
schRelative?: boolean | undefined;
|
|
52208
52281
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
52282
|
+
displayName?: string | undefined;
|
|
52209
52283
|
pinAttributes?: Record<string, {
|
|
52210
52284
|
providesPower?: boolean | undefined;
|
|
52211
52285
|
requiresPower?: boolean | undefined;
|
|
@@ -52453,6 +52527,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
52453
52527
|
} & {
|
|
52454
52528
|
key: z.ZodOptional<z.ZodAny>;
|
|
52455
52529
|
name: z.ZodString;
|
|
52530
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
52456
52531
|
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
52532
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
52458
52533
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -53131,6 +53206,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
53131
53206
|
} | undefined;
|
|
53132
53207
|
schRelative?: boolean | undefined;
|
|
53133
53208
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
53209
|
+
displayName?: string | undefined;
|
|
53134
53210
|
pinAttributes?: Record<string, {
|
|
53135
53211
|
providesPower?: boolean | undefined;
|
|
53136
53212
|
requiresPower?: boolean | undefined;
|
|
@@ -53343,6 +53419,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
53343
53419
|
} | undefined;
|
|
53344
53420
|
schRelative?: boolean | undefined;
|
|
53345
53421
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
53422
|
+
displayName?: string | undefined;
|
|
53346
53423
|
pinAttributes?: Record<string, {
|
|
53347
53424
|
providesPower?: boolean | undefined;
|
|
53348
53425
|
requiresPower?: boolean | undefined;
|
|
@@ -53555,6 +53632,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
53555
53632
|
} | undefined;
|
|
53556
53633
|
schRelative?: boolean | undefined;
|
|
53557
53634
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
53635
|
+
displayName?: string | undefined;
|
|
53558
53636
|
pinAttributes?: Record<string, {
|
|
53559
53637
|
providesPower?: boolean | undefined;
|
|
53560
53638
|
requiresPower?: boolean | undefined;
|
|
@@ -53767,6 +53845,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
53767
53845
|
} | undefined;
|
|
53768
53846
|
schRelative?: boolean | undefined;
|
|
53769
53847
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
53848
|
+
displayName?: string | undefined;
|
|
53770
53849
|
pinAttributes?: Record<string, {
|
|
53771
53850
|
providesPower?: boolean | undefined;
|
|
53772
53851
|
requiresPower?: boolean | undefined;
|
|
@@ -53985,6 +54064,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
53985
54064
|
} | undefined;
|
|
53986
54065
|
schRelative?: boolean | undefined;
|
|
53987
54066
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
54067
|
+
displayName?: string | undefined;
|
|
53988
54068
|
pinAttributes?: Record<string, {
|
|
53989
54069
|
providesPower?: boolean | undefined;
|
|
53990
54070
|
requiresPower?: boolean | undefined;
|
|
@@ -54191,6 +54271,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
54191
54271
|
} | undefined;
|
|
54192
54272
|
schRelative?: boolean | undefined;
|
|
54193
54273
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
54274
|
+
displayName?: string | undefined;
|
|
54194
54275
|
pinAttributes?: Record<string, {
|
|
54195
54276
|
providesPower?: boolean | undefined;
|
|
54196
54277
|
requiresPower?: boolean | undefined;
|
|
@@ -54466,6 +54547,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
54466
54547
|
} & {
|
|
54467
54548
|
key: z.ZodOptional<z.ZodAny>;
|
|
54468
54549
|
name: z.ZodString;
|
|
54550
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
54469
54551
|
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
54552
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
54471
54553
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -55140,6 +55222,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
55140
55222
|
} | undefined;
|
|
55141
55223
|
schRelative?: boolean | undefined;
|
|
55142
55224
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
55225
|
+
displayName?: string | undefined;
|
|
55143
55226
|
pinAttributes?: Record<string, {
|
|
55144
55227
|
providesPower?: boolean | undefined;
|
|
55145
55228
|
requiresPower?: boolean | undefined;
|
|
@@ -55350,6 +55433,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
55350
55433
|
} | undefined;
|
|
55351
55434
|
schRelative?: boolean | undefined;
|
|
55352
55435
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
55436
|
+
displayName?: string | undefined;
|
|
55353
55437
|
pinAttributes?: Record<string, {
|
|
55354
55438
|
providesPower?: boolean | undefined;
|
|
55355
55439
|
requiresPower?: boolean | undefined;
|
|
@@ -55616,6 +55700,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
55616
55700
|
} & {
|
|
55617
55701
|
key: z.ZodOptional<z.ZodAny>;
|
|
55618
55702
|
name: z.ZodString;
|
|
55703
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
55619
55704
|
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
55705
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
55621
55706
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -56298,6 +56383,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
56298
56383
|
} | undefined;
|
|
56299
56384
|
schRelative?: boolean | undefined;
|
|
56300
56385
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
56386
|
+
displayName?: string | undefined;
|
|
56301
56387
|
pinAttributes?: Record<string, {
|
|
56302
56388
|
providesPower?: boolean | undefined;
|
|
56303
56389
|
requiresPower?: boolean | undefined;
|
|
@@ -56513,6 +56599,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
56513
56599
|
} | undefined;
|
|
56514
56600
|
schRelative?: boolean | undefined;
|
|
56515
56601
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
56602
|
+
displayName?: string | undefined;
|
|
56516
56603
|
pinAttributes?: Record<string, {
|
|
56517
56604
|
providesPower?: boolean | undefined;
|
|
56518
56605
|
requiresPower?: boolean | undefined;
|
|
@@ -56729,6 +56816,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
56729
56816
|
} | undefined;
|
|
56730
56817
|
schRelative?: boolean | undefined;
|
|
56731
56818
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
56819
|
+
displayName?: string | undefined;
|
|
56732
56820
|
pinAttributes?: Record<string, {
|
|
56733
56821
|
providesPower?: boolean | undefined;
|
|
56734
56822
|
requiresPower?: boolean | undefined;
|
|
@@ -57977,6 +58065,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
57977
58065
|
} & {
|
|
57978
58066
|
key: z.ZodOptional<z.ZodAny>;
|
|
57979
58067
|
name: z.ZodString;
|
|
58068
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
57980
58069
|
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
58070
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
57982
58071
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -58659,6 +58748,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
58659
58748
|
} | undefined;
|
|
58660
58749
|
schRelative?: boolean | undefined;
|
|
58661
58750
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
58751
|
+
displayName?: string | undefined;
|
|
58662
58752
|
pinAttributes?: Record<string, {
|
|
58663
58753
|
providesPower?: boolean | undefined;
|
|
58664
58754
|
requiresPower?: boolean | undefined;
|
|
@@ -58871,6 +58961,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
58871
58961
|
} | undefined;
|
|
58872
58962
|
schRelative?: boolean | undefined;
|
|
58873
58963
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
58964
|
+
displayName?: string | undefined;
|
|
58874
58965
|
pinAttributes?: Record<string, {
|
|
58875
58966
|
providesPower?: boolean | undefined;
|
|
58876
58967
|
requiresPower?: boolean | undefined;
|
|
@@ -59083,6 +59174,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
59083
59174
|
} | undefined;
|
|
59084
59175
|
schRelative?: boolean | undefined;
|
|
59085
59176
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
59177
|
+
displayName?: string | undefined;
|
|
59086
59178
|
pinAttributes?: Record<string, {
|
|
59087
59179
|
providesPower?: boolean | undefined;
|
|
59088
59180
|
requiresPower?: boolean | undefined;
|
|
@@ -59295,6 +59387,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
59295
59387
|
} | undefined;
|
|
59296
59388
|
schRelative?: boolean | undefined;
|
|
59297
59389
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
59390
|
+
displayName?: string | undefined;
|
|
59298
59391
|
pinAttributes?: Record<string, {
|
|
59299
59392
|
providesPower?: boolean | undefined;
|
|
59300
59393
|
requiresPower?: boolean | undefined;
|
|
@@ -60463,6 +60556,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
60463
60556
|
} & {
|
|
60464
60557
|
key: z.ZodOptional<z.ZodAny>;
|
|
60465
60558
|
name: z.ZodString;
|
|
60559
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
60466
60560
|
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
60561
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
60468
60562
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -61133,6 +61227,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
61133
61227
|
} | undefined;
|
|
61134
61228
|
schRelative?: boolean | undefined;
|
|
61135
61229
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
61230
|
+
displayName?: string | undefined;
|
|
61136
61231
|
pinAttributes?: Record<string, {
|
|
61137
61232
|
providesPower?: boolean | undefined;
|
|
61138
61233
|
requiresPower?: boolean | undefined;
|
|
@@ -61338,6 +61433,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
61338
61433
|
} | undefined;
|
|
61339
61434
|
schRelative?: boolean | undefined;
|
|
61340
61435
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
61436
|
+
displayName?: string | undefined;
|
|
61341
61437
|
pinAttributes?: Record<string, {
|
|
61342
61438
|
providesPower?: boolean | undefined;
|
|
61343
61439
|
requiresPower?: boolean | undefined;
|
|
@@ -61595,6 +61691,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
61595
61691
|
} & {
|
|
61596
61692
|
key: z.ZodOptional<z.ZodAny>;
|
|
61597
61693
|
name: z.ZodString;
|
|
61694
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
61598
61695
|
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
61696
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
61600
61697
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -62270,6 +62367,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
62270
62367
|
} | undefined;
|
|
62271
62368
|
schRelative?: boolean | undefined;
|
|
62272
62369
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
62370
|
+
displayName?: string | undefined;
|
|
62273
62371
|
pinAttributes?: Record<string, {
|
|
62274
62372
|
providesPower?: boolean | undefined;
|
|
62275
62373
|
requiresPower?: boolean | undefined;
|
|
@@ -62481,6 +62579,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
62481
62579
|
} | undefined;
|
|
62482
62580
|
schRelative?: boolean | undefined;
|
|
62483
62581
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
62582
|
+
displayName?: string | undefined;
|
|
62484
62583
|
pinAttributes?: Record<string, {
|
|
62485
62584
|
providesPower?: boolean | undefined;
|
|
62486
62585
|
requiresPower?: boolean | undefined;
|
|
@@ -62744,6 +62843,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
62744
62843
|
} & {
|
|
62745
62844
|
key: z.ZodOptional<z.ZodAny>;
|
|
62746
62845
|
name: z.ZodString;
|
|
62846
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
62747
62847
|
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
62848
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
62749
62849
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -63419,6 +63519,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
63419
63519
|
} | undefined;
|
|
63420
63520
|
schRelative?: boolean | undefined;
|
|
63421
63521
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
63522
|
+
displayName?: string | undefined;
|
|
63422
63523
|
pinAttributes?: Record<string, {
|
|
63423
63524
|
providesPower?: boolean | undefined;
|
|
63424
63525
|
requiresPower?: boolean | undefined;
|
|
@@ -63630,6 +63731,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
63630
63731
|
} | undefined;
|
|
63631
63732
|
schRelative?: boolean | undefined;
|
|
63632
63733
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
63734
|
+
displayName?: string | undefined;
|
|
63633
63735
|
pinAttributes?: Record<string, {
|
|
63634
63736
|
providesPower?: boolean | undefined;
|
|
63635
63737
|
requiresPower?: boolean | undefined;
|
|
@@ -63888,6 +63990,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
63888
63990
|
} & {
|
|
63889
63991
|
key: z.ZodOptional<z.ZodAny>;
|
|
63890
63992
|
name: z.ZodString;
|
|
63993
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
63891
63994
|
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
63995
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
63893
63996
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -64561,6 +64664,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
64561
64664
|
schRelative?: boolean | undefined;
|
|
64562
64665
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
64563
64666
|
name?: string | undefined;
|
|
64667
|
+
displayName?: string | undefined;
|
|
64564
64668
|
pinAttributes?: Record<string, {
|
|
64565
64669
|
providesPower?: boolean | undefined;
|
|
64566
64670
|
requiresPower?: boolean | undefined;
|
|
@@ -64768,6 +64872,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
64768
64872
|
schRelative?: boolean | undefined;
|
|
64769
64873
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
64770
64874
|
name?: string | undefined;
|
|
64875
|
+
displayName?: string | undefined;
|
|
64771
64876
|
pinAttributes?: Record<string, {
|
|
64772
64877
|
providesPower?: boolean | undefined;
|
|
64773
64878
|
requiresPower?: boolean | undefined;
|