@tscircuit/props 0.0.641 → 0.0.642

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
@@ -2424,6 +2424,11 @@ export interface PlatformConfig {
2424
2424
  routingDisabled?: boolean;
2425
2425
  schematicDisabled?: boolean;
2426
2426
  partsEngineDisabled?: boolean;
2427
+ /**
2428
+ * Disables analog simulation model processing and simulator execution.
2429
+ * Defaults to false.
2430
+ */
2431
+ analogSimulationDisabled?: boolean;
2427
2432
  drcChecksDisabled?: boolean;
2428
2433
  netlistDrcChecksDisabled?: boolean;
2429
2434
  routingDrcChecksDisabled?: boolean;
@@ -2483,6 +2488,7 @@ export interface ProjectConfig extends Pick<
2483
2488
  | "defaultSpiceEngine"
2484
2489
  | "pcbDisabled"
2485
2490
  | "schematicDisabled"
2491
+ | "analogSimulationDisabled"
2486
2492
  > {}
2487
2493
  ```
2488
2494
 
package/dist/index.d.ts CHANGED
@@ -225952,6 +225952,11 @@ interface PlatformConfig {
225952
225952
  routingDisabled?: boolean;
225953
225953
  schematicDisabled?: boolean;
225954
225954
  partsEngineDisabled?: boolean;
225955
+ /**
225956
+ * Disables analog simulation model processing and simulator execution.
225957
+ * Defaults to false.
225958
+ */
225959
+ analogSimulationDisabled?: boolean;
225955
225960
  drcChecksDisabled?: boolean;
225956
225961
  netlistDrcChecksDisabled?: boolean;
225957
225962
  routingDrcChecksDisabled?: boolean;
@@ -225971,7 +225976,7 @@ interface PlatformConfig {
225971
225976
  }
225972
225977
  declare const platformConfig: z.ZodType<PlatformConfig>;
225973
225978
 
225974
- interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBaseUrl" | "version" | "url" | "printBoardInformationToSilkscreen" | "includeBoardFiles" | "snapshotsDir" | "defaultSpiceEngine" | "pcbDisabled" | "schematicDisabled"> {
225979
+ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBaseUrl" | "version" | "url" | "printBoardInformationToSilkscreen" | "includeBoardFiles" | "snapshotsDir" | "defaultSpiceEngine" | "pcbDisabled" | "schematicDisabled" | "analogSimulationDisabled"> {
225975
225980
  }
225976
225981
  declare const projectConfig: z.ZodType<ProjectConfig>;
225977
225982
 
package/dist/index.js CHANGED
@@ -19196,6 +19196,7 @@ var platformConfig = z149.object({
19196
19196
  routingDisabled: z149.boolean().optional(),
19197
19197
  schematicDisabled: z149.boolean().optional(),
19198
19198
  partsEngineDisabled: z149.boolean().optional(),
19199
+ analogSimulationDisabled: z149.boolean().optional(),
19199
19200
  drcChecksDisabled: z149.boolean().optional(),
19200
19201
  netlistDrcChecksDisabled: z149.boolean().optional(),
19201
19202
  routingDrcChecksDisabled: z149.boolean().optional(),
@@ -19233,7 +19234,8 @@ var projectConfig = platformConfigObject.pick({
19233
19234
  snapshotsDir: true,
19234
19235
  defaultSpiceEngine: true,
19235
19236
  pcbDisabled: true,
19236
- schematicDisabled: true
19237
+ schematicDisabled: true,
19238
+ analogSimulationDisabled: true
19237
19239
  });
19238
19240
  expectTypesMatch(true);
19239
19241
  export {