@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.
- package/dist/index.d.ts +25 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +2 -0
- package/package.json +1 -1
package/lib/components/group.ts
CHANGED
|
@@ -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(),
|