@tscircuit/props 0.0.229 → 0.0.231
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 +119 -119
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/lib/common/footprintProp.ts +2 -2
- package/lib/common/layout.ts +2 -2
- package/lib/components/schematic-box.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -609,8 +609,8 @@ type FootprintSoupElements = {
|
|
|
609
609
|
height?: string | number;
|
|
610
610
|
portHints?: string[];
|
|
611
611
|
};
|
|
612
|
-
type
|
|
613
|
-
declare const footprintProp: z.ZodType<
|
|
612
|
+
type FootprintProp = string | ReactElement | FootprintSoupElements[];
|
|
613
|
+
declare const footprintProp: z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>;
|
|
614
614
|
|
|
615
615
|
interface PcbLayoutProps {
|
|
616
616
|
pcbX?: string | number;
|
|
@@ -626,7 +626,7 @@ interface CommonLayoutProps {
|
|
|
626
626
|
schY?: string | number;
|
|
627
627
|
schRotation?: string | number;
|
|
628
628
|
layer?: LayerRefInput;
|
|
629
|
-
footprint?:
|
|
629
|
+
footprint?: FootprintProp;
|
|
630
630
|
}
|
|
631
631
|
declare const pcbLayoutProps: z.ZodObject<{
|
|
632
632
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -670,7 +670,7 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
670
670
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
671
671
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
672
672
|
}>>;
|
|
673
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
673
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
674
674
|
}, "strip", z.ZodTypeAny, {
|
|
675
675
|
pcbX?: number | undefined;
|
|
676
676
|
pcbY?: number | undefined;
|
|
@@ -679,7 +679,7 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
679
679
|
schX?: number | undefined;
|
|
680
680
|
schY?: number | undefined;
|
|
681
681
|
schRotation?: number | undefined;
|
|
682
|
-
footprint?:
|
|
682
|
+
footprint?: FootprintProp | undefined;
|
|
683
683
|
}, {
|
|
684
684
|
pcbX?: string | number | undefined;
|
|
685
685
|
pcbY?: string | number | undefined;
|
|
@@ -690,7 +690,7 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
690
690
|
schX?: string | number | undefined;
|
|
691
691
|
schY?: string | number | undefined;
|
|
692
692
|
schRotation?: string | number | undefined;
|
|
693
|
-
footprint?:
|
|
693
|
+
footprint?: FootprintProp | undefined;
|
|
694
694
|
}>;
|
|
695
695
|
type SupplierName = "jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc";
|
|
696
696
|
type SupplierPartNumbers = {
|
|
@@ -731,7 +731,7 @@ declare const commonComponentProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
731
731
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
732
732
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
733
733
|
}>>;
|
|
734
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
734
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
735
735
|
}, {
|
|
736
736
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
737
737
|
}>, {
|
|
@@ -981,7 +981,7 @@ declare const commonComponentProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
981
981
|
schX?: number | undefined;
|
|
982
982
|
schY?: number | undefined;
|
|
983
983
|
schRotation?: number | undefined;
|
|
984
|
-
footprint?:
|
|
984
|
+
footprint?: FootprintProp | undefined;
|
|
985
985
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
986
986
|
key?: any;
|
|
987
987
|
cadModel?: string | {
|
|
@@ -1051,7 +1051,7 @@ declare const commonComponentProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
1051
1051
|
schX?: string | number | undefined;
|
|
1052
1052
|
schY?: string | number | undefined;
|
|
1053
1053
|
schRotation?: string | number | undefined;
|
|
1054
|
-
footprint?:
|
|
1054
|
+
footprint?: FootprintProp | undefined;
|
|
1055
1055
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
1056
1056
|
key?: any;
|
|
1057
1057
|
cadModel?: string | {
|
|
@@ -1127,7 +1127,7 @@ declare const componentProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
1127
1127
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1128
1128
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1129
1129
|
}>>;
|
|
1130
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
1130
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
1131
1131
|
}, {
|
|
1132
1132
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
1133
1133
|
}>, {
|
|
@@ -1377,7 +1377,7 @@ declare const componentProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
1377
1377
|
schX?: number | undefined;
|
|
1378
1378
|
schY?: number | undefined;
|
|
1379
1379
|
schRotation?: number | undefined;
|
|
1380
|
-
footprint?:
|
|
1380
|
+
footprint?: FootprintProp | undefined;
|
|
1381
1381
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
1382
1382
|
key?: any;
|
|
1383
1383
|
cadModel?: string | {
|
|
@@ -1447,7 +1447,7 @@ declare const componentProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
1447
1447
|
schX?: string | number | undefined;
|
|
1448
1448
|
schY?: string | number | undefined;
|
|
1449
1449
|
schRotation?: string | number | undefined;
|
|
1450
|
-
footprint?:
|
|
1450
|
+
footprint?: FootprintProp | undefined;
|
|
1451
1451
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
1452
1452
|
key?: any;
|
|
1453
1453
|
cadModel?: string | {
|
|
@@ -2955,7 +2955,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2955
2955
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
2956
2956
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2957
2957
|
}>>;
|
|
2958
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
2958
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
2959
2959
|
}, {
|
|
2960
2960
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2961
2961
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3151,7 +3151,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3151
3151
|
schX?: number | undefined;
|
|
3152
3152
|
schY?: number | undefined;
|
|
3153
3153
|
schRotation?: number | undefined;
|
|
3154
|
-
footprint?:
|
|
3154
|
+
footprint?: FootprintProp | undefined;
|
|
3155
3155
|
key?: any;
|
|
3156
3156
|
name?: string | undefined;
|
|
3157
3157
|
children?: any;
|
|
@@ -3248,7 +3248,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3248
3248
|
schX?: string | number | undefined;
|
|
3249
3249
|
schY?: string | number | undefined;
|
|
3250
3250
|
schRotation?: string | number | undefined;
|
|
3251
|
-
footprint?:
|
|
3251
|
+
footprint?: FootprintProp | undefined;
|
|
3252
3252
|
key?: any;
|
|
3253
3253
|
name?: string | undefined;
|
|
3254
3254
|
children?: any;
|
|
@@ -3353,7 +3353,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3353
3353
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
3354
3354
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3355
3355
|
}>>;
|
|
3356
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
3356
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
3357
3357
|
}, {
|
|
3358
3358
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3359
3359
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3752,7 +3752,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3752
3752
|
schX?: number | undefined;
|
|
3753
3753
|
schY?: number | undefined;
|
|
3754
3754
|
schRotation?: number | undefined;
|
|
3755
|
-
footprint?:
|
|
3755
|
+
footprint?: FootprintProp | undefined;
|
|
3756
3756
|
key?: any;
|
|
3757
3757
|
name?: string | undefined;
|
|
3758
3758
|
children?: any;
|
|
@@ -3895,7 +3895,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3895
3895
|
schX?: string | number | undefined;
|
|
3896
3896
|
schY?: string | number | undefined;
|
|
3897
3897
|
schRotation?: string | number | undefined;
|
|
3898
|
-
footprint?:
|
|
3898
|
+
footprint?: FootprintProp | undefined;
|
|
3899
3899
|
key?: any;
|
|
3900
3900
|
name?: string | undefined;
|
|
3901
3901
|
children?: any;
|
|
@@ -4047,7 +4047,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4047
4047
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
4048
4048
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
4049
4049
|
}>>;
|
|
4050
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
4050
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
4051
4051
|
}, {
|
|
4052
4052
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4053
4053
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -4449,7 +4449,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4449
4449
|
schX?: number | undefined;
|
|
4450
4450
|
schY?: number | undefined;
|
|
4451
4451
|
schRotation?: number | undefined;
|
|
4452
|
-
footprint?:
|
|
4452
|
+
footprint?: FootprintProp | undefined;
|
|
4453
4453
|
key?: any;
|
|
4454
4454
|
name?: string | undefined;
|
|
4455
4455
|
children?: any;
|
|
@@ -4593,7 +4593,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4593
4593
|
schX?: string | number | undefined;
|
|
4594
4594
|
schY?: string | number | undefined;
|
|
4595
4595
|
schRotation?: string | number | undefined;
|
|
4596
|
-
footprint?:
|
|
4596
|
+
footprint?: FootprintProp | undefined;
|
|
4597
4597
|
key?: any;
|
|
4598
4598
|
name?: string | undefined;
|
|
4599
4599
|
children?: any;
|
|
@@ -4745,7 +4745,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4745
4745
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
4746
4746
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
4747
4747
|
}>>;
|
|
4748
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
4748
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
4749
4749
|
}, {
|
|
4750
4750
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4751
4751
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -4943,7 +4943,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4943
4943
|
schX?: number | undefined;
|
|
4944
4944
|
schY?: number | undefined;
|
|
4945
4945
|
schRotation?: number | undefined;
|
|
4946
|
-
footprint?:
|
|
4946
|
+
footprint?: FootprintProp | undefined;
|
|
4947
4947
|
key?: any;
|
|
4948
4948
|
name?: string | undefined;
|
|
4949
4949
|
children?: any;
|
|
@@ -5041,7 +5041,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5041
5041
|
schX?: string | number | undefined;
|
|
5042
5042
|
schY?: string | number | undefined;
|
|
5043
5043
|
schRotation?: string | number | undefined;
|
|
5044
|
-
footprint?:
|
|
5044
|
+
footprint?: FootprintProp | undefined;
|
|
5045
5045
|
key?: any;
|
|
5046
5046
|
name?: string | undefined;
|
|
5047
5047
|
children?: any;
|
|
@@ -5145,7 +5145,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5145
5145
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5146
5146
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5147
5147
|
}>>;
|
|
5148
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
5148
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
5149
5149
|
}, {
|
|
5150
5150
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5151
5151
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5547,7 +5547,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5547
5547
|
schX?: number | undefined;
|
|
5548
5548
|
schY?: number | undefined;
|
|
5549
5549
|
schRotation?: number | undefined;
|
|
5550
|
-
footprint?:
|
|
5550
|
+
footprint?: FootprintProp | undefined;
|
|
5551
5551
|
key?: any;
|
|
5552
5552
|
name?: string | undefined;
|
|
5553
5553
|
children?: any;
|
|
@@ -5691,7 +5691,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5691
5691
|
schX?: string | number | undefined;
|
|
5692
5692
|
schY?: string | number | undefined;
|
|
5693
5693
|
schRotation?: string | number | undefined;
|
|
5694
|
-
footprint?:
|
|
5694
|
+
footprint?: FootprintProp | undefined;
|
|
5695
5695
|
key?: any;
|
|
5696
5696
|
name?: string | undefined;
|
|
5697
5697
|
children?: any;
|
|
@@ -5857,7 +5857,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5857
5857
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5858
5858
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5859
5859
|
}>>;
|
|
5860
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
5860
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
5861
5861
|
}, {
|
|
5862
5862
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5863
5863
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6273,7 +6273,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
6273
6273
|
schX?: number | undefined;
|
|
6274
6274
|
schY?: number | undefined;
|
|
6275
6275
|
schRotation?: number | undefined;
|
|
6276
|
-
footprint?:
|
|
6276
|
+
footprint?: FootprintProp | undefined;
|
|
6277
6277
|
key?: any;
|
|
6278
6278
|
name?: string | undefined;
|
|
6279
6279
|
children?: any;
|
|
@@ -6422,7 +6422,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
6422
6422
|
schX?: string | number | undefined;
|
|
6423
6423
|
schY?: string | number | undefined;
|
|
6424
6424
|
schRotation?: string | number | undefined;
|
|
6425
|
-
footprint?:
|
|
6425
|
+
footprint?: FootprintProp | undefined;
|
|
6426
6426
|
key?: any;
|
|
6427
6427
|
name?: string | undefined;
|
|
6428
6428
|
children?: any;
|
|
@@ -6589,7 +6589,7 @@ declare const breakoutProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
6589
6589
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
6590
6590
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6591
6591
|
}>>;
|
|
6592
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
6592
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
6593
6593
|
}, {
|
|
6594
6594
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6595
6595
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6994,7 +6994,7 @@ declare const breakoutProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
6994
6994
|
schX?: number | undefined;
|
|
6995
6995
|
schY?: number | undefined;
|
|
6996
6996
|
schRotation?: number | undefined;
|
|
6997
|
-
footprint?:
|
|
6997
|
+
footprint?: FootprintProp | undefined;
|
|
6998
6998
|
key?: any;
|
|
6999
6999
|
name?: string | undefined;
|
|
7000
7000
|
children?: any;
|
|
@@ -7142,7 +7142,7 @@ declare const breakoutProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
7142
7142
|
schX?: string | number | undefined;
|
|
7143
7143
|
schY?: string | number | undefined;
|
|
7144
7144
|
schRotation?: string | number | undefined;
|
|
7145
|
-
footprint?:
|
|
7145
|
+
footprint?: FootprintProp | undefined;
|
|
7146
7146
|
key?: any;
|
|
7147
7147
|
name?: string | undefined;
|
|
7148
7148
|
children?: any;
|
|
@@ -7439,7 +7439,7 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
7439
7439
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7440
7440
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7441
7441
|
}>>;
|
|
7442
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
7442
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
7443
7443
|
}, {
|
|
7444
7444
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7445
7445
|
}>, {
|
|
@@ -7938,7 +7938,7 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
7938
7938
|
schX?: number | undefined;
|
|
7939
7939
|
schY?: number | undefined;
|
|
7940
7940
|
schRotation?: number | undefined;
|
|
7941
|
-
footprint?:
|
|
7941
|
+
footprint?: FootprintProp | undefined;
|
|
7942
7942
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7943
7943
|
key?: any;
|
|
7944
7944
|
cadModel?: string | {
|
|
@@ -8084,7 +8084,7 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
8084
8084
|
schX?: string | number | undefined;
|
|
8085
8085
|
schY?: string | number | undefined;
|
|
8086
8086
|
schRotation?: string | number | undefined;
|
|
8087
|
-
footprint?:
|
|
8087
|
+
footprint?: FootprintProp | undefined;
|
|
8088
8088
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8089
8089
|
key?: any;
|
|
8090
8090
|
cadModel?: string | {
|
|
@@ -8239,7 +8239,7 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
8239
8239
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
8240
8240
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8241
8241
|
}>>;
|
|
8242
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
8242
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
8243
8243
|
}, {
|
|
8244
8244
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
8245
8245
|
}>, {
|
|
@@ -8738,7 +8738,7 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
8738
8738
|
schX?: number | undefined;
|
|
8739
8739
|
schY?: number | undefined;
|
|
8740
8740
|
schRotation?: number | undefined;
|
|
8741
|
-
footprint?:
|
|
8741
|
+
footprint?: FootprintProp | undefined;
|
|
8742
8742
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8743
8743
|
key?: any;
|
|
8744
8744
|
cadModel?: string | {
|
|
@@ -8884,7 +8884,7 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
8884
8884
|
schX?: string | number | undefined;
|
|
8885
8885
|
schY?: string | number | undefined;
|
|
8886
8886
|
schRotation?: string | number | undefined;
|
|
8887
|
-
footprint?:
|
|
8887
|
+
footprint?: FootprintProp | undefined;
|
|
8888
8888
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8889
8889
|
key?: any;
|
|
8890
8890
|
cadModel?: string | {
|
|
@@ -9057,7 +9057,7 @@ declare const jumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
9057
9057
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
9058
9058
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
9059
9059
|
}>>;
|
|
9060
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
9060
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
9061
9061
|
}, {
|
|
9062
9062
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
9063
9063
|
}>, {
|
|
@@ -9444,7 +9444,7 @@ declare const jumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
9444
9444
|
schX?: number | undefined;
|
|
9445
9445
|
schY?: number | undefined;
|
|
9446
9446
|
schRotation?: number | undefined;
|
|
9447
|
-
footprint?:
|
|
9447
|
+
footprint?: FootprintProp | undefined;
|
|
9448
9448
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9449
9449
|
key?: any;
|
|
9450
9450
|
cadModel?: string | {
|
|
@@ -9558,7 +9558,7 @@ declare const jumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
9558
9558
|
schX?: string | number | undefined;
|
|
9559
9559
|
schY?: string | number | undefined;
|
|
9560
9560
|
schRotation?: string | number | undefined;
|
|
9561
|
-
footprint?:
|
|
9561
|
+
footprint?: FootprintProp | undefined;
|
|
9562
9562
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9563
9563
|
key?: any;
|
|
9564
9564
|
cadModel?: string | {
|
|
@@ -9685,7 +9685,7 @@ declare const solderjumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUt
|
|
|
9685
9685
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
9686
9686
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
9687
9687
|
}>>;
|
|
9688
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
9688
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
9689
9689
|
}, {
|
|
9690
9690
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
9691
9691
|
}>, {
|
|
@@ -10074,7 +10074,7 @@ declare const solderjumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUt
|
|
|
10074
10074
|
schX?: number | undefined;
|
|
10075
10075
|
schY?: number | undefined;
|
|
10076
10076
|
schRotation?: number | undefined;
|
|
10077
|
-
footprint?:
|
|
10077
|
+
footprint?: FootprintProp | undefined;
|
|
10078
10078
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10079
10079
|
key?: any;
|
|
10080
10080
|
cadModel?: string | {
|
|
@@ -10189,7 +10189,7 @@ declare const solderjumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUt
|
|
|
10189
10189
|
schX?: string | number | undefined;
|
|
10190
10190
|
schY?: string | number | undefined;
|
|
10191
10191
|
schRotation?: string | number | undefined;
|
|
10192
|
-
footprint?:
|
|
10192
|
+
footprint?: FootprintProp | undefined;
|
|
10193
10193
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10194
10194
|
key?: any;
|
|
10195
10195
|
cadModel?: string | {
|
|
@@ -10330,7 +10330,7 @@ declare const connectorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
10330
10330
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
10331
10331
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
10332
10332
|
}>>;
|
|
10333
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
10333
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
10334
10334
|
}, {
|
|
10335
10335
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10336
10336
|
}>, {
|
|
@@ -10717,7 +10717,7 @@ declare const connectorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
10717
10717
|
schX?: number | undefined;
|
|
10718
10718
|
schY?: number | undefined;
|
|
10719
10719
|
schRotation?: number | undefined;
|
|
10720
|
-
footprint?:
|
|
10720
|
+
footprint?: FootprintProp | undefined;
|
|
10721
10721
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10722
10722
|
key?: any;
|
|
10723
10723
|
cadModel?: string | {
|
|
@@ -10831,7 +10831,7 @@ declare const connectorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
10831
10831
|
schX?: string | number | undefined;
|
|
10832
10832
|
schY?: string | number | undefined;
|
|
10833
10833
|
schRotation?: string | number | undefined;
|
|
10834
|
-
footprint?:
|
|
10834
|
+
footprint?: FootprintProp | undefined;
|
|
10835
10835
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10836
10836
|
key?: any;
|
|
10837
10837
|
cadModel?: string | {
|
|
@@ -10978,7 +10978,7 @@ declare const fuseProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
10978
10978
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
10979
10979
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
10980
10980
|
}>>;
|
|
10981
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
10981
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
10982
10982
|
}, {
|
|
10983
10983
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10984
10984
|
}>, {
|
|
@@ -11234,7 +11234,7 @@ declare const fuseProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
11234
11234
|
schX?: number | undefined;
|
|
11235
11235
|
schY?: number | undefined;
|
|
11236
11236
|
schRotation?: number | undefined;
|
|
11237
|
-
footprint?:
|
|
11237
|
+
footprint?: FootprintProp | undefined;
|
|
11238
11238
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11239
11239
|
key?: any;
|
|
11240
11240
|
cadModel?: string | {
|
|
@@ -11308,7 +11308,7 @@ declare const fuseProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
11308
11308
|
schX?: string | number | undefined;
|
|
11309
11309
|
schY?: string | number | undefined;
|
|
11310
11310
|
schRotation?: string | number | undefined;
|
|
11311
|
-
footprint?:
|
|
11311
|
+
footprint?: FootprintProp | undefined;
|
|
11312
11312
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11313
11313
|
key?: any;
|
|
11314
11314
|
cadModel?: string | {
|
|
@@ -11786,7 +11786,7 @@ declare const resistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
11786
11786
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
11787
11787
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
11788
11788
|
}>>;
|
|
11789
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
11789
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
11790
11790
|
}, {
|
|
11791
11791
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11792
11792
|
}>, {
|
|
@@ -12044,7 +12044,7 @@ declare const resistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
12044
12044
|
schX?: number | undefined;
|
|
12045
12045
|
schY?: number | undefined;
|
|
12046
12046
|
schRotation?: number | undefined;
|
|
12047
|
-
footprint?:
|
|
12047
|
+
footprint?: FootprintProp | undefined;
|
|
12048
12048
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12049
12049
|
key?: any;
|
|
12050
12050
|
cadModel?: string | {
|
|
@@ -12120,7 +12120,7 @@ declare const resistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
12120
12120
|
schX?: string | number | undefined;
|
|
12121
12121
|
schY?: string | number | undefined;
|
|
12122
12122
|
schRotation?: string | number | undefined;
|
|
12123
|
-
footprint?:
|
|
12123
|
+
footprint?: FootprintProp | undefined;
|
|
12124
12124
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12125
12125
|
key?: any;
|
|
12126
12126
|
cadModel?: string | {
|
|
@@ -12208,7 +12208,7 @@ declare const potentiometerProps: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
12208
12208
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12209
12209
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12210
12210
|
}>>;
|
|
12211
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
12211
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
12212
12212
|
}, {
|
|
12213
12213
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
12214
12214
|
}>, {
|
|
@@ -12462,7 +12462,7 @@ declare const potentiometerProps: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
12462
12462
|
schX?: number | undefined;
|
|
12463
12463
|
schY?: number | undefined;
|
|
12464
12464
|
schRotation?: number | undefined;
|
|
12465
|
-
footprint?:
|
|
12465
|
+
footprint?: FootprintProp | undefined;
|
|
12466
12466
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12467
12467
|
key?: any;
|
|
12468
12468
|
cadModel?: string | {
|
|
@@ -12534,7 +12534,7 @@ declare const potentiometerProps: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
12534
12534
|
schX?: string | number | undefined;
|
|
12535
12535
|
schY?: string | number | undefined;
|
|
12536
12536
|
schRotation?: string | number | undefined;
|
|
12537
|
-
footprint?:
|
|
12537
|
+
footprint?: FootprintProp | undefined;
|
|
12538
12538
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12539
12539
|
key?: any;
|
|
12540
12540
|
cadModel?: string | {
|
|
@@ -12618,7 +12618,7 @@ declare const crystalProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
12618
12618
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12619
12619
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12620
12620
|
}>>;
|
|
12621
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
12621
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
12622
12622
|
}, {
|
|
12623
12623
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
12624
12624
|
}>, {
|
|
@@ -12874,7 +12874,7 @@ declare const crystalProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
12874
12874
|
schX?: number | undefined;
|
|
12875
12875
|
schY?: number | undefined;
|
|
12876
12876
|
schRotation?: number | undefined;
|
|
12877
|
-
footprint?:
|
|
12877
|
+
footprint?: FootprintProp | undefined;
|
|
12878
12878
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12879
12879
|
key?: any;
|
|
12880
12880
|
cadModel?: string | {
|
|
@@ -12947,7 +12947,7 @@ declare const crystalProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
12947
12947
|
schX?: string | number | undefined;
|
|
12948
12948
|
schY?: string | number | undefined;
|
|
12949
12949
|
schRotation?: string | number | undefined;
|
|
12950
|
-
footprint?:
|
|
12950
|
+
footprint?: FootprintProp | undefined;
|
|
12951
12951
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12952
12952
|
key?: any;
|
|
12953
12953
|
cadModel?: string | {
|
|
@@ -13032,7 +13032,7 @@ declare const resonatorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
13032
13032
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13033
13033
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13034
13034
|
}>>;
|
|
13035
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
13035
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
13036
13036
|
}, {
|
|
13037
13037
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
13038
13038
|
}>, {
|
|
@@ -13288,7 +13288,7 @@ declare const resonatorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
13288
13288
|
schX?: number | undefined;
|
|
13289
13289
|
schY?: number | undefined;
|
|
13290
13290
|
schRotation?: number | undefined;
|
|
13291
|
-
footprint?:
|
|
13291
|
+
footprint?: FootprintProp | undefined;
|
|
13292
13292
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13293
13293
|
key?: any;
|
|
13294
13294
|
cadModel?: string | {
|
|
@@ -13361,7 +13361,7 @@ declare const resonatorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
13361
13361
|
schX?: string | number | undefined;
|
|
13362
13362
|
schY?: string | number | undefined;
|
|
13363
13363
|
schRotation?: string | number | undefined;
|
|
13364
|
-
footprint?:
|
|
13364
|
+
footprint?: FootprintProp | undefined;
|
|
13365
13365
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13366
13366
|
key?: any;
|
|
13367
13367
|
cadModel?: string | {
|
|
@@ -13451,7 +13451,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13451
13451
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13452
13452
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13453
13453
|
}>>;
|
|
13454
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
13454
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
13455
13455
|
}, {
|
|
13456
13456
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
13457
13457
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -13878,7 +13878,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13878
13878
|
schX?: number | undefined;
|
|
13879
13879
|
schY?: number | undefined;
|
|
13880
13880
|
schRotation?: number | undefined;
|
|
13881
|
-
footprint?:
|
|
13881
|
+
footprint?: FootprintProp | undefined;
|
|
13882
13882
|
key?: any;
|
|
13883
13883
|
name?: string | undefined;
|
|
13884
13884
|
children?: any;
|
|
@@ -14037,7 +14037,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
14037
14037
|
schX?: string | number | undefined;
|
|
14038
14038
|
schY?: string | number | undefined;
|
|
14039
14039
|
schRotation?: string | number | undefined;
|
|
14040
|
-
footprint?:
|
|
14040
|
+
footprint?: FootprintProp | undefined;
|
|
14041
14041
|
key?: any;
|
|
14042
14042
|
name?: string | undefined;
|
|
14043
14043
|
children?: any;
|
|
@@ -14221,7 +14221,7 @@ declare const capacitorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
14221
14221
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
14222
14222
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
14223
14223
|
}>>;
|
|
14224
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
14224
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
14225
14225
|
}, {
|
|
14226
14226
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
14227
14227
|
}>, {
|
|
@@ -14485,7 +14485,7 @@ declare const capacitorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
14485
14485
|
schX?: number | undefined;
|
|
14486
14486
|
schY?: number | undefined;
|
|
14487
14487
|
schRotation?: number | undefined;
|
|
14488
|
-
footprint?:
|
|
14488
|
+
footprint?: FootprintProp | undefined;
|
|
14489
14489
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
14490
14490
|
key?: any;
|
|
14491
14491
|
cadModel?: string | {
|
|
@@ -14563,7 +14563,7 @@ declare const capacitorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
14563
14563
|
schX?: string | number | undefined;
|
|
14564
14564
|
schY?: string | number | undefined;
|
|
14565
14565
|
schRotation?: string | number | undefined;
|
|
14566
|
-
footprint?:
|
|
14566
|
+
footprint?: FootprintProp | undefined;
|
|
14567
14567
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
14568
14568
|
key?: any;
|
|
14569
14569
|
cadModel?: string | {
|
|
@@ -15972,7 +15972,7 @@ declare const batteryProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
15972
15972
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
15973
15973
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
15974
15974
|
}>>;
|
|
15975
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
15975
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
15976
15976
|
}, {
|
|
15977
15977
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
15978
15978
|
}>, {
|
|
@@ -16224,7 +16224,7 @@ declare const batteryProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
16224
16224
|
schX?: number | undefined;
|
|
16225
16225
|
schY?: number | undefined;
|
|
16226
16226
|
schRotation?: number | undefined;
|
|
16227
|
-
footprint?:
|
|
16227
|
+
footprint?: FootprintProp | undefined;
|
|
16228
16228
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
16229
16229
|
key?: any;
|
|
16230
16230
|
cadModel?: string | {
|
|
@@ -16295,7 +16295,7 @@ declare const batteryProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
16295
16295
|
schX?: string | number | undefined;
|
|
16296
16296
|
schY?: string | number | undefined;
|
|
16297
16297
|
schRotation?: string | number | undefined;
|
|
16298
|
-
footprint?:
|
|
16298
|
+
footprint?: FootprintProp | undefined;
|
|
16299
16299
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
16300
16300
|
key?: any;
|
|
16301
16301
|
cadModel?: string | {
|
|
@@ -16424,7 +16424,7 @@ declare const pinHeaderProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
16424
16424
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
16425
16425
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
16426
16426
|
}>>;
|
|
16427
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
16427
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
16428
16428
|
}, {
|
|
16429
16429
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
16430
16430
|
}>, {
|
|
@@ -16788,7 +16788,7 @@ declare const pinHeaderProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
16788
16788
|
schX?: number | undefined;
|
|
16789
16789
|
schY?: number | undefined;
|
|
16790
16790
|
schRotation?: number | undefined;
|
|
16791
|
-
footprint?:
|
|
16791
|
+
footprint?: FootprintProp | undefined;
|
|
16792
16792
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
16793
16793
|
key?: any;
|
|
16794
16794
|
cadModel?: string | {
|
|
@@ -16894,7 +16894,7 @@ declare const pinHeaderProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
16894
16894
|
schX?: string | number | undefined;
|
|
16895
16895
|
schY?: string | number | undefined;
|
|
16896
16896
|
schRotation?: string | number | undefined;
|
|
16897
|
-
footprint?:
|
|
16897
|
+
footprint?: FootprintProp | undefined;
|
|
16898
16898
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
16899
16899
|
key?: any;
|
|
16900
16900
|
cadModel?: string | {
|
|
@@ -17074,7 +17074,7 @@ declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
17074
17074
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
17075
17075
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
17076
17076
|
}>>;
|
|
17077
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
17077
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
17078
17078
|
}, {
|
|
17079
17079
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
17080
17080
|
}>, {
|
|
@@ -17573,7 +17573,7 @@ declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
17573
17573
|
schX?: number | undefined;
|
|
17574
17574
|
schY?: number | undefined;
|
|
17575
17575
|
schRotation?: number | undefined;
|
|
17576
|
-
footprint?:
|
|
17576
|
+
footprint?: FootprintProp | undefined;
|
|
17577
17577
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
17578
17578
|
key?: any;
|
|
17579
17579
|
cadModel?: string | {
|
|
@@ -17719,7 +17719,7 @@ declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
17719
17719
|
schX?: string | number | undefined;
|
|
17720
17720
|
schY?: string | number | undefined;
|
|
17721
17721
|
schRotation?: string | number | undefined;
|
|
17722
|
-
footprint?:
|
|
17722
|
+
footprint?: FootprintProp | undefined;
|
|
17723
17723
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
17724
17724
|
key?: any;
|
|
17725
17725
|
cadModel?: string | {
|
|
@@ -17873,7 +17873,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
17873
17873
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
17874
17874
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
17875
17875
|
}>>;
|
|
17876
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
17876
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
17877
17877
|
}, {
|
|
17878
17878
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
17879
17879
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -18272,7 +18272,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
18272
18272
|
schX?: number | undefined;
|
|
18273
18273
|
schY?: number | undefined;
|
|
18274
18274
|
schRotation?: number | undefined;
|
|
18275
|
-
footprint?:
|
|
18275
|
+
footprint?: FootprintProp | undefined;
|
|
18276
18276
|
key?: any;
|
|
18277
18277
|
name?: string | undefined;
|
|
18278
18278
|
children?: any;
|
|
@@ -18415,7 +18415,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
18415
18415
|
schX?: string | number | undefined;
|
|
18416
18416
|
schY?: string | number | undefined;
|
|
18417
18417
|
schRotation?: string | number | undefined;
|
|
18418
|
-
footprint?:
|
|
18418
|
+
footprint?: FootprintProp | undefined;
|
|
18419
18419
|
key?: any;
|
|
18420
18420
|
name?: string | undefined;
|
|
18421
18421
|
children?: any;
|
|
@@ -18571,7 +18571,7 @@ declare const transistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
18571
18571
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
18572
18572
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
18573
18573
|
}>>;
|
|
18574
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
18574
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
18575
18575
|
}, {
|
|
18576
18576
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
18577
18577
|
}>, {
|
|
@@ -18824,7 +18824,7 @@ declare const transistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
18824
18824
|
schX?: number | undefined;
|
|
18825
18825
|
schY?: number | undefined;
|
|
18826
18826
|
schRotation?: number | undefined;
|
|
18827
|
-
footprint?:
|
|
18827
|
+
footprint?: FootprintProp | undefined;
|
|
18828
18828
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
18829
18829
|
key?: any;
|
|
18830
18830
|
cadModel?: string | {
|
|
@@ -18895,7 +18895,7 @@ declare const transistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
18895
18895
|
schX?: string | number | undefined;
|
|
18896
18896
|
schY?: string | number | undefined;
|
|
18897
18897
|
schRotation?: string | number | undefined;
|
|
18898
|
-
footprint?:
|
|
18898
|
+
footprint?: FootprintProp | undefined;
|
|
18899
18899
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
18900
18900
|
key?: any;
|
|
18901
18901
|
cadModel?: string | {
|
|
@@ -18977,7 +18977,7 @@ declare const mosfetProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
18977
18977
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
18978
18978
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
18979
18979
|
}>>;
|
|
18980
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
18980
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
18981
18981
|
}, {
|
|
18982
18982
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
18983
18983
|
}>, {
|
|
@@ -19232,7 +19232,7 @@ declare const mosfetProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
19232
19232
|
schX?: number | undefined;
|
|
19233
19233
|
schY?: number | undefined;
|
|
19234
19234
|
schRotation?: number | undefined;
|
|
19235
|
-
footprint?:
|
|
19235
|
+
footprint?: FootprintProp | undefined;
|
|
19236
19236
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
19237
19237
|
key?: any;
|
|
19238
19238
|
cadModel?: string | {
|
|
@@ -19304,7 +19304,7 @@ declare const mosfetProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
19304
19304
|
schX?: string | number | undefined;
|
|
19305
19305
|
schY?: string | number | undefined;
|
|
19306
19306
|
schRotation?: string | number | undefined;
|
|
19307
|
-
footprint?:
|
|
19307
|
+
footprint?: FootprintProp | undefined;
|
|
19308
19308
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
19309
19309
|
key?: any;
|
|
19310
19310
|
cadModel?: string | {
|
|
@@ -19386,7 +19386,7 @@ declare const inductorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
19386
19386
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
19387
19387
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
19388
19388
|
}>>;
|
|
19389
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
19389
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
19390
19390
|
}, {
|
|
19391
19391
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
19392
19392
|
}>, {
|
|
@@ -19640,7 +19640,7 @@ declare const inductorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
19640
19640
|
schX?: number | undefined;
|
|
19641
19641
|
schY?: number | undefined;
|
|
19642
19642
|
schRotation?: number | undefined;
|
|
19643
|
-
footprint?:
|
|
19643
|
+
footprint?: FootprintProp | undefined;
|
|
19644
19644
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
19645
19645
|
key?: any;
|
|
19646
19646
|
cadModel?: string | {
|
|
@@ -19712,7 +19712,7 @@ declare const inductorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
19712
19712
|
schX?: string | number | undefined;
|
|
19713
19713
|
schY?: string | number | undefined;
|
|
19714
19714
|
schRotation?: string | number | undefined;
|
|
19715
|
-
footprint?:
|
|
19715
|
+
footprint?: FootprintProp | undefined;
|
|
19716
19716
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
19717
19717
|
key?: any;
|
|
19718
19718
|
cadModel?: string | {
|
|
@@ -19791,7 +19791,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
|
|
|
19791
19791
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
19792
19792
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
19793
19793
|
}>>;
|
|
19794
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
19794
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
19795
19795
|
}, {
|
|
19796
19796
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
19797
19797
|
}>, {
|
|
@@ -20050,7 +20050,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
|
|
|
20050
20050
|
schX?: number | undefined;
|
|
20051
20051
|
schY?: number | undefined;
|
|
20052
20052
|
schRotation?: number | undefined;
|
|
20053
|
-
footprint?:
|
|
20053
|
+
footprint?: FootprintProp | undefined;
|
|
20054
20054
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20055
20055
|
key?: any;
|
|
20056
20056
|
cadModel?: string | {
|
|
@@ -20126,7 +20126,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
|
|
|
20126
20126
|
schX?: string | number | undefined;
|
|
20127
20127
|
schY?: string | number | undefined;
|
|
20128
20128
|
schRotation?: string | number | undefined;
|
|
20129
|
-
footprint?:
|
|
20129
|
+
footprint?: FootprintProp | undefined;
|
|
20130
20130
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20131
20131
|
key?: any;
|
|
20132
20132
|
cadModel?: string | {
|
|
@@ -20202,7 +20202,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
|
|
|
20202
20202
|
schX?: number | undefined;
|
|
20203
20203
|
schY?: number | undefined;
|
|
20204
20204
|
schRotation?: number | undefined;
|
|
20205
|
-
footprint?:
|
|
20205
|
+
footprint?: FootprintProp | undefined;
|
|
20206
20206
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20207
20207
|
key?: any;
|
|
20208
20208
|
cadModel?: string | {
|
|
@@ -20278,7 +20278,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
|
|
|
20278
20278
|
schX?: string | number | undefined;
|
|
20279
20279
|
schY?: string | number | undefined;
|
|
20280
20280
|
schRotation?: string | number | undefined;
|
|
20281
|
-
footprint?:
|
|
20281
|
+
footprint?: FootprintProp | undefined;
|
|
20282
20282
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20283
20283
|
key?: any;
|
|
20284
20284
|
cadModel?: string | {
|
|
@@ -20359,7 +20359,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
|
|
|
20359
20359
|
schX?: number | undefined;
|
|
20360
20360
|
schY?: number | undefined;
|
|
20361
20361
|
schRotation?: number | undefined;
|
|
20362
|
-
footprint?:
|
|
20362
|
+
footprint?: FootprintProp | undefined;
|
|
20363
20363
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20364
20364
|
key?: any;
|
|
20365
20365
|
cadModel?: string | {
|
|
@@ -20430,7 +20430,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
|
|
|
20430
20430
|
schX?: string | number | undefined;
|
|
20431
20431
|
schY?: string | number | undefined;
|
|
20432
20432
|
schRotation?: string | number | undefined;
|
|
20433
|
-
footprint?:
|
|
20433
|
+
footprint?: FootprintProp | undefined;
|
|
20434
20434
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20435
20435
|
key?: any;
|
|
20436
20436
|
cadModel?: string | {
|
|
@@ -20532,7 +20532,7 @@ declare const ledProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
20532
20532
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
20533
20533
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
20534
20534
|
}>>;
|
|
20535
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
20535
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
20536
20536
|
}, {
|
|
20537
20537
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
20538
20538
|
}>, {
|
|
@@ -20786,7 +20786,7 @@ declare const ledProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
20786
20786
|
schX?: number | undefined;
|
|
20787
20787
|
schY?: number | undefined;
|
|
20788
20788
|
schRotation?: number | undefined;
|
|
20789
|
-
footprint?:
|
|
20789
|
+
footprint?: FootprintProp | undefined;
|
|
20790
20790
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20791
20791
|
key?: any;
|
|
20792
20792
|
cadModel?: string | {
|
|
@@ -20859,7 +20859,7 @@ declare const ledProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
20859
20859
|
schX?: string | number | undefined;
|
|
20860
20860
|
schY?: string | number | undefined;
|
|
20861
20861
|
schRotation?: string | number | undefined;
|
|
20862
|
-
footprint?:
|
|
20862
|
+
footprint?: FootprintProp | undefined;
|
|
20863
20863
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20864
20864
|
key?: any;
|
|
20865
20865
|
cadModel?: string | {
|
|
@@ -20949,7 +20949,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
20949
20949
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
20950
20950
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
20951
20951
|
}>>;
|
|
20952
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
20952
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
20953
20953
|
}, {
|
|
20954
20954
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
20955
20955
|
}>, {
|
|
@@ -21208,7 +21208,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
21208
21208
|
schX?: number | undefined;
|
|
21209
21209
|
schY?: number | undefined;
|
|
21210
21210
|
schRotation?: number | undefined;
|
|
21211
|
-
footprint?:
|
|
21211
|
+
footprint?: FootprintProp | undefined;
|
|
21212
21212
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21213
21213
|
key?: any;
|
|
21214
21214
|
cadModel?: string | {
|
|
@@ -21283,7 +21283,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
21283
21283
|
schX?: string | number | undefined;
|
|
21284
21284
|
schY?: string | number | undefined;
|
|
21285
21285
|
schRotation?: string | number | undefined;
|
|
21286
|
-
footprint?:
|
|
21286
|
+
footprint?: FootprintProp | undefined;
|
|
21287
21287
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21288
21288
|
key?: any;
|
|
21289
21289
|
cadModel?: string | {
|
|
@@ -21359,7 +21359,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
21359
21359
|
schX?: string | number | undefined;
|
|
21360
21360
|
schY?: string | number | undefined;
|
|
21361
21361
|
schRotation?: string | number | undefined;
|
|
21362
|
-
footprint?:
|
|
21362
|
+
footprint?: FootprintProp | undefined;
|
|
21363
21363
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21364
21364
|
key?: any;
|
|
21365
21365
|
cadModel?: string | {
|
|
@@ -21617,7 +21617,7 @@ declare const viaProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
21617
21617
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
21618
21618
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
21619
21619
|
}>>;
|
|
21620
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
21620
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
21621
21621
|
}, {
|
|
21622
21622
|
fromLayer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
21623
21623
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
@@ -21651,7 +21651,7 @@ declare const viaProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
21651
21651
|
schX?: number | undefined;
|
|
21652
21652
|
schY?: number | undefined;
|
|
21653
21653
|
schRotation?: number | undefined;
|
|
21654
|
-
footprint?:
|
|
21654
|
+
footprint?: FootprintProp | undefined;
|
|
21655
21655
|
}, {
|
|
21656
21656
|
holeDiameter: string | number;
|
|
21657
21657
|
outerDiameter: string | number;
|
|
@@ -21670,7 +21670,7 @@ declare const viaProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
21670
21670
|
schX?: string | number | undefined;
|
|
21671
21671
|
schY?: string | number | undefined;
|
|
21672
21672
|
schRotation?: string | number | undefined;
|
|
21673
|
-
footprint?:
|
|
21673
|
+
footprint?: FootprintProp | undefined;
|
|
21674
21674
|
}>;
|
|
21675
21675
|
type ViaProps = z.input<typeof viaProps>;
|
|
21676
21676
|
|
|
@@ -21716,7 +21716,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<
|
|
|
21716
21716
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
21717
21717
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
21718
21718
|
}>>;
|
|
21719
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
21719
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
21720
21720
|
}, {
|
|
21721
21721
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
21722
21722
|
}>, {
|
|
@@ -21974,7 +21974,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<
|
|
|
21974
21974
|
schX?: number | undefined;
|
|
21975
21975
|
schY?: number | undefined;
|
|
21976
21976
|
schRotation?: number | undefined;
|
|
21977
|
-
footprint?:
|
|
21977
|
+
footprint?: FootprintProp | undefined;
|
|
21978
21978
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21979
21979
|
key?: any;
|
|
21980
21980
|
cadModel?: string | {
|
|
@@ -22049,7 +22049,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<
|
|
|
22049
22049
|
schX?: string | number | undefined;
|
|
22050
22050
|
schY?: string | number | undefined;
|
|
22051
22051
|
schRotation?: string | number | undefined;
|
|
22052
|
-
footprint?:
|
|
22052
|
+
footprint?: FootprintProp | undefined;
|
|
22053
22053
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22054
22054
|
key?: any;
|
|
22055
22055
|
cadModel?: string | {
|
|
@@ -22124,7 +22124,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<
|
|
|
22124
22124
|
schX?: number | undefined;
|
|
22125
22125
|
schY?: number | undefined;
|
|
22126
22126
|
schRotation?: number | undefined;
|
|
22127
|
-
footprint?:
|
|
22127
|
+
footprint?: FootprintProp | undefined;
|
|
22128
22128
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22129
22129
|
key?: any;
|
|
22130
22130
|
cadModel?: string | {
|
|
@@ -22199,7 +22199,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<
|
|
|
22199
22199
|
schX?: string | number | undefined;
|
|
22200
22200
|
schY?: string | number | undefined;
|
|
22201
22201
|
schRotation?: string | number | undefined;
|
|
22202
|
-
footprint?:
|
|
22202
|
+
footprint?: FootprintProp | undefined;
|
|
22203
22203
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22204
22204
|
key?: any;
|
|
22205
22205
|
cadModel?: string | {
|
|
@@ -22379,7 +22379,7 @@ declare const powerSourceProps: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
22379
22379
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
22380
22380
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
22381
22381
|
}>>;
|
|
22382
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
22382
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
22383
22383
|
}, {
|
|
22384
22384
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
22385
22385
|
}>, {
|
|
@@ -22632,7 +22632,7 @@ declare const powerSourceProps: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
22632
22632
|
schX?: number | undefined;
|
|
22633
22633
|
schY?: number | undefined;
|
|
22634
22634
|
schRotation?: number | undefined;
|
|
22635
|
-
footprint?:
|
|
22635
|
+
footprint?: FootprintProp | undefined;
|
|
22636
22636
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22637
22637
|
key?: any;
|
|
22638
22638
|
cadModel?: string | {
|
|
@@ -22703,7 +22703,7 @@ declare const powerSourceProps: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
22703
22703
|
schX?: string | number | undefined;
|
|
22704
22704
|
schY?: string | number | undefined;
|
|
22705
22705
|
schRotation?: string | number | undefined;
|
|
22706
|
-
footprint?:
|
|
22706
|
+
footprint?: FootprintProp | undefined;
|
|
22707
22707
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22708
22708
|
key?: any;
|
|
22709
22709
|
cadModel?: string | {
|
|
@@ -23414,7 +23414,7 @@ declare const portProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
23414
23414
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
23415
23415
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
23416
23416
|
}>>;
|
|
23417
|
-
footprint: z.ZodOptional<z.ZodType<
|
|
23417
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
23418
23418
|
}, {
|
|
23419
23419
|
name: z.ZodString;
|
|
23420
23420
|
pinNumber: z.ZodOptional<z.ZodNumber>;
|
|
@@ -23430,7 +23430,7 @@ declare const portProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
23430
23430
|
schX?: number | undefined;
|
|
23431
23431
|
schY?: number | undefined;
|
|
23432
23432
|
schRotation?: number | undefined;
|
|
23433
|
-
footprint?:
|
|
23433
|
+
footprint?: FootprintProp | undefined;
|
|
23434
23434
|
pinNumber?: number | undefined;
|
|
23435
23435
|
aliases?: string[] | undefined;
|
|
23436
23436
|
}, {
|
|
@@ -23445,7 +23445,7 @@ declare const portProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
23445
23445
|
schX?: string | number | undefined;
|
|
23446
23446
|
schY?: string | number | undefined;
|
|
23447
23447
|
schRotation?: string | number | undefined;
|
|
23448
|
-
footprint?:
|
|
23448
|
+
footprint?: FootprintProp | undefined;
|
|
23449
23449
|
pinNumber?: number | undefined;
|
|
23450
23450
|
aliases?: string[] | undefined;
|
|
23451
23451
|
}>;
|
|
@@ -23468,4 +23468,4 @@ declare const platformConfig: z.ZodType<PlatformConfig>;
|
|
|
23468
23468
|
|
|
23469
23469
|
declare const ninePointAnchor: z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>;
|
|
23470
23470
|
|
|
23471
|
-
export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryProps, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type
|
|
23471
|
+
export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryProps, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type JumperProps, type LayoutConfig, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicLineProps, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicLineProps, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };
|