@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.
@@ -113,6 +113,11 @@ export interface PlatformConfig {
113
113
  routingDisabled?: boolean
114
114
  schematicDisabled?: boolean
115
115
  partsEngineDisabled?: boolean
116
+ /**
117
+ * Disables analog simulation model processing and simulator execution.
118
+ * Defaults to false.
119
+ */
120
+ analogSimulationDisabled?: boolean
116
121
  drcChecksDisabled?: boolean
117
122
  netlistDrcChecksDisabled?: boolean
118
123
  routingDrcChecksDisabled?: boolean
@@ -266,6 +271,7 @@ export const platformConfig = z.object({
266
271
  routingDisabled: z.boolean().optional(),
267
272
  schematicDisabled: z.boolean().optional(),
268
273
  partsEngineDisabled: z.boolean().optional(),
274
+ analogSimulationDisabled: z.boolean().optional(),
269
275
  drcChecksDisabled: z.boolean().optional(),
270
276
  netlistDrcChecksDisabled: z.boolean().optional(),
271
277
  routingDrcChecksDisabled: z.boolean().optional(),
@@ -15,6 +15,7 @@ export interface ProjectConfig
15
15
  | "defaultSpiceEngine"
16
16
  | "pcbDisabled"
17
17
  | "schematicDisabled"
18
+ | "analogSimulationDisabled"
18
19
  > {}
19
20
 
20
21
  const platformConfigObject = platformConfig as z.ZodObject<any>
@@ -30,6 +31,7 @@ export const projectConfig = platformConfigObject.pick({
30
31
  defaultSpiceEngine: true,
31
32
  pcbDisabled: true,
32
33
  schematicDisabled: true,
34
+ analogSimulationDisabled: true,
33
35
  }) as z.ZodType<ProjectConfig>
34
36
 
35
37
  expectTypesMatch<ProjectConfig, z.infer<typeof projectConfig>>(true)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.641",
3
+ "version": "0.0.642",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",