@tscircuit/props 0.0.614 → 0.0.615

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.
@@ -484,6 +484,12 @@ export interface SubcircuitGroupProps
484
484
  RoutingTolerances {
485
485
  manualEdits?: ManualEditsFileInput
486
486
  routingDisabled?: boolean
487
+ /**
488
+ * Skip the PCB placement design rule checks for this subcircuit. Placement
489
+ * errors otherwise cause autorouting to be skipped entirely, so this is the
490
+ * escape hatch for a placement the checks flag but you intend to keep.
491
+ */
492
+ placementDrcChecksDisabled?: boolean
487
493
  bomDisabled?: boolean
488
494
  defaultTraceWidth?: Distance
489
495
 
@@ -668,6 +674,7 @@ export const subcircuitGroupProps = baseGroupProps.extend({
668
674
  schTraceAutoLabelEnabled: z.boolean().optional(),
669
675
  schMaxTraceDistance: distance.optional(),
670
676
  routingDisabled: z.boolean().optional(),
677
+ placementDrcChecksDisabled: z.boolean().optional(),
671
678
  bomDisabled: z.boolean().optional(),
672
679
  defaultTraceWidth: length.optional(),
673
680
  ...routingTolerances.shape,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.614",
3
+ "version": "0.0.615",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",