@tscircuit/props 0.0.632 → 0.0.633

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.
@@ -4,6 +4,10 @@ import {
4
4
  type SchematicPinArrangement,
5
5
  schematicPinArrangement,
6
6
  } from "lib/common/schematicPinDefinitions"
7
+ import {
8
+ type SchematicPinStyle,
9
+ schematicPinStyle,
10
+ } from "lib/common/schematicPinStyle"
7
11
  import { type PinLabelsProp, pinLabelsProp } from "lib/components/chip"
8
12
  import { expectTypesMatch } from "lib/typecheck"
9
13
  import type { Distance } from "lib/common/distance"
@@ -15,6 +19,7 @@ export const schematicBoxProps = z
15
19
  chipRef: z.string().optional(),
16
20
  pinLabels: pinLabelsProp.optional(),
17
21
  schPinArrangement: schematicPinArrangement.optional(),
22
+ schPinStyle: schematicPinStyle.optional(),
18
23
 
19
24
  schX: distance.optional(),
20
25
  schY: distance.optional(),
@@ -65,6 +70,8 @@ export interface SchematicBoxProps {
65
70
  chipRef?: string
66
71
  pinLabels?: PinLabelsProp
67
72
  schPinArrangement?: SchematicPinArrangement
73
+ /** Per-pin schematic margin overrides keyed by pin number or label. */
74
+ schPinStyle?: SchematicPinStyle
68
75
  schX?: Distance
69
76
  schY?: Distance
70
77
  schSectionName?: string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.632",
3
+ "version": "0.0.633",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",