@tscircuit/props 0.0.434 → 0.0.435

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.
@@ -398,6 +398,7 @@ export const autorouterProp: z.ZodType<AutorouterProp> = z.union([
398
398
  export interface SubcircuitGroupProps extends BaseGroupProps {
399
399
  manualEdits?: ManualEditsFileInput
400
400
  routingDisabled?: boolean
401
+ bomDisabled?: boolean
401
402
  defaultTraceWidth?: Distance
402
403
  minTraceWidth?: Distance
403
404
  pcbRouteCache?: PcbRouteCache
@@ -554,6 +555,7 @@ export const subcircuitGroupProps = baseGroupProps.extend({
554
555
  schTraceAutoLabelEnabled: z.boolean().optional(),
555
556
  schMaxTraceDistance: distance.optional(),
556
557
  routingDisabled: z.boolean().optional(),
558
+ bomDisabled: z.boolean().optional(),
557
559
  defaultTraceWidth: length.optional(),
558
560
  minTraceWidth: length.optional(),
559
561
  partsEngine: partsEngine.optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.434",
3
+ "version": "0.0.435",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",