@tscircuit/props 0.0.449 → 0.0.450

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.
@@ -271,6 +271,7 @@ export interface CommonComponentProps<PinLabel extends string = string>
271
271
  * Whether to show this component's CAD model as translucent in the 3D viewer.
272
272
  */
273
273
  showAsTranslucentModel?: boolean
274
+ mfn?: string
274
275
  }
275
276
 
276
277
  export const commonComponentProps = commonLayoutProps
@@ -299,6 +300,7 @@ export const commonComponentProps = commonLayoutProps
299
300
  "Whether to show this component's CAD model as translucent in the 3D viewer.",
300
301
  ),
301
302
  pinAttributes: z.record(z.string(), pinAttributeMap).optional(),
303
+ mfn: z.string().describe("Manufacturer Part Number").optional(),
302
304
  })
303
305
 
304
306
  type InferredCommonComponentProps = z.input<typeof commonComponentProps>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.449",
3
+ "version": "0.0.450",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",