@tscircuit/props 0.0.484 → 0.0.485
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 +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/lib/platformConfig.ts +8 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -172780,6 +172780,7 @@ interface PlatformConfig {
|
|
|
172780
172780
|
snapshotsDir?: string;
|
|
172781
172781
|
defaultSpiceEngine?: AutocompleteString<"spicey" | "ngspice">;
|
|
172782
172782
|
pcbDisabled?: boolean;
|
|
172783
|
+
routingDisabled?: boolean;
|
|
172783
172784
|
schematicDisabled?: boolean;
|
|
172784
172785
|
partsEngineDisabled?: boolean;
|
|
172785
172786
|
spiceEngineMap?: Record<string, SpiceEngine>;
|
package/dist/index.js
CHANGED
|
@@ -2851,6 +2851,7 @@ var platformConfig = z122.object({
|
|
|
2851
2851
|
defaultSpiceEngine: defaultSpiceEngine.optional(),
|
|
2852
2852
|
localCacheEngine: z122.any().optional(),
|
|
2853
2853
|
pcbDisabled: z122.boolean().optional(),
|
|
2854
|
+
routingDisabled: z122.boolean().optional(),
|
|
2854
2855
|
schematicDisabled: z122.boolean().optional(),
|
|
2855
2856
|
partsEngineDisabled: z122.boolean().optional(),
|
|
2856
2857
|
spiceEngineMap: z122.record(z122.string(), spiceEngineZod).optional(),
|