@tscircuit/props 0.0.463 → 0.0.464

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.
@@ -446,6 +446,7 @@ export interface SubcircuitGroupProps extends BaseGroupProps {
446
446
  schMaxTraceDistance?: Distance
447
447
 
448
448
  partsEngine?: PartsEngine
449
+ _subcircuitCachingEnabled?: boolean
449
450
 
450
451
  /** When autosizing, the board will be made square */
451
452
  square?: boolean
@@ -581,6 +582,7 @@ export const subcircuitGroupProps = baseGroupProps.extend({
581
582
  minTraceWidth: length.optional(),
582
583
  nominalTraceWidth: length.optional(),
583
584
  partsEngine: partsEngine.optional(),
585
+ _subcircuitCachingEnabled: z.boolean().optional(),
584
586
  pcbRouteCache: z.custom<PcbRouteCache>((v) => true).optional(),
585
587
  autorouter: autorouterProp.optional(),
586
588
  autorouterEffortLevel: autorouterEffortLevel.optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.463",
3
+ "version": "0.0.464",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",