@tscircuit/props 0.0.484 → 0.0.486

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/README.md CHANGED
@@ -1881,7 +1881,10 @@ export interface PlatformConfig {
1881
1881
 
1882
1882
  defaultSpiceEngine?: AutocompleteString<"spicey" | "ngspice">;
1883
1883
 
1884
+ unitPreference?: "mm" | "in" | "mil";
1885
+
1884
1886
  pcbDisabled?: boolean;
1887
+ routingDisabled?: boolean;
1885
1888
  schematicDisabled?: boolean;
1886
1889
  partsEngineDisabled?: boolean;
1887
1890
 
package/dist/index.d.ts CHANGED
@@ -172779,7 +172779,9 @@ interface PlatformConfig {
172779
172779
  includeBoardFiles?: string[];
172780
172780
  snapshotsDir?: string;
172781
172781
  defaultSpiceEngine?: AutocompleteString<"spicey" | "ngspice">;
172782
+ unitPreference?: "mm" | "in" | "mil";
172782
172783
  pcbDisabled?: boolean;
172784
+ routingDisabled?: boolean;
172783
172785
  schematicDisabled?: boolean;
172784
172786
  partsEngineDisabled?: boolean;
172785
172787
  spiceEngineMap?: Record<string, SpiceEngine>;
package/dist/index.js CHANGED
@@ -2849,8 +2849,10 @@ var platformConfig = z122.object({
2849
2849
  'The directory where snapshots are stored for "tsci snapshot", defaults to "tests/__snapshots__"'
2850
2850
  ).optional(),
2851
2851
  defaultSpiceEngine: defaultSpiceEngine.optional(),
2852
+ unitPreference: z122.enum(["mm", "in", "mil"]).optional(),
2852
2853
  localCacheEngine: z122.any().optional(),
2853
2854
  pcbDisabled: z122.boolean().optional(),
2855
+ routingDisabled: z122.boolean().optional(),
2854
2856
  schematicDisabled: z122.boolean().optional(),
2855
2857
  partsEngineDisabled: z122.boolean().optional(),
2856
2858
  spiceEngineMap: z122.record(z122.string(), spiceEngineZod).optional(),