@tscircuit/props 0.0.488 → 0.0.490

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.
@@ -12,7 +12,7 @@ export interface PcbSxValue {
12
12
  fontSize?: string | number
13
13
  pcbX?: string | number
14
14
  pcbY?: string | number
15
- visible?: boolean
15
+ visibility?: "hidden" | "visible" | "inherit"
16
16
  }
17
17
 
18
18
  type PcbSxBase = Record<string, PcbSxValue>
@@ -25,7 +25,7 @@ export const pcbSxValue = z.object({
25
25
  fontSize: length.optional(),
26
26
  pcbX: pcbCoordinate.optional(),
27
27
  pcbY: pcbCoordinate.optional(),
28
- visible: z.boolean().optional(),
28
+ visibility: z.enum(["hidden", "visible", "inherit"]).optional(),
29
29
  })
30
30
 
31
31
  export const pcbSx = z.record(
@@ -75,6 +75,7 @@ export interface PlatformConfig {
75
75
  routingDisabled?: boolean
76
76
  schematicDisabled?: boolean
77
77
  partsEngineDisabled?: boolean
78
+ drcChecksDisabled?: boolean
78
79
  netlistDrcChecksDisabled?: boolean
79
80
  routingDrcChecksDisabled?: boolean
80
81
  placementDrcChecksDisabled?: boolean
@@ -208,6 +209,7 @@ export const platformConfig = z.object({
208
209
  routingDisabled: z.boolean().optional(),
209
210
  schematicDisabled: z.boolean().optional(),
210
211
  partsEngineDisabled: z.boolean().optional(),
212
+ drcChecksDisabled: z.boolean().optional(),
211
213
  netlistDrcChecksDisabled: z.boolean().optional(),
212
214
  routingDrcChecksDisabled: z.boolean().optional(),
213
215
  placementDrcChecksDisabled: z.boolean().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.488",
3
+ "version": "0.0.490",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",