@tscircuit/props 0.0.450 → 0.0.451
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 +93 -32
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -381,7 +381,8 @@ var commonComponentProps = commonLayoutProps.merge(supplierProps).extend({
|
|
|
381
381
|
"Whether to show this component's CAD model as translucent in the 3D viewer."
|
|
382
382
|
),
|
|
383
383
|
pinAttributes: z13.record(z13.string(), pinAttributeMap).optional(),
|
|
384
|
-
mfn: z13.string().describe("Manufacturer Part Number").optional()
|
|
384
|
+
mfn: z13.string().describe("Manufacturer Part Number").optional(),
|
|
385
|
+
manufacturerPartNumber: z13.string().optional()
|
|
385
386
|
});
|
|
386
387
|
expectTypesMatch(true);
|
|
387
388
|
var componentProps = commonComponentProps;
|