@tscircuit/core 0.0.281 → 0.0.283
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 +425 -198
- package/dist/index.js +104 -20
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -732,6 +732,21 @@ declare class Port extends PrimitiveComponent<typeof portProps> {
|
|
|
732
732
|
x: number;
|
|
733
733
|
y: number;
|
|
734
734
|
};
|
|
735
|
+
_getPortsInternallyConnectedToThisPort(): Port[];
|
|
736
|
+
/**
|
|
737
|
+
* Return true if this port has a schematic representation and can be rendered
|
|
738
|
+
* to the schematic.
|
|
739
|
+
*
|
|
740
|
+
* Sometimes things like mounting holes don't have a schematic representation
|
|
741
|
+
* and aren't rendered to the schematic.
|
|
742
|
+
*
|
|
743
|
+
* It's common for a schematic symbol to not have a representation for all of
|
|
744
|
+
* the pins on a footprint, e.g. a pushbutton has 4 pins but is typically
|
|
745
|
+
* represented by a two-pin symbol. In these cases, it's best to use
|
|
746
|
+
* internallyConnectedPorts or externallyConnectedPorts to ensure the things
|
|
747
|
+
* are rendered properly.
|
|
748
|
+
*/
|
|
749
|
+
_hasSchematicPort(): boolean;
|
|
735
750
|
_getGlobalSchematicPositionBeforeLayout(): {
|
|
736
751
|
x: number;
|
|
737
752
|
y: number;
|
|
@@ -765,6 +780,10 @@ declare class Port extends PrimitiveComponent<typeof portProps> {
|
|
|
765
780
|
_hasMatchedPcbPrimitive(): boolean;
|
|
766
781
|
}
|
|
767
782
|
|
|
783
|
+
interface INormalComponent {
|
|
784
|
+
_getInternallyConnectedPorts(): Port[][];
|
|
785
|
+
}
|
|
786
|
+
|
|
768
787
|
type PortMap<T extends string> = {
|
|
769
788
|
[K in T]: Port;
|
|
770
789
|
};
|
|
@@ -785,12 +804,17 @@ type PortMap<T extends string> = {
|
|
|
785
804
|
* }
|
|
786
805
|
* }
|
|
787
806
|
*/
|
|
788
|
-
declare class NormalComponent<ZodProps extends ZodType = any, PortNames extends string = never> extends PrimitiveComponent<ZodProps> {
|
|
807
|
+
declare class NormalComponent<ZodProps extends ZodType = any, PortNames extends string = never> extends PrimitiveComponent<ZodProps> implements INormalComponent {
|
|
789
808
|
reactSubtrees: Array<ReactSubtree>;
|
|
790
809
|
_impliedFootprint?: string | undefined;
|
|
791
810
|
isPrimitiveContainer: boolean;
|
|
792
811
|
_asyncSupplierPartNumbers?: SupplierPartNumbers;
|
|
793
812
|
pcb_missing_footprint_error_id?: string;
|
|
813
|
+
/**
|
|
814
|
+
* Override this property for component defaults
|
|
815
|
+
*/
|
|
816
|
+
get defaultInternallyConnectedPortNames(): string[][];
|
|
817
|
+
get internallyConnectedPortNames(): string[][];
|
|
794
818
|
constructor(props: z.input<ZodProps>);
|
|
795
819
|
/**
|
|
796
820
|
* Override this method for better control over the auto-discovery of ports.
|
|
@@ -824,6 +848,7 @@ declare class NormalComponent<ZodProps extends ZodType = any, PortNames extends
|
|
|
824
848
|
*/
|
|
825
849
|
doInitialSchematicComponentRender(): void;
|
|
826
850
|
_getSchematicSymbolDisplayValue(): string | undefined;
|
|
851
|
+
_getInternallyConnectedPorts(): Port[][];
|
|
827
852
|
_doInitialSchematicComponentRenderWithSymbol(): void;
|
|
828
853
|
_doInitialSchematicComponentRenderWithSchematicBoxDimensions(): void;
|
|
829
854
|
doInitialPcbComponentRender(): void;
|
|
@@ -1001,18 +1026,18 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1001
1026
|
y: string | number;
|
|
1002
1027
|
}>;
|
|
1003
1028
|
}, "strip", z.ZodTypeAny, {
|
|
1029
|
+
selector: string;
|
|
1030
|
+
relative_to: string;
|
|
1004
1031
|
center: {
|
|
1005
1032
|
x: number;
|
|
1006
1033
|
y: number;
|
|
1007
1034
|
};
|
|
1008
|
-
selector: string;
|
|
1009
|
-
relative_to: string;
|
|
1010
1035
|
}, {
|
|
1036
|
+
selector: string;
|
|
1011
1037
|
center: {
|
|
1012
1038
|
x: string | number;
|
|
1013
1039
|
y: string | number;
|
|
1014
1040
|
};
|
|
1015
|
-
selector: string;
|
|
1016
1041
|
relative_to?: string | undefined;
|
|
1017
1042
|
}>, "many">>;
|
|
1018
1043
|
manual_trace_hints: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1047,6 +1072,7 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1047
1072
|
} | undefined;
|
|
1048
1073
|
}>, "many">;
|
|
1049
1074
|
}, "strip", z.ZodTypeAny, {
|
|
1075
|
+
pcb_port_selector: string;
|
|
1050
1076
|
offsets: {
|
|
1051
1077
|
x: number;
|
|
1052
1078
|
y: number;
|
|
@@ -1054,8 +1080,8 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1054
1080
|
via?: boolean | undefined;
|
|
1055
1081
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1056
1082
|
}[];
|
|
1057
|
-
pcb_port_selector: string;
|
|
1058
1083
|
}, {
|
|
1084
|
+
pcb_port_selector: string;
|
|
1059
1085
|
offsets: {
|
|
1060
1086
|
x: string | number;
|
|
1061
1087
|
y: string | number;
|
|
@@ -1065,7 +1091,6 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1065
1091
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1066
1092
|
} | undefined;
|
|
1067
1093
|
}[];
|
|
1068
|
-
pcb_port_selector: string;
|
|
1069
1094
|
}>, "many">>;
|
|
1070
1095
|
schematic_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1071
1096
|
selector: z.ZodString;
|
|
@@ -1081,30 +1106,31 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1081
1106
|
y: string | number;
|
|
1082
1107
|
}>;
|
|
1083
1108
|
}, "strip", z.ZodTypeAny, {
|
|
1109
|
+
selector: string;
|
|
1110
|
+
relative_to: string;
|
|
1084
1111
|
center: {
|
|
1085
1112
|
x: number;
|
|
1086
1113
|
y: number;
|
|
1087
1114
|
};
|
|
1088
|
-
selector: string;
|
|
1089
|
-
relative_to: string;
|
|
1090
1115
|
}, {
|
|
1116
|
+
selector: string;
|
|
1091
1117
|
center: {
|
|
1092
1118
|
x: string | number;
|
|
1093
1119
|
y: string | number;
|
|
1094
1120
|
};
|
|
1095
|
-
selector: string;
|
|
1096
1121
|
relative_to?: string | undefined;
|
|
1097
1122
|
}>, "many">>;
|
|
1098
1123
|
}, "strip", z.ZodTypeAny, {
|
|
1099
1124
|
pcb_placements?: {
|
|
1125
|
+
selector: string;
|
|
1126
|
+
relative_to: string;
|
|
1100
1127
|
center: {
|
|
1101
1128
|
x: number;
|
|
1102
1129
|
y: number;
|
|
1103
1130
|
};
|
|
1104
|
-
selector: string;
|
|
1105
|
-
relative_to: string;
|
|
1106
1131
|
}[] | undefined;
|
|
1107
1132
|
manual_trace_hints?: {
|
|
1133
|
+
pcb_port_selector: string;
|
|
1108
1134
|
offsets: {
|
|
1109
1135
|
x: number;
|
|
1110
1136
|
y: number;
|
|
@@ -1112,26 +1138,26 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1112
1138
|
via?: boolean | undefined;
|
|
1113
1139
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1114
1140
|
}[];
|
|
1115
|
-
pcb_port_selector: string;
|
|
1116
1141
|
}[] | undefined;
|
|
1117
1142
|
schematic_placements?: {
|
|
1143
|
+
selector: string;
|
|
1144
|
+
relative_to: string;
|
|
1118
1145
|
center: {
|
|
1119
1146
|
x: number;
|
|
1120
1147
|
y: number;
|
|
1121
1148
|
};
|
|
1122
|
-
selector: string;
|
|
1123
|
-
relative_to: string;
|
|
1124
1149
|
}[] | undefined;
|
|
1125
1150
|
}, {
|
|
1126
1151
|
pcb_placements?: {
|
|
1152
|
+
selector: string;
|
|
1127
1153
|
center: {
|
|
1128
1154
|
x: string | number;
|
|
1129
1155
|
y: string | number;
|
|
1130
1156
|
};
|
|
1131
|
-
selector: string;
|
|
1132
1157
|
relative_to?: string | undefined;
|
|
1133
1158
|
}[] | undefined;
|
|
1134
1159
|
manual_trace_hints?: {
|
|
1160
|
+
pcb_port_selector: string;
|
|
1135
1161
|
offsets: {
|
|
1136
1162
|
x: string | number;
|
|
1137
1163
|
y: string | number;
|
|
@@ -1141,14 +1167,13 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1141
1167
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1142
1168
|
} | undefined;
|
|
1143
1169
|
}[];
|
|
1144
|
-
pcb_port_selector: string;
|
|
1145
1170
|
}[] | undefined;
|
|
1146
1171
|
schematic_placements?: {
|
|
1172
|
+
selector: string;
|
|
1147
1173
|
center: {
|
|
1148
1174
|
x: string | number;
|
|
1149
1175
|
y: string | number;
|
|
1150
1176
|
};
|
|
1151
|
-
selector: string;
|
|
1152
1177
|
relative_to?: string | undefined;
|
|
1153
1178
|
}[] | undefined;
|
|
1154
1179
|
}>>;
|
|
@@ -1194,27 +1219,26 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1194
1219
|
pcbX?: number | undefined;
|
|
1195
1220
|
pcbY?: number | undefined;
|
|
1196
1221
|
pcbRotation?: number | undefined;
|
|
1222
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1197
1223
|
schX?: number | undefined;
|
|
1198
1224
|
schY?: number | undefined;
|
|
1199
1225
|
schRotation?: number | undefined;
|
|
1200
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1201
1226
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
1202
1227
|
key?: any;
|
|
1203
1228
|
name?: string | undefined;
|
|
1204
1229
|
children?: any;
|
|
1205
|
-
width?: number | undefined;
|
|
1206
|
-
height?: number | undefined;
|
|
1207
1230
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
1208
1231
|
manualEdits?: {
|
|
1209
1232
|
pcb_placements?: {
|
|
1233
|
+
selector: string;
|
|
1234
|
+
relative_to: string;
|
|
1210
1235
|
center: {
|
|
1211
1236
|
x: number;
|
|
1212
1237
|
y: number;
|
|
1213
1238
|
};
|
|
1214
|
-
selector: string;
|
|
1215
|
-
relative_to: string;
|
|
1216
1239
|
}[] | undefined;
|
|
1217
1240
|
manual_trace_hints?: {
|
|
1241
|
+
pcb_port_selector: string;
|
|
1218
1242
|
offsets: {
|
|
1219
1243
|
x: number;
|
|
1220
1244
|
y: number;
|
|
@@ -1222,15 +1246,14 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1222
1246
|
via?: boolean | undefined;
|
|
1223
1247
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1224
1248
|
}[];
|
|
1225
|
-
pcb_port_selector: string;
|
|
1226
1249
|
}[] | undefined;
|
|
1227
1250
|
schematic_placements?: {
|
|
1251
|
+
selector: string;
|
|
1252
|
+
relative_to: string;
|
|
1228
1253
|
center: {
|
|
1229
1254
|
x: number;
|
|
1230
1255
|
y: number;
|
|
1231
1256
|
};
|
|
1232
|
-
selector: string;
|
|
1233
|
-
relative_to: string;
|
|
1234
1257
|
}[] | undefined;
|
|
1235
1258
|
} | undefined;
|
|
1236
1259
|
routingDisabled?: boolean | undefined;
|
|
@@ -1246,6 +1269,8 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1246
1269
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
1247
1270
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
1248
1271
|
partsEngine?: _tscircuit_props.PartsEngine | undefined;
|
|
1272
|
+
width?: number | undefined;
|
|
1273
|
+
height?: number | undefined;
|
|
1249
1274
|
outline?: {
|
|
1250
1275
|
x: number;
|
|
1251
1276
|
y: number;
|
|
@@ -1256,29 +1281,28 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1256
1281
|
pcbX?: string | number | undefined;
|
|
1257
1282
|
pcbY?: string | number | undefined;
|
|
1258
1283
|
pcbRotation?: string | number | undefined;
|
|
1259
|
-
schX?: string | number | undefined;
|
|
1260
|
-
schY?: string | number | undefined;
|
|
1261
|
-
schRotation?: string | number | undefined;
|
|
1262
1284
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1263
1285
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1264
1286
|
} | undefined;
|
|
1287
|
+
schX?: string | number | undefined;
|
|
1288
|
+
schY?: string | number | undefined;
|
|
1289
|
+
schRotation?: string | number | undefined;
|
|
1265
1290
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
1266
1291
|
key?: any;
|
|
1267
1292
|
name?: string | undefined;
|
|
1268
1293
|
children?: any;
|
|
1269
|
-
width?: string | number | undefined;
|
|
1270
|
-
height?: string | number | undefined;
|
|
1271
1294
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
1272
1295
|
manualEdits?: {
|
|
1273
1296
|
pcb_placements?: {
|
|
1297
|
+
selector: string;
|
|
1274
1298
|
center: {
|
|
1275
1299
|
x: string | number;
|
|
1276
1300
|
y: string | number;
|
|
1277
1301
|
};
|
|
1278
|
-
selector: string;
|
|
1279
1302
|
relative_to?: string | undefined;
|
|
1280
1303
|
}[] | undefined;
|
|
1281
1304
|
manual_trace_hints?: {
|
|
1305
|
+
pcb_port_selector: string;
|
|
1282
1306
|
offsets: {
|
|
1283
1307
|
x: string | number;
|
|
1284
1308
|
y: string | number;
|
|
@@ -1288,14 +1312,13 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1288
1312
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1289
1313
|
} | undefined;
|
|
1290
1314
|
}[];
|
|
1291
|
-
pcb_port_selector: string;
|
|
1292
1315
|
}[] | undefined;
|
|
1293
1316
|
schematic_placements?: {
|
|
1317
|
+
selector: string;
|
|
1294
1318
|
center: {
|
|
1295
1319
|
x: string | number;
|
|
1296
1320
|
y: string | number;
|
|
1297
1321
|
};
|
|
1298
|
-
selector: string;
|
|
1299
1322
|
relative_to?: string | undefined;
|
|
1300
1323
|
}[] | undefined;
|
|
1301
1324
|
} | undefined;
|
|
@@ -1312,6 +1335,8 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1312
1335
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
1313
1336
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
1314
1337
|
partsEngine?: _tscircuit_props.PartsEngine | undefined;
|
|
1338
|
+
width?: string | number | undefined;
|
|
1339
|
+
height?: string | number | undefined;
|
|
1315
1340
|
outline?: {
|
|
1316
1341
|
x: string | number;
|
|
1317
1342
|
y: string | number;
|
|
@@ -1610,10 +1635,10 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, PassivePo
|
|
|
1610
1635
|
pcbX?: number | undefined;
|
|
1611
1636
|
pcbY?: number | undefined;
|
|
1612
1637
|
pcbRotation?: number | undefined;
|
|
1638
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1613
1639
|
schX?: number | undefined;
|
|
1614
1640
|
schY?: number | undefined;
|
|
1615
1641
|
schRotation?: number | undefined;
|
|
1616
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1617
1642
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
1618
1643
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
1619
1644
|
key?: any;
|
|
@@ -1683,12 +1708,12 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, PassivePo
|
|
|
1683
1708
|
pcbX?: string | number | undefined;
|
|
1684
1709
|
pcbY?: string | number | undefined;
|
|
1685
1710
|
pcbRotation?: string | number | undefined;
|
|
1686
|
-
schX?: string | number | undefined;
|
|
1687
|
-
schY?: string | number | undefined;
|
|
1688
|
-
schRotation?: string | number | undefined;
|
|
1689
1711
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1690
1712
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1691
1713
|
} | undefined;
|
|
1714
|
+
schX?: string | number | undefined;
|
|
1715
|
+
schY?: string | number | undefined;
|
|
1716
|
+
schRotation?: string | number | undefined;
|
|
1692
1717
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
1693
1718
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
1694
1719
|
key?: any;
|
|
@@ -2026,7 +2051,9 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
2026
2051
|
}>, {
|
|
2027
2052
|
manufacturerPartNumber: zod.ZodOptional<zod.ZodString>;
|
|
2028
2053
|
pinLabels: zod.ZodOptional<zod.ZodRecord<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, zod.ZodUnion<[zod.ZodString, zod.ZodReadonly<zod.ZodArray<zod.ZodString, "many">>]>>>;
|
|
2029
|
-
|
|
2054
|
+
internallyConnectedPins: zod.ZodOptional<zod.ZodArray<zod.ZodArray<zod.ZodString, "many">, "many">>;
|
|
2055
|
+
externallyConnectedPins: zod.ZodOptional<zod.ZodArray<zod.ZodArray<zod.ZodString, "many">, "many">>;
|
|
2056
|
+
schPinArrangement: zod.ZodOptional<zod.ZodObject<{
|
|
2030
2057
|
leftSize: zod.ZodOptional<zod.ZodNumber>;
|
|
2031
2058
|
topSize: zod.ZodOptional<zod.ZodNumber>;
|
|
2032
2059
|
rightSize: zod.ZodOptional<zod.ZodNumber>;
|
|
@@ -2039,41 +2066,141 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
2039
2066
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
2040
2067
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
2041
2068
|
}, "strip", zod.ZodTypeAny, {
|
|
2042
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2043
2069
|
pins: (string | number)[];
|
|
2044
|
-
}, {
|
|
2045
2070
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2071
|
+
}, {
|
|
2046
2072
|
pins: (string | number)[];
|
|
2073
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2047
2074
|
}>>;
|
|
2048
2075
|
rightSide: zod.ZodOptional<zod.ZodObject<{
|
|
2049
2076
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
2050
2077
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
2051
2078
|
}, "strip", zod.ZodTypeAny, {
|
|
2052
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2053
2079
|
pins: (string | number)[];
|
|
2054
|
-
}, {
|
|
2055
2080
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2081
|
+
}, {
|
|
2056
2082
|
pins: (string | number)[];
|
|
2083
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2057
2084
|
}>>;
|
|
2058
2085
|
topSide: zod.ZodOptional<zod.ZodObject<{
|
|
2059
2086
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
2060
2087
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
2061
2088
|
}, "strip", zod.ZodTypeAny, {
|
|
2089
|
+
pins: (string | number)[];
|
|
2062
2090
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2091
|
+
}, {
|
|
2063
2092
|
pins: (string | number)[];
|
|
2093
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2094
|
+
}>>;
|
|
2095
|
+
bottomSide: zod.ZodOptional<zod.ZodObject<{
|
|
2096
|
+
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
2097
|
+
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
2098
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2099
|
+
pins: (string | number)[];
|
|
2100
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2064
2101
|
}, {
|
|
2102
|
+
pins: (string | number)[];
|
|
2103
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2104
|
+
}>>;
|
|
2105
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2106
|
+
leftSize?: number | undefined;
|
|
2107
|
+
topSize?: number | undefined;
|
|
2108
|
+
rightSize?: number | undefined;
|
|
2109
|
+
bottomSize?: number | undefined;
|
|
2110
|
+
leftSide?: {
|
|
2111
|
+
pins: (string | number)[];
|
|
2065
2112
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2113
|
+
} | undefined;
|
|
2114
|
+
topSide?: {
|
|
2115
|
+
pins: (string | number)[];
|
|
2116
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2117
|
+
} | undefined;
|
|
2118
|
+
rightSide?: {
|
|
2066
2119
|
pins: (string | number)[];
|
|
2120
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2121
|
+
} | undefined;
|
|
2122
|
+
bottomSide?: {
|
|
2123
|
+
pins: (string | number)[];
|
|
2124
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2125
|
+
} | undefined;
|
|
2126
|
+
leftPinCount?: number | undefined;
|
|
2127
|
+
rightPinCount?: number | undefined;
|
|
2128
|
+
topPinCount?: number | undefined;
|
|
2129
|
+
bottomPinCount?: number | undefined;
|
|
2130
|
+
}, {
|
|
2131
|
+
leftSize?: number | undefined;
|
|
2132
|
+
topSize?: number | undefined;
|
|
2133
|
+
rightSize?: number | undefined;
|
|
2134
|
+
bottomSize?: number | undefined;
|
|
2135
|
+
leftSide?: {
|
|
2136
|
+
pins: (string | number)[];
|
|
2137
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2138
|
+
} | undefined;
|
|
2139
|
+
topSide?: {
|
|
2140
|
+
pins: (string | number)[];
|
|
2141
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2142
|
+
} | undefined;
|
|
2143
|
+
rightSide?: {
|
|
2144
|
+
pins: (string | number)[];
|
|
2145
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2146
|
+
} | undefined;
|
|
2147
|
+
bottomSide?: {
|
|
2148
|
+
pins: (string | number)[];
|
|
2149
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2150
|
+
} | undefined;
|
|
2151
|
+
leftPinCount?: number | undefined;
|
|
2152
|
+
rightPinCount?: number | undefined;
|
|
2153
|
+
topPinCount?: number | undefined;
|
|
2154
|
+
bottomPinCount?: number | undefined;
|
|
2155
|
+
}>>;
|
|
2156
|
+
schPortArrangement: zod.ZodOptional<zod.ZodObject<{
|
|
2157
|
+
leftSize: zod.ZodOptional<zod.ZodNumber>;
|
|
2158
|
+
topSize: zod.ZodOptional<zod.ZodNumber>;
|
|
2159
|
+
rightSize: zod.ZodOptional<zod.ZodNumber>;
|
|
2160
|
+
bottomSize: zod.ZodOptional<zod.ZodNumber>;
|
|
2161
|
+
leftPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
2162
|
+
rightPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
2163
|
+
topPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
2164
|
+
bottomPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
2165
|
+
leftSide: zod.ZodOptional<zod.ZodObject<{
|
|
2166
|
+
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
2167
|
+
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
2168
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2169
|
+
pins: (string | number)[];
|
|
2170
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2171
|
+
}, {
|
|
2172
|
+
pins: (string | number)[];
|
|
2173
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2067
2174
|
}>>;
|
|
2068
|
-
|
|
2175
|
+
rightSide: zod.ZodOptional<zod.ZodObject<{
|
|
2069
2176
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
2070
2177
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
2071
2178
|
}, "strip", zod.ZodTypeAny, {
|
|
2179
|
+
pins: (string | number)[];
|
|
2072
2180
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2181
|
+
}, {
|
|
2073
2182
|
pins: (string | number)[];
|
|
2183
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2184
|
+
}>>;
|
|
2185
|
+
topSide: zod.ZodOptional<zod.ZodObject<{
|
|
2186
|
+
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
2187
|
+
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
2188
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2189
|
+
pins: (string | number)[];
|
|
2190
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2074
2191
|
}, {
|
|
2192
|
+
pins: (string | number)[];
|
|
2193
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2194
|
+
}>>;
|
|
2195
|
+
bottomSide: zod.ZodOptional<zod.ZodObject<{
|
|
2196
|
+
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
2197
|
+
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
2198
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2199
|
+
pins: (string | number)[];
|
|
2075
2200
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2201
|
+
}, {
|
|
2076
2202
|
pins: (string | number)[];
|
|
2203
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2077
2204
|
}>>;
|
|
2078
2205
|
}, "strip", zod.ZodTypeAny, {
|
|
2079
2206
|
leftSize?: number | undefined;
|
|
@@ -2081,20 +2208,20 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
2081
2208
|
rightSize?: number | undefined;
|
|
2082
2209
|
bottomSize?: number | undefined;
|
|
2083
2210
|
leftSide?: {
|
|
2084
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2085
2211
|
pins: (string | number)[];
|
|
2212
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2086
2213
|
} | undefined;
|
|
2087
2214
|
topSide?: {
|
|
2088
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2089
2215
|
pins: (string | number)[];
|
|
2216
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2090
2217
|
} | undefined;
|
|
2091
2218
|
rightSide?: {
|
|
2092
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2093
2219
|
pins: (string | number)[];
|
|
2220
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2094
2221
|
} | undefined;
|
|
2095
2222
|
bottomSide?: {
|
|
2096
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2097
2223
|
pins: (string | number)[];
|
|
2224
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2098
2225
|
} | undefined;
|
|
2099
2226
|
leftPinCount?: number | undefined;
|
|
2100
2227
|
rightPinCount?: number | undefined;
|
|
@@ -2106,20 +2233,20 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
2106
2233
|
rightSize?: number | undefined;
|
|
2107
2234
|
bottomSize?: number | undefined;
|
|
2108
2235
|
leftSide?: {
|
|
2109
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2110
2236
|
pins: (string | number)[];
|
|
2237
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2111
2238
|
} | undefined;
|
|
2112
2239
|
topSide?: {
|
|
2113
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2114
2240
|
pins: (string | number)[];
|
|
2241
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2115
2242
|
} | undefined;
|
|
2116
2243
|
rightSide?: {
|
|
2117
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2118
2244
|
pins: (string | number)[];
|
|
2245
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2119
2246
|
} | undefined;
|
|
2120
2247
|
bottomSide?: {
|
|
2121
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2122
2248
|
pins: (string | number)[];
|
|
2249
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2123
2250
|
} | undefined;
|
|
2124
2251
|
leftPinCount?: number | undefined;
|
|
2125
2252
|
rightPinCount?: number | undefined;
|
|
@@ -2151,10 +2278,10 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
2151
2278
|
pcbX?: number | undefined;
|
|
2152
2279
|
pcbY?: number | undefined;
|
|
2153
2280
|
pcbRotation?: number | undefined;
|
|
2281
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2154
2282
|
schX?: number | undefined;
|
|
2155
2283
|
schY?: number | undefined;
|
|
2156
2284
|
schRotation?: number | undefined;
|
|
2157
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2158
2285
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
2159
2286
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
2160
2287
|
key?: any;
|
|
@@ -2215,26 +2342,54 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
2215
2342
|
symbolName?: string | undefined;
|
|
2216
2343
|
manufacturerPartNumber?: string | undefined;
|
|
2217
2344
|
pinLabels?: Record<string | number, string | readonly string[]> | undefined;
|
|
2218
|
-
|
|
2345
|
+
internallyConnectedPins?: string[][] | undefined;
|
|
2346
|
+
externallyConnectedPins?: string[][] | undefined;
|
|
2347
|
+
schPinArrangement?: {
|
|
2219
2348
|
leftSize?: number | undefined;
|
|
2220
2349
|
topSize?: number | undefined;
|
|
2221
2350
|
rightSize?: number | undefined;
|
|
2222
2351
|
bottomSize?: number | undefined;
|
|
2223
2352
|
leftSide?: {
|
|
2224
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2225
2353
|
pins: (string | number)[];
|
|
2354
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2226
2355
|
} | undefined;
|
|
2227
2356
|
topSide?: {
|
|
2228
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2229
2357
|
pins: (string | number)[];
|
|
2358
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2230
2359
|
} | undefined;
|
|
2231
2360
|
rightSide?: {
|
|
2232
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2233
2361
|
pins: (string | number)[];
|
|
2362
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2234
2363
|
} | undefined;
|
|
2235
2364
|
bottomSide?: {
|
|
2365
|
+
pins: (string | number)[];
|
|
2236
2366
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2367
|
+
} | undefined;
|
|
2368
|
+
leftPinCount?: number | undefined;
|
|
2369
|
+
rightPinCount?: number | undefined;
|
|
2370
|
+
topPinCount?: number | undefined;
|
|
2371
|
+
bottomPinCount?: number | undefined;
|
|
2372
|
+
} | undefined;
|
|
2373
|
+
schPortArrangement?: {
|
|
2374
|
+
leftSize?: number | undefined;
|
|
2375
|
+
topSize?: number | undefined;
|
|
2376
|
+
rightSize?: number | undefined;
|
|
2377
|
+
bottomSize?: number | undefined;
|
|
2378
|
+
leftSide?: {
|
|
2237
2379
|
pins: (string | number)[];
|
|
2380
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2381
|
+
} | undefined;
|
|
2382
|
+
topSide?: {
|
|
2383
|
+
pins: (string | number)[];
|
|
2384
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2385
|
+
} | undefined;
|
|
2386
|
+
rightSide?: {
|
|
2387
|
+
pins: (string | number)[];
|
|
2388
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2389
|
+
} | undefined;
|
|
2390
|
+
bottomSide?: {
|
|
2391
|
+
pins: (string | number)[];
|
|
2392
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2238
2393
|
} | undefined;
|
|
2239
2394
|
leftPinCount?: number | undefined;
|
|
2240
2395
|
rightPinCount?: number | undefined;
|
|
@@ -2256,12 +2411,12 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
2256
2411
|
pcbX?: string | number | undefined;
|
|
2257
2412
|
pcbY?: string | number | undefined;
|
|
2258
2413
|
pcbRotation?: string | number | undefined;
|
|
2259
|
-
schX?: string | number | undefined;
|
|
2260
|
-
schY?: string | number | undefined;
|
|
2261
|
-
schRotation?: string | number | undefined;
|
|
2262
2414
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
2263
2415
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2264
2416
|
} | undefined;
|
|
2417
|
+
schX?: string | number | undefined;
|
|
2418
|
+
schY?: string | number | undefined;
|
|
2419
|
+
schRotation?: string | number | undefined;
|
|
2265
2420
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
2266
2421
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
2267
2422
|
key?: any;
|
|
@@ -2322,26 +2477,54 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
2322
2477
|
symbolName?: string | undefined;
|
|
2323
2478
|
manufacturerPartNumber?: string | undefined;
|
|
2324
2479
|
pinLabels?: Record<string | number, string | readonly string[]> | undefined;
|
|
2325
|
-
|
|
2480
|
+
internallyConnectedPins?: string[][] | undefined;
|
|
2481
|
+
externallyConnectedPins?: string[][] | undefined;
|
|
2482
|
+
schPinArrangement?: {
|
|
2326
2483
|
leftSize?: number | undefined;
|
|
2327
2484
|
topSize?: number | undefined;
|
|
2328
2485
|
rightSize?: number | undefined;
|
|
2329
2486
|
bottomSize?: number | undefined;
|
|
2330
2487
|
leftSide?: {
|
|
2331
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2332
2488
|
pins: (string | number)[];
|
|
2489
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2333
2490
|
} | undefined;
|
|
2334
2491
|
topSide?: {
|
|
2335
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2336
2492
|
pins: (string | number)[];
|
|
2493
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2337
2494
|
} | undefined;
|
|
2338
2495
|
rightSide?: {
|
|
2339
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2340
2496
|
pins: (string | number)[];
|
|
2497
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2341
2498
|
} | undefined;
|
|
2342
2499
|
bottomSide?: {
|
|
2500
|
+
pins: (string | number)[];
|
|
2343
2501
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2502
|
+
} | undefined;
|
|
2503
|
+
leftPinCount?: number | undefined;
|
|
2504
|
+
rightPinCount?: number | undefined;
|
|
2505
|
+
topPinCount?: number | undefined;
|
|
2506
|
+
bottomPinCount?: number | undefined;
|
|
2507
|
+
} | undefined;
|
|
2508
|
+
schPortArrangement?: {
|
|
2509
|
+
leftSize?: number | undefined;
|
|
2510
|
+
topSize?: number | undefined;
|
|
2511
|
+
rightSize?: number | undefined;
|
|
2512
|
+
bottomSize?: number | undefined;
|
|
2513
|
+
leftSide?: {
|
|
2344
2514
|
pins: (string | number)[];
|
|
2515
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2516
|
+
} | undefined;
|
|
2517
|
+
topSide?: {
|
|
2518
|
+
pins: (string | number)[];
|
|
2519
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2520
|
+
} | undefined;
|
|
2521
|
+
rightSide?: {
|
|
2522
|
+
pins: (string | number)[];
|
|
2523
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2524
|
+
} | undefined;
|
|
2525
|
+
bottomSide?: {
|
|
2526
|
+
pins: (string | number)[];
|
|
2527
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2345
2528
|
} | undefined;
|
|
2346
2529
|
leftPinCount?: number | undefined;
|
|
2347
2530
|
rightPinCount?: number | undefined;
|
|
@@ -2631,10 +2814,10 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
2631
2814
|
pcbX?: number | undefined;
|
|
2632
2815
|
pcbY?: number | undefined;
|
|
2633
2816
|
pcbRotation?: number | undefined;
|
|
2817
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2634
2818
|
schX?: number | undefined;
|
|
2635
2819
|
schY?: number | undefined;
|
|
2636
2820
|
schRotation?: number | undefined;
|
|
2637
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
2638
2821
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
2639
2822
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
2640
2823
|
key?: any;
|
|
@@ -2698,12 +2881,12 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
2698
2881
|
pcbX?: string | number | undefined;
|
|
2699
2882
|
pcbY?: string | number | undefined;
|
|
2700
2883
|
pcbRotation?: string | number | undefined;
|
|
2701
|
-
schX?: string | number | undefined;
|
|
2702
|
-
schY?: string | number | undefined;
|
|
2703
|
-
schRotation?: string | number | undefined;
|
|
2704
2884
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
2705
2885
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2706
2886
|
} | undefined;
|
|
2887
|
+
schX?: string | number | undefined;
|
|
2888
|
+
schY?: string | number | undefined;
|
|
2889
|
+
schRotation?: string | number | undefined;
|
|
2707
2890
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
2708
2891
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
2709
2892
|
key?: any;
|
|
@@ -3068,41 +3251,41 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
3068
3251
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
3069
3252
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
3070
3253
|
}, "strip", zod.ZodTypeAny, {
|
|
3071
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3072
3254
|
pins: (string | number)[];
|
|
3073
|
-
}, {
|
|
3074
3255
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3256
|
+
}, {
|
|
3075
3257
|
pins: (string | number)[];
|
|
3258
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3076
3259
|
}>>;
|
|
3077
3260
|
rightSide: zod.ZodOptional<zod.ZodObject<{
|
|
3078
3261
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
3079
3262
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
3080
3263
|
}, "strip", zod.ZodTypeAny, {
|
|
3081
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3082
3264
|
pins: (string | number)[];
|
|
3083
|
-
}, {
|
|
3084
3265
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3266
|
+
}, {
|
|
3085
3267
|
pins: (string | number)[];
|
|
3268
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3086
3269
|
}>>;
|
|
3087
3270
|
topSide: zod.ZodOptional<zod.ZodObject<{
|
|
3088
3271
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
3089
3272
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
3090
3273
|
}, "strip", zod.ZodTypeAny, {
|
|
3091
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3092
3274
|
pins: (string | number)[];
|
|
3093
|
-
}, {
|
|
3094
3275
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3276
|
+
}, {
|
|
3095
3277
|
pins: (string | number)[];
|
|
3278
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3096
3279
|
}>>;
|
|
3097
3280
|
bottomSide: zod.ZodOptional<zod.ZodObject<{
|
|
3098
3281
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
3099
3282
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
3100
3283
|
}, "strip", zod.ZodTypeAny, {
|
|
3101
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3102
3284
|
pins: (string | number)[];
|
|
3103
|
-
}, {
|
|
3104
3285
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3286
|
+
}, {
|
|
3105
3287
|
pins: (string | number)[];
|
|
3288
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3106
3289
|
}>>;
|
|
3107
3290
|
}, "strip", zod.ZodTypeAny, {
|
|
3108
3291
|
leftSize?: number | undefined;
|
|
@@ -3110,20 +3293,20 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
3110
3293
|
rightSize?: number | undefined;
|
|
3111
3294
|
bottomSize?: number | undefined;
|
|
3112
3295
|
leftSide?: {
|
|
3113
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3114
3296
|
pins: (string | number)[];
|
|
3297
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3115
3298
|
} | undefined;
|
|
3116
3299
|
topSide?: {
|
|
3117
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3118
3300
|
pins: (string | number)[];
|
|
3301
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3119
3302
|
} | undefined;
|
|
3120
3303
|
rightSide?: {
|
|
3121
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3122
3304
|
pins: (string | number)[];
|
|
3305
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3123
3306
|
} | undefined;
|
|
3124
3307
|
bottomSide?: {
|
|
3125
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3126
3308
|
pins: (string | number)[];
|
|
3309
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3127
3310
|
} | undefined;
|
|
3128
3311
|
leftPinCount?: number | undefined;
|
|
3129
3312
|
rightPinCount?: number | undefined;
|
|
@@ -3135,20 +3318,20 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
3135
3318
|
rightSize?: number | undefined;
|
|
3136
3319
|
bottomSize?: number | undefined;
|
|
3137
3320
|
leftSide?: {
|
|
3138
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3139
3321
|
pins: (string | number)[];
|
|
3322
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3140
3323
|
} | undefined;
|
|
3141
3324
|
topSide?: {
|
|
3142
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3143
3325
|
pins: (string | number)[];
|
|
3326
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3144
3327
|
} | undefined;
|
|
3145
3328
|
rightSide?: {
|
|
3146
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3147
3329
|
pins: (string | number)[];
|
|
3330
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3148
3331
|
} | undefined;
|
|
3149
3332
|
bottomSide?: {
|
|
3150
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3151
3333
|
pins: (string | number)[];
|
|
3334
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3152
3335
|
} | undefined;
|
|
3153
3336
|
leftPinCount?: number | undefined;
|
|
3154
3337
|
rightPinCount?: number | undefined;
|
|
@@ -3160,10 +3343,10 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
3160
3343
|
pcbX?: number | undefined;
|
|
3161
3344
|
pcbY?: number | undefined;
|
|
3162
3345
|
pcbRotation?: number | undefined;
|
|
3346
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
3163
3347
|
schX?: number | undefined;
|
|
3164
3348
|
schY?: number | undefined;
|
|
3165
3349
|
schRotation?: number | undefined;
|
|
3166
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
3167
3350
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
3168
3351
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3169
3352
|
key?: any;
|
|
@@ -3230,20 +3413,20 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
3230
3413
|
rightSize?: number | undefined;
|
|
3231
3414
|
bottomSize?: number | undefined;
|
|
3232
3415
|
leftSide?: {
|
|
3233
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3234
3416
|
pins: (string | number)[];
|
|
3417
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3235
3418
|
} | undefined;
|
|
3236
3419
|
topSide?: {
|
|
3237
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3238
3420
|
pins: (string | number)[];
|
|
3421
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3239
3422
|
} | undefined;
|
|
3240
3423
|
rightSide?: {
|
|
3241
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3242
3424
|
pins: (string | number)[];
|
|
3425
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3243
3426
|
} | undefined;
|
|
3244
3427
|
bottomSide?: {
|
|
3245
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3246
3428
|
pins: (string | number)[];
|
|
3429
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3247
3430
|
} | undefined;
|
|
3248
3431
|
leftPinCount?: number | undefined;
|
|
3249
3432
|
rightPinCount?: number | undefined;
|
|
@@ -3265,12 +3448,12 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
3265
3448
|
pcbX?: string | number | undefined;
|
|
3266
3449
|
pcbY?: string | number | undefined;
|
|
3267
3450
|
pcbRotation?: string | number | undefined;
|
|
3268
|
-
schX?: string | number | undefined;
|
|
3269
|
-
schY?: string | number | undefined;
|
|
3270
|
-
schRotation?: string | number | undefined;
|
|
3271
3451
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
3272
3452
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3273
3453
|
} | undefined;
|
|
3454
|
+
schX?: string | number | undefined;
|
|
3455
|
+
schY?: string | number | undefined;
|
|
3456
|
+
schRotation?: string | number | undefined;
|
|
3274
3457
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
3275
3458
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3276
3459
|
key?: any;
|
|
@@ -3337,20 +3520,20 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
3337
3520
|
rightSize?: number | undefined;
|
|
3338
3521
|
bottomSize?: number | undefined;
|
|
3339
3522
|
leftSide?: {
|
|
3340
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3341
3523
|
pins: (string | number)[];
|
|
3524
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3342
3525
|
} | undefined;
|
|
3343
3526
|
topSide?: {
|
|
3344
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3345
3527
|
pins: (string | number)[];
|
|
3528
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3346
3529
|
} | undefined;
|
|
3347
3530
|
rightSide?: {
|
|
3348
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3349
3531
|
pins: (string | number)[];
|
|
3532
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3350
3533
|
} | undefined;
|
|
3351
3534
|
bottomSide?: {
|
|
3352
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3353
3535
|
pins: (string | number)[];
|
|
3536
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3354
3537
|
} | undefined;
|
|
3355
3538
|
leftPinCount?: number | undefined;
|
|
3356
3539
|
rightPinCount?: number | undefined;
|
|
@@ -3641,10 +3824,10 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
3641
3824
|
pcbX?: number | undefined;
|
|
3642
3825
|
pcbY?: number | undefined;
|
|
3643
3826
|
pcbRotation?: number | undefined;
|
|
3827
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
3644
3828
|
schX?: number | undefined;
|
|
3645
3829
|
schY?: number | undefined;
|
|
3646
3830
|
schRotation?: number | undefined;
|
|
3647
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
3648
3831
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
3649
3832
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3650
3833
|
key?: any;
|
|
@@ -3709,12 +3892,12 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
3709
3892
|
pcbX?: string | number | undefined;
|
|
3710
3893
|
pcbY?: string | number | undefined;
|
|
3711
3894
|
pcbRotation?: string | number | undefined;
|
|
3712
|
-
schX?: string | number | undefined;
|
|
3713
|
-
schY?: string | number | undefined;
|
|
3714
|
-
schRotation?: string | number | undefined;
|
|
3715
3895
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
3716
3896
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3717
3897
|
} | undefined;
|
|
3898
|
+
schX?: string | number | undefined;
|
|
3899
|
+
schY?: string | number | undefined;
|
|
3900
|
+
schRotation?: string | number | undefined;
|
|
3718
3901
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
3719
3902
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3720
3903
|
key?: any;
|
|
@@ -4052,10 +4235,10 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
4052
4235
|
pcbX?: number | undefined;
|
|
4053
4236
|
pcbY?: number | undefined;
|
|
4054
4237
|
pcbRotation?: number | undefined;
|
|
4238
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
4055
4239
|
schX?: number | undefined;
|
|
4056
4240
|
schY?: number | undefined;
|
|
4057
4241
|
schRotation?: number | undefined;
|
|
4058
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
4059
4242
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
4060
4243
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4061
4244
|
key?: any;
|
|
@@ -4120,12 +4303,12 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
4120
4303
|
pcbX?: string | number | undefined;
|
|
4121
4304
|
pcbY?: string | number | undefined;
|
|
4122
4305
|
pcbRotation?: string | number | undefined;
|
|
4123
|
-
schX?: string | number | undefined;
|
|
4124
|
-
schY?: string | number | undefined;
|
|
4125
|
-
schRotation?: string | number | undefined;
|
|
4126
4306
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
4127
4307
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
4128
4308
|
} | undefined;
|
|
4309
|
+
schX?: string | number | undefined;
|
|
4310
|
+
schY?: string | number | undefined;
|
|
4311
|
+
schRotation?: string | number | undefined;
|
|
4129
4312
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
4130
4313
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4131
4314
|
key?: any;
|
|
@@ -4466,10 +4649,10 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
4466
4649
|
pcbX?: number | undefined;
|
|
4467
4650
|
pcbY?: number | undefined;
|
|
4468
4651
|
pcbRotation?: number | undefined;
|
|
4652
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
4469
4653
|
schX?: number | undefined;
|
|
4470
4654
|
schY?: number | undefined;
|
|
4471
4655
|
schRotation?: number | undefined;
|
|
4472
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
4473
4656
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
4474
4657
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4475
4658
|
key?: any;
|
|
@@ -4538,12 +4721,12 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
4538
4721
|
pcbX?: string | number | undefined;
|
|
4539
4722
|
pcbY?: string | number | undefined;
|
|
4540
4723
|
pcbRotation?: string | number | undefined;
|
|
4541
|
-
schX?: string | number | undefined;
|
|
4542
|
-
schY?: string | number | undefined;
|
|
4543
|
-
schRotation?: string | number | undefined;
|
|
4544
4724
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
4545
4725
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
4546
4726
|
} | undefined;
|
|
4727
|
+
schX?: string | number | undefined;
|
|
4728
|
+
schY?: string | number | undefined;
|
|
4729
|
+
schRotation?: string | number | undefined;
|
|
4547
4730
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
4548
4731
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4549
4732
|
key?: any;
|
|
@@ -5032,13 +5215,13 @@ declare class NetAlias extends PrimitiveComponent<typeof netAliasProps> {
|
|
|
5032
5215
|
schY?: number | undefined;
|
|
5033
5216
|
schRotation?: number | undefined;
|
|
5034
5217
|
net?: string | undefined;
|
|
5035
|
-
anchorSide?: "
|
|
5218
|
+
anchorSide?: "up" | "down" | "left" | "right" | undefined;
|
|
5036
5219
|
}, {
|
|
5037
5220
|
schX?: string | number | undefined;
|
|
5038
5221
|
schY?: string | number | undefined;
|
|
5039
5222
|
schRotation?: string | number | undefined;
|
|
5040
5223
|
net?: string | undefined;
|
|
5041
|
-
anchorSide?: "
|
|
5224
|
+
anchorSide?: "up" | "down" | "left" | "right" | undefined;
|
|
5042
5225
|
}>;
|
|
5043
5226
|
};
|
|
5044
5227
|
doInitialSchematicComponentRender(): void;
|
|
@@ -5224,8 +5407,8 @@ declare class SilkscreenCircle extends PrimitiveComponent<typeof silkscreenCircl
|
|
|
5224
5407
|
pcbX?: number | undefined;
|
|
5225
5408
|
pcbY?: number | undefined;
|
|
5226
5409
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5227
|
-
isFilled?: boolean | undefined;
|
|
5228
5410
|
strokeWidth?: number | undefined;
|
|
5411
|
+
isFilled?: boolean | undefined;
|
|
5229
5412
|
isOutline?: boolean | undefined;
|
|
5230
5413
|
}, {
|
|
5231
5414
|
radius: string | number;
|
|
@@ -5234,8 +5417,8 @@ declare class SilkscreenCircle extends PrimitiveComponent<typeof silkscreenCircl
|
|
|
5234
5417
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5235
5418
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5236
5419
|
} | undefined;
|
|
5237
|
-
isFilled?: boolean | undefined;
|
|
5238
5420
|
strokeWidth?: string | number | undefined;
|
|
5421
|
+
isFilled?: boolean | undefined;
|
|
5239
5422
|
isOutline?: boolean | undefined;
|
|
5240
5423
|
}>;
|
|
5241
5424
|
};
|
|
@@ -5348,8 +5531,8 @@ declare class SilkscreenRect extends PrimitiveComponent<typeof silkscreenRectPro
|
|
|
5348
5531
|
pcbX?: number | undefined;
|
|
5349
5532
|
pcbY?: number | undefined;
|
|
5350
5533
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5351
|
-
isFilled?: boolean | undefined;
|
|
5352
5534
|
strokeWidth?: number | undefined;
|
|
5535
|
+
isFilled?: boolean | undefined;
|
|
5353
5536
|
isOutline?: boolean | undefined;
|
|
5354
5537
|
}, {
|
|
5355
5538
|
width: string | number;
|
|
@@ -5359,8 +5542,8 @@ declare class SilkscreenRect extends PrimitiveComponent<typeof silkscreenRectPro
|
|
|
5359
5542
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5360
5543
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5361
5544
|
} | undefined;
|
|
5362
|
-
isFilled?: boolean | undefined;
|
|
5363
5545
|
strokeWidth?: string | number | undefined;
|
|
5546
|
+
isFilled?: boolean | undefined;
|
|
5364
5547
|
isOutline?: boolean | undefined;
|
|
5365
5548
|
}>;
|
|
5366
5549
|
};
|
|
@@ -5442,18 +5625,18 @@ declare class SilkscreenLine extends PrimitiveComponent<typeof silkscreenLinePro
|
|
|
5442
5625
|
x2: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
5443
5626
|
y2: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
5444
5627
|
}>, "strip", zod.ZodTypeAny, {
|
|
5628
|
+
strokeWidth: number;
|
|
5445
5629
|
x1: number;
|
|
5446
5630
|
y1: number;
|
|
5447
5631
|
x2: number;
|
|
5448
5632
|
y2: number;
|
|
5449
|
-
strokeWidth: number;
|
|
5450
5633
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5451
5634
|
}, {
|
|
5635
|
+
strokeWidth: string | number;
|
|
5452
5636
|
x1: string | number;
|
|
5453
5637
|
y1: string | number;
|
|
5454
5638
|
x2: string | number;
|
|
5455
5639
|
y2: string | number;
|
|
5456
|
-
strokeWidth: string | number;
|
|
5457
5640
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5458
5641
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5459
5642
|
} | undefined;
|
|
@@ -5576,6 +5759,45 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
5576
5759
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5577
5760
|
} | undefined;
|
|
5578
5761
|
portHints?: (string | number)[] | undefined;
|
|
5762
|
+
}>, zod.ZodObject<zod.objectUtil.extendShape<Omit<{
|
|
5763
|
+
pcbX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
5764
|
+
pcbY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
5765
|
+
pcbRotation: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
5766
|
+
layer: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, zod.ZodObject<{
|
|
5767
|
+
name: zod.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
5768
|
+
}, "strip", zod.ZodTypeAny, {
|
|
5769
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5770
|
+
}, {
|
|
5771
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5772
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5773
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5774
|
+
}>>;
|
|
5775
|
+
}, "pcbRotation">, {
|
|
5776
|
+
shape: zod.ZodLiteral<"pill">;
|
|
5777
|
+
width: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
5778
|
+
height: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
5779
|
+
radius: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
5780
|
+
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
5781
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
5782
|
+
shape: "pill";
|
|
5783
|
+
width: number;
|
|
5784
|
+
height: number;
|
|
5785
|
+
radius: number;
|
|
5786
|
+
pcbX?: number | undefined;
|
|
5787
|
+
pcbY?: number | undefined;
|
|
5788
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5789
|
+
portHints?: (string | number)[] | undefined;
|
|
5790
|
+
}, {
|
|
5791
|
+
shape: "pill";
|
|
5792
|
+
width: string | number;
|
|
5793
|
+
height: string | number;
|
|
5794
|
+
radius: string | number;
|
|
5795
|
+
pcbX?: string | number | undefined;
|
|
5796
|
+
pcbY?: string | number | undefined;
|
|
5797
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5798
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5799
|
+
} | undefined;
|
|
5800
|
+
portHints?: (string | number)[] | undefined;
|
|
5579
5801
|
}>]>;
|
|
5580
5802
|
};
|
|
5581
5803
|
getPcbSize(): {
|
|
@@ -5656,15 +5878,15 @@ declare class TraceHint extends PrimitiveComponent<typeof traceHintProps> {
|
|
|
5656
5878
|
}, "strip", zod.ZodTypeAny, {
|
|
5657
5879
|
x: number;
|
|
5658
5880
|
y: number;
|
|
5659
|
-
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5660
5881
|
via?: boolean | undefined;
|
|
5882
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5661
5883
|
}, {
|
|
5662
5884
|
x: string | number;
|
|
5663
5885
|
y: string | number;
|
|
5886
|
+
via?: boolean | undefined;
|
|
5664
5887
|
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5665
5888
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5666
5889
|
} | undefined;
|
|
5667
|
-
via?: boolean | undefined;
|
|
5668
5890
|
}>]>>;
|
|
5669
5891
|
offsets: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
5670
5892
|
x: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
@@ -5710,49 +5932,47 @@ declare class TraceHint extends PrimitiveComponent<typeof traceHintProps> {
|
|
|
5710
5932
|
}, "strip", zod.ZodTypeAny, {
|
|
5711
5933
|
x: number;
|
|
5712
5934
|
y: number;
|
|
5713
|
-
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5714
5935
|
via?: boolean | undefined;
|
|
5936
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5715
5937
|
}, {
|
|
5716
5938
|
x: string | number;
|
|
5717
5939
|
y: string | number;
|
|
5940
|
+
via?: boolean | undefined;
|
|
5718
5941
|
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5719
5942
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5720
5943
|
} | undefined;
|
|
5721
|
-
via?: boolean | undefined;
|
|
5722
5944
|
}>, "many">]>>;
|
|
5723
5945
|
traceWidth: zod.ZodOptional<zod.ZodNumber>;
|
|
5724
5946
|
}, "strip", zod.ZodTypeAny, {
|
|
5725
|
-
|
|
5726
|
-
order?: number | undefined;
|
|
5727
|
-
offset?: {
|
|
5947
|
+
offsets?: {
|
|
5728
5948
|
x: number;
|
|
5729
5949
|
y: number;
|
|
5730
5950
|
trace_width?: number | undefined;
|
|
5731
5951
|
via?: boolean | undefined;
|
|
5732
5952
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5733
|
-
} | {
|
|
5953
|
+
}[] | {
|
|
5734
5954
|
x: number;
|
|
5735
5955
|
y: number;
|
|
5736
|
-
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5737
5956
|
via?: boolean | undefined;
|
|
5738
|
-
|
|
5739
|
-
|
|
5957
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5958
|
+
}[] | undefined;
|
|
5959
|
+
for?: string | undefined;
|
|
5960
|
+
order?: number | undefined;
|
|
5961
|
+
offset?: {
|
|
5740
5962
|
x: number;
|
|
5741
5963
|
y: number;
|
|
5742
5964
|
trace_width?: number | undefined;
|
|
5743
5965
|
via?: boolean | undefined;
|
|
5744
5966
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5745
|
-
}
|
|
5967
|
+
} | {
|
|
5746
5968
|
x: number;
|
|
5747
5969
|
y: number;
|
|
5748
|
-
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5749
5970
|
via?: boolean | undefined;
|
|
5750
|
-
|
|
5971
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5972
|
+
} | undefined;
|
|
5751
5973
|
traceWidth?: number | undefined;
|
|
5752
5974
|
}, {
|
|
5753
|
-
|
|
5754
|
-
order?: number | undefined;
|
|
5755
|
-
offset?: {
|
|
5975
|
+
offsets?: {
|
|
5756
5976
|
x: string | number;
|
|
5757
5977
|
y: string | number;
|
|
5758
5978
|
trace_width?: string | number | undefined;
|
|
@@ -5760,15 +5980,17 @@ declare class TraceHint extends PrimitiveComponent<typeof traceHintProps> {
|
|
|
5760
5980
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5761
5981
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5762
5982
|
} | undefined;
|
|
5763
|
-
} | {
|
|
5983
|
+
}[] | {
|
|
5764
5984
|
x: string | number;
|
|
5765
5985
|
y: string | number;
|
|
5986
|
+
via?: boolean | undefined;
|
|
5766
5987
|
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5767
5988
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5768
5989
|
} | undefined;
|
|
5769
|
-
|
|
5770
|
-
|
|
5771
|
-
|
|
5990
|
+
}[] | undefined;
|
|
5991
|
+
for?: string | undefined;
|
|
5992
|
+
order?: number | undefined;
|
|
5993
|
+
offset?: {
|
|
5772
5994
|
x: string | number;
|
|
5773
5995
|
y: string | number;
|
|
5774
5996
|
trace_width?: string | number | undefined;
|
|
@@ -5776,14 +5998,14 @@ declare class TraceHint extends PrimitiveComponent<typeof traceHintProps> {
|
|
|
5776
5998
|
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5777
5999
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5778
6000
|
} | undefined;
|
|
5779
|
-
}
|
|
6001
|
+
} | {
|
|
5780
6002
|
x: string | number;
|
|
5781
6003
|
y: string | number;
|
|
6004
|
+
via?: boolean | undefined;
|
|
5782
6005
|
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5783
6006
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5784
6007
|
} | undefined;
|
|
5785
|
-
|
|
5786
|
-
}[] | undefined;
|
|
6008
|
+
} | undefined;
|
|
5787
6009
|
traceWidth?: number | undefined;
|
|
5788
6010
|
}>;
|
|
5789
6011
|
};
|
|
@@ -5837,36 +6059,36 @@ declare class Via extends PrimitiveComponent<typeof viaProps> {
|
|
|
5837
6059
|
holeDiameter: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
5838
6060
|
outerDiameter: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
5839
6061
|
}>, "strip", zod.ZodTypeAny, {
|
|
5840
|
-
fromLayer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5841
|
-
toLayer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5842
6062
|
holeDiameter: number;
|
|
5843
6063
|
outerDiameter: number;
|
|
6064
|
+
fromLayer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6065
|
+
toLayer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5844
6066
|
pcbX?: number | undefined;
|
|
5845
6067
|
pcbY?: number | undefined;
|
|
5846
6068
|
pcbRotation?: number | undefined;
|
|
6069
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5847
6070
|
schX?: number | undefined;
|
|
5848
6071
|
schY?: number | undefined;
|
|
5849
6072
|
schRotation?: number | undefined;
|
|
5850
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
5851
6073
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
5852
6074
|
}, {
|
|
6075
|
+
holeDiameter: string | number;
|
|
6076
|
+
outerDiameter: string | number;
|
|
5853
6077
|
fromLayer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5854
6078
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5855
6079
|
};
|
|
5856
6080
|
toLayer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5857
6081
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5858
6082
|
};
|
|
5859
|
-
holeDiameter: string | number;
|
|
5860
|
-
outerDiameter: string | number;
|
|
5861
6083
|
pcbX?: string | number | undefined;
|
|
5862
6084
|
pcbY?: string | number | undefined;
|
|
5863
6085
|
pcbRotation?: string | number | undefined;
|
|
5864
|
-
schX?: string | number | undefined;
|
|
5865
|
-
schY?: string | number | undefined;
|
|
5866
|
-
schRotation?: string | number | undefined;
|
|
5867
6086
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5868
6087
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5869
6088
|
} | undefined;
|
|
6089
|
+
schX?: string | number | undefined;
|
|
6090
|
+
schY?: string | number | undefined;
|
|
6091
|
+
schRotation?: string | number | undefined;
|
|
5870
6092
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
5871
6093
|
}>;
|
|
5872
6094
|
};
|
|
@@ -6163,10 +6385,10 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
6163
6385
|
pcbX?: number | undefined;
|
|
6164
6386
|
pcbY?: number | undefined;
|
|
6165
6387
|
pcbRotation?: number | undefined;
|
|
6388
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
6166
6389
|
schX?: number | undefined;
|
|
6167
6390
|
schY?: number | undefined;
|
|
6168
6391
|
schRotation?: number | undefined;
|
|
6169
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
6170
6392
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
6171
6393
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6172
6394
|
key?: any;
|
|
@@ -6231,12 +6453,12 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
6231
6453
|
pcbX?: string | number | undefined;
|
|
6232
6454
|
pcbY?: string | number | undefined;
|
|
6233
6455
|
pcbRotation?: string | number | undefined;
|
|
6234
|
-
schX?: string | number | undefined;
|
|
6235
|
-
schY?: string | number | undefined;
|
|
6236
|
-
schRotation?: string | number | undefined;
|
|
6237
6456
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
6238
6457
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6239
6458
|
} | undefined;
|
|
6459
|
+
schX?: string | number | undefined;
|
|
6460
|
+
schY?: string | number | undefined;
|
|
6461
|
+
schRotation?: string | number | undefined;
|
|
6240
6462
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
6241
6463
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6242
6464
|
key?: any;
|
|
@@ -6579,10 +6801,10 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
6579
6801
|
pcbX?: number | undefined;
|
|
6580
6802
|
pcbY?: number | undefined;
|
|
6581
6803
|
pcbRotation?: number | undefined;
|
|
6804
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
6582
6805
|
schX?: number | undefined;
|
|
6583
6806
|
schY?: number | undefined;
|
|
6584
6807
|
schRotation?: number | undefined;
|
|
6585
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
6586
6808
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
6587
6809
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6588
6810
|
key?: any;
|
|
@@ -6641,8 +6863,8 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
6641
6863
|
} | undefined;
|
|
6642
6864
|
children?: any;
|
|
6643
6865
|
symbolName?: string | undefined;
|
|
6644
|
-
holeDiameter?: number | undefined;
|
|
6645
6866
|
pinLabels?: string[] | undefined;
|
|
6867
|
+
holeDiameter?: number | undefined;
|
|
6646
6868
|
pitch?: number | undefined;
|
|
6647
6869
|
showSilkscreenPinLabels?: boolean | undefined;
|
|
6648
6870
|
doubleRow?: boolean | undefined;
|
|
@@ -6654,12 +6876,12 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
6654
6876
|
pcbX?: string | number | undefined;
|
|
6655
6877
|
pcbY?: string | number | undefined;
|
|
6656
6878
|
pcbRotation?: string | number | undefined;
|
|
6657
|
-
schX?: string | number | undefined;
|
|
6658
|
-
schY?: string | number | undefined;
|
|
6659
|
-
schRotation?: string | number | undefined;
|
|
6660
6879
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
6661
6880
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6662
6881
|
} | undefined;
|
|
6882
|
+
schX?: string | number | undefined;
|
|
6883
|
+
schY?: string | number | undefined;
|
|
6884
|
+
schRotation?: string | number | undefined;
|
|
6663
6885
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
6664
6886
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6665
6887
|
key?: any;
|
|
@@ -6718,8 +6940,8 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
6718
6940
|
} | undefined;
|
|
6719
6941
|
children?: any;
|
|
6720
6942
|
symbolName?: string | undefined;
|
|
6721
|
-
holeDiameter?: string | number | undefined;
|
|
6722
6943
|
pinLabels?: string[] | undefined;
|
|
6944
|
+
holeDiameter?: string | number | undefined;
|
|
6723
6945
|
pitch?: string | number | undefined;
|
|
6724
6946
|
gender?: "male" | "female" | undefined;
|
|
6725
6947
|
showSilkscreenPinLabels?: boolean | undefined;
|
|
@@ -7006,10 +7228,10 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
7006
7228
|
pcbX?: number | undefined;
|
|
7007
7229
|
pcbY?: number | undefined;
|
|
7008
7230
|
pcbRotation?: number | undefined;
|
|
7231
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
7009
7232
|
schX?: number | undefined;
|
|
7010
7233
|
schY?: number | undefined;
|
|
7011
7234
|
schRotation?: number | undefined;
|
|
7012
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
7013
7235
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
7014
7236
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7015
7237
|
key?: any;
|
|
@@ -7076,12 +7298,12 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
7076
7298
|
pcbX?: string | number | undefined;
|
|
7077
7299
|
pcbY?: string | number | undefined;
|
|
7078
7300
|
pcbRotation?: string | number | undefined;
|
|
7079
|
-
schX?: string | number | undefined;
|
|
7080
|
-
schY?: string | number | undefined;
|
|
7081
|
-
schRotation?: string | number | undefined;
|
|
7082
7301
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7083
7302
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7084
7303
|
} | undefined;
|
|
7304
|
+
schX?: string | number | undefined;
|
|
7305
|
+
schY?: string | number | undefined;
|
|
7306
|
+
schRotation?: string | number | undefined;
|
|
7085
7307
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
7086
7308
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7087
7309
|
key?: any;
|
|
@@ -7415,10 +7637,10 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
7415
7637
|
pcbX?: number | undefined;
|
|
7416
7638
|
pcbY?: number | undefined;
|
|
7417
7639
|
pcbRotation?: number | undefined;
|
|
7640
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
7418
7641
|
schX?: number | undefined;
|
|
7419
7642
|
schY?: number | undefined;
|
|
7420
7643
|
schRotation?: number | undefined;
|
|
7421
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
7422
7644
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
7423
7645
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7424
7646
|
key?: any;
|
|
@@ -7483,12 +7705,12 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
7483
7705
|
pcbX?: string | number | undefined;
|
|
7484
7706
|
pcbY?: string | number | undefined;
|
|
7485
7707
|
pcbRotation?: string | number | undefined;
|
|
7486
|
-
schX?: string | number | undefined;
|
|
7487
|
-
schY?: string | number | undefined;
|
|
7488
|
-
schRotation?: string | number | undefined;
|
|
7489
7708
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7490
7709
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7491
7710
|
} | undefined;
|
|
7711
|
+
schX?: string | number | undefined;
|
|
7712
|
+
schY?: string | number | undefined;
|
|
7713
|
+
schRotation?: string | number | undefined;
|
|
7492
7714
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
7493
7715
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7494
7716
|
key?: any;
|
|
@@ -7822,10 +8044,10 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps, P
|
|
|
7822
8044
|
pcbX?: number | undefined;
|
|
7823
8045
|
pcbY?: number | undefined;
|
|
7824
8046
|
pcbRotation?: number | undefined;
|
|
8047
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
7825
8048
|
schX?: number | undefined;
|
|
7826
8049
|
schY?: number | undefined;
|
|
7827
8050
|
schRotation?: number | undefined;
|
|
7828
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
7829
8051
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
7830
8052
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7831
8053
|
key?: any;
|
|
@@ -7890,12 +8112,12 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps, P
|
|
|
7890
8112
|
pcbX?: string | number | undefined;
|
|
7891
8113
|
pcbY?: string | number | undefined;
|
|
7892
8114
|
pcbRotation?: string | number | undefined;
|
|
7893
|
-
schX?: string | number | undefined;
|
|
7894
|
-
schY?: string | number | undefined;
|
|
7895
|
-
schRotation?: string | number | undefined;
|
|
7896
8115
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7897
8116
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7898
8117
|
} | undefined;
|
|
8118
|
+
schX?: string | number | undefined;
|
|
8119
|
+
schY?: string | number | undefined;
|
|
8120
|
+
schRotation?: string | number | undefined;
|
|
7899
8121
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
7900
8122
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7901
8123
|
key?: any;
|
|
@@ -8222,15 +8444,17 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
8222
8444
|
}>]>>;
|
|
8223
8445
|
children: zod.ZodOptional<zod.ZodAny>;
|
|
8224
8446
|
symbolName: zod.ZodOptional<zod.ZodString>;
|
|
8225
|
-
}>, {
|
|
8447
|
+
}>, {
|
|
8448
|
+
internallyConnectedPins: zod.ZodOptional<zod.ZodArray<zod.ZodArray<zod.ZodString, "many">, "many">>;
|
|
8449
|
+
}>, "strip", zod.ZodTypeAny, {
|
|
8226
8450
|
name: string;
|
|
8227
8451
|
pcbX?: number | undefined;
|
|
8228
8452
|
pcbY?: number | undefined;
|
|
8229
8453
|
pcbRotation?: number | undefined;
|
|
8454
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
8230
8455
|
schX?: number | undefined;
|
|
8231
8456
|
schY?: number | undefined;
|
|
8232
8457
|
schRotation?: number | undefined;
|
|
8233
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
8234
8458
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
8235
8459
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8236
8460
|
key?: any;
|
|
@@ -8289,17 +8513,18 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
8289
8513
|
} | undefined;
|
|
8290
8514
|
children?: any;
|
|
8291
8515
|
symbolName?: string | undefined;
|
|
8516
|
+
internallyConnectedPins?: string[][] | undefined;
|
|
8292
8517
|
}, {
|
|
8293
8518
|
name: string;
|
|
8294
8519
|
pcbX?: string | number | undefined;
|
|
8295
8520
|
pcbY?: string | number | undefined;
|
|
8296
8521
|
pcbRotation?: string | number | undefined;
|
|
8297
|
-
schX?: string | number | undefined;
|
|
8298
|
-
schY?: string | number | undefined;
|
|
8299
|
-
schRotation?: string | number | undefined;
|
|
8300
8522
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
8301
8523
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8302
8524
|
} | undefined;
|
|
8525
|
+
schX?: string | number | undefined;
|
|
8526
|
+
schY?: string | number | undefined;
|
|
8527
|
+
schRotation?: string | number | undefined;
|
|
8303
8528
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
8304
8529
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8305
8530
|
key?: any;
|
|
@@ -8358,9 +8583,11 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
8358
8583
|
} | undefined;
|
|
8359
8584
|
children?: any;
|
|
8360
8585
|
symbolName?: string | undefined;
|
|
8586
|
+
internallyConnectedPins?: string[][] | undefined;
|
|
8361
8587
|
}>;
|
|
8362
8588
|
sourceFtype: "simple_push_button";
|
|
8363
8589
|
};
|
|
8590
|
+
get defaultInternallyConnectedPortNames(): string[][];
|
|
8364
8591
|
initPorts(): void;
|
|
8365
8592
|
doInitialSourceRender(): void;
|
|
8366
8593
|
}
|
|
@@ -8636,10 +8863,10 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
8636
8863
|
pcbX?: number | undefined;
|
|
8637
8864
|
pcbY?: number | undefined;
|
|
8638
8865
|
pcbRotation?: number | undefined;
|
|
8866
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
8639
8867
|
schX?: number | undefined;
|
|
8640
8868
|
schY?: number | undefined;
|
|
8641
8869
|
schRotation?: number | undefined;
|
|
8642
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
8643
8870
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
8644
8871
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8645
8872
|
key?: any;
|
|
@@ -8706,12 +8933,12 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
8706
8933
|
pcbX?: string | number | undefined;
|
|
8707
8934
|
pcbY?: string | number | undefined;
|
|
8708
8935
|
pcbRotation?: string | number | undefined;
|
|
8709
|
-
schX?: string | number | undefined;
|
|
8710
|
-
schY?: string | number | undefined;
|
|
8711
|
-
schRotation?: string | number | undefined;
|
|
8712
8936
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
8713
8937
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8714
8938
|
} | undefined;
|
|
8939
|
+
schX?: string | number | undefined;
|
|
8940
|
+
schY?: string | number | undefined;
|
|
8941
|
+
schRotation?: string | number | undefined;
|
|
8715
8942
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
8716
8943
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8717
8944
|
key?: any;
|
|
@@ -9047,10 +9274,10 @@ declare class Transistor extends NormalComponent<typeof transistorProps> {
|
|
|
9047
9274
|
pcbX?: number | undefined;
|
|
9048
9275
|
pcbY?: number | undefined;
|
|
9049
9276
|
pcbRotation?: number | undefined;
|
|
9277
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
9050
9278
|
schX?: number | undefined;
|
|
9051
9279
|
schY?: number | undefined;
|
|
9052
9280
|
schRotation?: number | undefined;
|
|
9053
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
9054
9281
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
9055
9282
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9056
9283
|
key?: any;
|
|
@@ -9115,12 +9342,12 @@ declare class Transistor extends NormalComponent<typeof transistorProps> {
|
|
|
9115
9342
|
pcbX?: string | number | undefined;
|
|
9116
9343
|
pcbY?: string | number | undefined;
|
|
9117
9344
|
pcbRotation?: string | number | undefined;
|
|
9118
|
-
schX?: string | number | undefined;
|
|
9119
|
-
schY?: string | number | undefined;
|
|
9120
|
-
schRotation?: string | number | undefined;
|
|
9121
9345
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
9122
9346
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
9123
9347
|
} | undefined;
|
|
9348
|
+
schX?: string | number | undefined;
|
|
9349
|
+
schY?: string | number | undefined;
|
|
9350
|
+
schRotation?: string | number | undefined;
|
|
9124
9351
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
9125
9352
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9126
9353
|
key?: any;
|
|
@@ -9455,10 +9682,10 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
9455
9682
|
pcbX?: number | undefined;
|
|
9456
9683
|
pcbY?: number | undefined;
|
|
9457
9684
|
pcbRotation?: number | undefined;
|
|
9685
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
9458
9686
|
schX?: number | undefined;
|
|
9459
9687
|
schY?: number | undefined;
|
|
9460
9688
|
schRotation?: number | undefined;
|
|
9461
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
9462
9689
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
9463
9690
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9464
9691
|
key?: any;
|
|
@@ -9524,12 +9751,12 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
9524
9751
|
pcbX?: string | number | undefined;
|
|
9525
9752
|
pcbY?: string | number | undefined;
|
|
9526
9753
|
pcbRotation?: string | number | undefined;
|
|
9527
|
-
schX?: string | number | undefined;
|
|
9528
|
-
schY?: string | number | undefined;
|
|
9529
|
-
schRotation?: string | number | undefined;
|
|
9530
9754
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
9531
9755
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
9532
9756
|
} | undefined;
|
|
9757
|
+
schX?: string | number | undefined;
|
|
9758
|
+
schY?: string | number | undefined;
|
|
9759
|
+
schRotation?: string | number | undefined;
|
|
9533
9760
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
9534
9761
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9535
9762
|
key?: any;
|
|
@@ -9620,12 +9847,12 @@ declare const useDiode: <PropsFromHook extends Omit<{
|
|
|
9620
9847
|
pcbX?: string | number | undefined;
|
|
9621
9848
|
pcbY?: string | number | undefined;
|
|
9622
9849
|
pcbRotation?: string | number | undefined;
|
|
9623
|
-
schX?: string | number | undefined;
|
|
9624
|
-
schY?: string | number | undefined;
|
|
9625
|
-
schRotation?: string | number | undefined;
|
|
9626
9850
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
9627
9851
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
9628
9852
|
} | undefined;
|
|
9853
|
+
schX?: string | number | undefined;
|
|
9854
|
+
schY?: string | number | undefined;
|
|
9855
|
+
schRotation?: string | number | undefined;
|
|
9629
9856
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
9630
9857
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9631
9858
|
key?: any;
|
|
@@ -9689,12 +9916,12 @@ declare const useDiode: <PropsFromHook extends Omit<{
|
|
|
9689
9916
|
pcbX?: string | number | undefined;
|
|
9690
9917
|
pcbY?: string | number | undefined;
|
|
9691
9918
|
pcbRotation?: string | number | undefined;
|
|
9692
|
-
schX?: string | number | undefined;
|
|
9693
|
-
schY?: string | number | undefined;
|
|
9694
|
-
schRotation?: string | number | undefined;
|
|
9695
9919
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
9696
9920
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
9697
9921
|
} | undefined;
|
|
9922
|
+
schX?: string | number | undefined;
|
|
9923
|
+
schY?: string | number | undefined;
|
|
9924
|
+
schRotation?: string | number | undefined;
|
|
9698
9925
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
9699
9926
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9700
9927
|
key?: any;
|
|
@@ -9760,12 +9987,12 @@ declare const useLed: <PropsFromHook extends Omit<{
|
|
|
9760
9987
|
pcbX?: string | number | undefined;
|
|
9761
9988
|
pcbY?: string | number | undefined;
|
|
9762
9989
|
pcbRotation?: string | number | undefined;
|
|
9763
|
-
schX?: string | number | undefined;
|
|
9764
|
-
schY?: string | number | undefined;
|
|
9765
|
-
schRotation?: string | number | undefined;
|
|
9766
9990
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
9767
9991
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
9768
9992
|
} | undefined;
|
|
9993
|
+
schX?: string | number | undefined;
|
|
9994
|
+
schY?: string | number | undefined;
|
|
9995
|
+
schRotation?: string | number | undefined;
|
|
9769
9996
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
9770
9997
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9771
9998
|
key?: any;
|
|
@@ -9830,12 +10057,12 @@ declare const useLed: <PropsFromHook extends Omit<{
|
|
|
9830
10057
|
pcbX?: string | number | undefined;
|
|
9831
10058
|
pcbY?: string | number | undefined;
|
|
9832
10059
|
pcbRotation?: string | number | undefined;
|
|
9833
|
-
schX?: string | number | undefined;
|
|
9834
|
-
schY?: string | number | undefined;
|
|
9835
|
-
schRotation?: string | number | undefined;
|
|
9836
10060
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
9837
10061
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
9838
10062
|
} | undefined;
|
|
10063
|
+
schX?: string | number | undefined;
|
|
10064
|
+
schY?: string | number | undefined;
|
|
10065
|
+
schRotation?: string | number | undefined;
|
|
9839
10066
|
footprint?: _tscircuit_props.Footprint | undefined;
|
|
9840
10067
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9841
10068
|
key?: any;
|