@tscircuit/props 0.0.403 → 0.0.405
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/index.d.ts +11 -2
- package/dist/index.js +29 -1
- package/dist/index.js.map +1 -1
- package/lib/common/footprintProp.ts +4 -1
- package/lib/components/voltageprobe.ts +2 -0
- package/lib/generated/footprinter-autocomplete.ts +32 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -230,6 +230,32 @@ var lrPolarPins = [
|
|
|
230
230
|
];
|
|
231
231
|
var distanceOrMultiplier = distance4.or(z9.enum(["2x", "3x", "4x"]));
|
|
232
232
|
|
|
233
|
+
// lib/generated/footprinter-autocomplete.ts
|
|
234
|
+
var footprinterStringExamples = [
|
|
235
|
+
"0402_p1.02mm_pw0.54mm_ph0.64mm_w1.56mm_h0.64mm",
|
|
236
|
+
"0603_p1.65mm_pw0.8mm_ph0.95mm_w2.45mm_h0.95mm",
|
|
237
|
+
"0805_p1.825mm_pw1.025mm_ph1.4mm_w2.85mm_h1.4mm",
|
|
238
|
+
"1206_p2.925mm_pw1.125mm_ph1.75mm_w4.05mm_h1.75mm",
|
|
239
|
+
"1210_p2.925mm_pw1.125mm_ph2.65mm_w4.05mm_h2.65mm",
|
|
240
|
+
"dip6_w7.62mm_p2.54mm_id1mm_od1.5mm",
|
|
241
|
+
"axial_p2.54mm_id0.7mm_od1.4mm",
|
|
242
|
+
"soic8_w5.3mm_p1.27mm_pw0.6mm_pl1mm",
|
|
243
|
+
"bga64_grid8x8_p0.8mm_ball0.47mm_pad0.38mm_tlorigin",
|
|
244
|
+
"tssop8_w7.1mm_p0.65mm_pl1.35mm_pw0.4mm_legsoutside",
|
|
245
|
+
"stampboard_w22.58mm_left20_right20_top2_bottom2_p2.54mm_pw1.6mm_pl2.4mm_innerholeedgedistance1.61mm_silkscreenlabelmargin0.1mm",
|
|
246
|
+
"stampreceiver_w22.58mm_left20_right20_top2_bottom2_p2.54mm_pw1.6mm_pl3.2mm_innerholeedgedistance1.61mm",
|
|
247
|
+
"hc49_p4.88mm_id0.8mm_od1.5mm_w5.6mm_h3.5mm",
|
|
248
|
+
"to92_p1.27mm_id0.72mm_od0.95mm_w4.5mm_h4.5mm",
|
|
249
|
+
"to220_3_p2.6mm_id1mm_od1.9mm_w13mm_h7mm",
|
|
250
|
+
"ssop8_w3.9mm_p1.27mm_pw0.6mm_pl1mm",
|
|
251
|
+
"qfp64_w10mm_h10mm_p0.5mm_pw0.25mm_pl1mm_legsoutside",
|
|
252
|
+
"qfn64_w10mm_h10mm_p0.5mm_pw0.25mm_pl0.875mm",
|
|
253
|
+
"sot23_w1.92mm_h2.74mm_p0.95mm_pl0.8mm_pw0.764mm",
|
|
254
|
+
"sot23_5_w1.92mm_h2.74mm_p0.95mm_pl0.8mm_pw0.764mm",
|
|
255
|
+
"sot223_w8.5mm_h6.9mm_p2.3mm_pl2mm_pw1.5mm",
|
|
256
|
+
"pinrow6_rows1_p2.54mm_id1mm_od1.5mm_male"
|
|
257
|
+
];
|
|
258
|
+
|
|
233
259
|
// lib/common/schematicOrientation.ts
|
|
234
260
|
import { z as z10 } from "zod";
|
|
235
261
|
var schematicOrientation = z10.enum([
|
|
@@ -1834,7 +1860,8 @@ expectTypesMatch(true);
|
|
|
1834
1860
|
import { z as z82 } from "zod";
|
|
1835
1861
|
var voltageProbeProps = commonComponentProps.omit({ name: true }).extend({
|
|
1836
1862
|
name: z82.string().optional(),
|
|
1837
|
-
connectsTo: z82.string().or(z82.array(z82.string()))
|
|
1863
|
+
connectsTo: z82.string().or(z82.array(z82.string())),
|
|
1864
|
+
color: z82.string().optional()
|
|
1838
1865
|
});
|
|
1839
1866
|
expectTypesMatch(true);
|
|
1840
1867
|
|
|
@@ -2359,6 +2386,7 @@ export {
|
|
|
2359
2386
|
fabricationNoteTextProps,
|
|
2360
2387
|
footprintProp,
|
|
2361
2388
|
footprintProps,
|
|
2389
|
+
footprinterStringExamples,
|
|
2362
2390
|
fusePinLabels,
|
|
2363
2391
|
fuseProps,
|
|
2364
2392
|
groupProps,
|