@tscircuit/props 0.0.486 → 0.0.487

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
@@ -1887,6 +1887,9 @@ export interface PlatformConfig {
1887
1887
  routingDisabled?: boolean;
1888
1888
  schematicDisabled?: boolean;
1889
1889
  partsEngineDisabled?: boolean;
1890
+ netlistDrcChecksDisabled?: boolean;
1891
+ routingDrcChecksDisabled?: boolean;
1892
+ placementDrcChecksDisabled?: boolean;
1890
1893
 
1891
1894
  spiceEngineMap?: Record<string, SpiceEngine>;
1892
1895
 
package/dist/index.d.ts CHANGED
@@ -172784,6 +172784,9 @@ interface PlatformConfig {
172784
172784
  routingDisabled?: boolean;
172785
172785
  schematicDisabled?: boolean;
172786
172786
  partsEngineDisabled?: boolean;
172787
+ netlistDrcChecksDisabled?: boolean;
172788
+ routingDrcChecksDisabled?: boolean;
172789
+ placementDrcChecksDisabled?: boolean;
172787
172790
  spiceEngineMap?: Record<string, SpiceEngine>;
172788
172791
  footprintLibraryMap?: Record<string, ((path: string, options?: {
172789
172792
  resolvedPcbStyle?: PcbStyle;
package/dist/index.js CHANGED
@@ -2855,6 +2855,9 @@ var platformConfig = z122.object({
2855
2855
  routingDisabled: z122.boolean().optional(),
2856
2856
  schematicDisabled: z122.boolean().optional(),
2857
2857
  partsEngineDisabled: z122.boolean().optional(),
2858
+ netlistDrcChecksDisabled: z122.boolean().optional(),
2859
+ routingDrcChecksDisabled: z122.boolean().optional(),
2860
+ placementDrcChecksDisabled: z122.boolean().optional(),
2858
2861
  spiceEngineMap: z122.record(z122.string(), spiceEngineZod).optional(),
2859
2862
  footprintLibraryMap: z122.record(
2860
2863
  z122.string(),