@tscircuit/props 0.0.257 → 0.0.259

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
@@ -245,7 +245,7 @@ export interface ChipPropsSU<PinLabel extends string = string>
245
245
  ```ts
246
246
  export interface ConnectorProps extends CommonComponentProps {
247
247
  manufacturerPartNumber?: string;
248
- pinLabels?: Record<number | string, string | string[]>;
248
+ pinLabels?: Record<number | SchematicPinLabel, SchematicPinLabel | SchematicPinLabel[]>;
249
249
  schPinStyle?: SchematicPinStyle;
250
250
  schPinSpacing?: number | string;
251
251
  schWidth?: number | string;
@@ -319,10 +319,11 @@ export interface DiodeProps<PinLabel extends string = string>
319
319
  pos?: string | string[] | readonly string[];
320
320
  neg?: string | string[] | readonly string[];
321
321
  };
322
- variant?: "standard" | "schottky" | "zener" | "photo" | "tvs";
322
+ variant?: "standard" | "schottky" | "zener" | "avalanche" | "photo" | "tvs";
323
323
  standard?: boolean;
324
324
  schottky?: boolean;
325
325
  zener?: boolean;
326
+ avalanche?: boolean;
326
327
  photo?: boolean;
327
328
  tvs?: boolean;
328
329
  schOrientation?: SchematicOrientation;
@@ -444,7 +445,7 @@ export interface InductorProps<PinLabel extends string = string>
444
445
  ```ts
445
446
  export interface JumperProps extends CommonComponentProps {
446
447
  manufacturerPartNumber?: string;
447
- pinLabels?: Record<number | string, string | string[]>;
448
+ pinLabels?: Record<number | SchematicPinLabel, SchematicPinLabel | SchematicPinLabel[]>;
448
449
  schPinStyle?: SchematicPinStyle;
449
450
  schPinSpacing?: number | string;
450
451
  schWidth?: number | string;
@@ -579,7 +580,7 @@ export interface PinHeaderProps extends CommonComponentProps {
579
580
  /**
580
581
  * Labels for each pin
581
582
  */
582
- pinLabels?: string[];
583
+ pinLabels?: SchematicPinLabel[];
583
584
 
584
585
  /**
585
586
  * Connections to other components
package/dist/index.d.ts CHANGED
@@ -1825,6 +1825,13 @@ declare const schematicPinStyle: z.ZodRecord<z.ZodString, z.ZodObject<{
1825
1825
  bottomMargin?: string | number | undefined;
1826
1826
  }>>;
1827
1827
 
1828
+ /**
1829
+ * Valid pin label string. Must consist only of letters,
1830
+ * numbers, or underscores.
1831
+ */
1832
+ declare const schematicPinLabel: z.ZodString;
1833
+ type SchematicPinLabel = z.infer<typeof schematicPinLabel>;
1834
+
1828
1835
  type Distance = number | string;
1829
1836
 
1830
1837
  declare const base_manual_edit_event: z.ZodObject<{
@@ -8087,9 +8094,9 @@ interface PinCompatibleVariant {
8087
8094
  manufacturerPartNumber?: string;
8088
8095
  supplierPartNumber?: SupplierPartNumbers;
8089
8096
  }
8090
- interface ChipPropsSU<PinLabel extends string = string> extends CommonComponentProps<PinLabel> {
8097
+ interface ChipPropsSU<PinLabel extends SchematicPinLabel = SchematicPinLabel> extends CommonComponentProps<PinLabel> {
8091
8098
  manufacturerPartNumber?: string;
8092
- pinLabels?: PinLabelsProp<string, PinLabel>;
8099
+ pinLabels?: PinLabelsProp<SchematicPinLabel, PinLabel>;
8093
8100
  /**
8094
8101
  * Whether to show pin aliases in the schematic
8095
8102
  */
@@ -9765,7 +9772,7 @@ type InferredChipProps = z.input<typeof chipProps>;
9765
9772
 
9766
9773
  interface JumperProps extends CommonComponentProps {
9767
9774
  manufacturerPartNumber?: string;
9768
- pinLabels?: Record<number | string, string | string[]>;
9775
+ pinLabels?: Record<number | SchematicPinLabel, SchematicPinLabel | SchematicPinLabel[]>;
9769
9776
  schPinStyle?: SchematicPinStyle;
9770
9777
  schPinSpacing?: number | string;
9771
9778
  schWidth?: number | string;
@@ -11071,7 +11078,7 @@ declare const solderjumperProps: z.ZodObject<{
11071
11078
 
11072
11079
  interface ConnectorProps extends CommonComponentProps {
11073
11080
  manufacturerPartNumber?: string;
11074
- pinLabels?: Record<number | string, string | string[]>;
11081
+ pinLabels?: Record<number | SchematicPinLabel, SchematicPinLabel | SchematicPinLabel[]>;
11075
11082
  schPinStyle?: SchematicPinStyle;
11076
11083
  schPinSpacing?: number | string;
11077
11084
  schWidth?: number | string;
@@ -17384,7 +17391,7 @@ interface PinHeaderProps extends CommonComponentProps {
17384
17391
  /**
17385
17392
  * Labels for each pin
17386
17393
  */
17387
- pinLabels?: string[];
17394
+ pinLabels?: SchematicPinLabel[];
17388
17395
  /**
17389
17396
  * Connections to other components
17390
17397
  */
@@ -21231,16 +21238,17 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
21231
21238
  pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
21232
21239
  } & {
21233
21240
  connections: z.ZodOptional<z.ZodRecord<z.ZodEnum<["anode", "cathode", "pin1", "pin2", "pos", "neg"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
21234
- variant: z.ZodDefault<z.ZodOptional<z.ZodEnum<["standard", "schottky", "zener", "photo", "tvs"]>>>;
21241
+ variant: z.ZodDefault<z.ZodOptional<z.ZodEnum<["standard", "schottky", "zener", "avalanche", "photo", "tvs"]>>>;
21235
21242
  standard: z.ZodOptional<z.ZodBoolean>;
21236
21243
  schottky: z.ZodOptional<z.ZodBoolean>;
21237
21244
  zener: z.ZodOptional<z.ZodBoolean>;
21245
+ avalanche: z.ZodOptional<z.ZodBoolean>;
21238
21246
  photo: z.ZodOptional<z.ZodBoolean>;
21239
21247
  tvs: z.ZodOptional<z.ZodBoolean>;
21240
21248
  schOrientation: z.ZodOptional<z.ZodEnum<["vertical", "horizontal", "pos_top", "pos_bottom", "pos_left", "pos_right", "neg_top", "neg_bottom", "neg_left", "neg_right"]>>;
21241
21249
  }, "strip", z.ZodTypeAny, {
21242
21250
  name: string;
21243
- variant: "standard" | "schottky" | "zener" | "photo" | "tvs";
21251
+ variant: "standard" | "schottky" | "zener" | "avalanche" | "photo" | "tvs";
21244
21252
  pcbX?: number | undefined;
21245
21253
  pcbY?: number | undefined;
21246
21254
  pcbRotation?: number | undefined;
@@ -21313,6 +21321,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
21313
21321
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
21314
21322
  schottky?: boolean | undefined;
21315
21323
  zener?: boolean | undefined;
21324
+ avalanche?: boolean | undefined;
21316
21325
  photo?: boolean | undefined;
21317
21326
  tvs?: boolean | undefined;
21318
21327
  }, {
@@ -21391,12 +21400,13 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
21391
21400
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
21392
21401
  schottky?: boolean | undefined;
21393
21402
  zener?: boolean | undefined;
21403
+ avalanche?: boolean | undefined;
21394
21404
  photo?: boolean | undefined;
21395
21405
  tvs?: boolean | undefined;
21396
- variant?: "standard" | "schottky" | "zener" | "photo" | "tvs" | undefined;
21406
+ variant?: "standard" | "schottky" | "zener" | "avalanche" | "photo" | "tvs" | undefined;
21397
21407
  }>, {
21398
21408
  name: string;
21399
- variant: "standard" | "schottky" | "zener" | "photo" | "tvs";
21409
+ variant: "standard" | "schottky" | "zener" | "avalanche" | "photo" | "tvs";
21400
21410
  pcbX?: number | undefined;
21401
21411
  pcbY?: number | undefined;
21402
21412
  pcbRotation?: number | undefined;
@@ -21469,6 +21479,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
21469
21479
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
21470
21480
  schottky?: boolean | undefined;
21471
21481
  zener?: boolean | undefined;
21482
+ avalanche?: boolean | undefined;
21472
21483
  photo?: boolean | undefined;
21473
21484
  tvs?: boolean | undefined;
21474
21485
  }, {
@@ -21547,17 +21558,19 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
21547
21558
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
21548
21559
  schottky?: boolean | undefined;
21549
21560
  zener?: boolean | undefined;
21561
+ avalanche?: boolean | undefined;
21550
21562
  photo?: boolean | undefined;
21551
21563
  tvs?: boolean | undefined;
21552
- variant?: "standard" | "schottky" | "zener" | "photo" | "tvs" | undefined;
21564
+ variant?: "standard" | "schottky" | "zener" | "avalanche" | "photo" | "tvs" | undefined;
21553
21565
  }>, {
21554
21566
  standard: boolean;
21555
21567
  schottky: boolean;
21556
21568
  zener: boolean;
21569
+ avalanche: boolean;
21557
21570
  photo: boolean;
21558
21571
  tvs: boolean;
21559
21572
  name: string;
21560
- variant: "standard" | "schottky" | "zener" | "photo" | "tvs";
21573
+ variant: "standard" | "schottky" | "zener" | "avalanche" | "photo" | "tvs";
21561
21574
  pcbX?: number | undefined;
21562
21575
  pcbY?: number | undefined;
21563
21576
  pcbRotation?: number | undefined;
@@ -21703,9 +21716,10 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
21703
21716
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
21704
21717
  schottky?: boolean | undefined;
21705
21718
  zener?: boolean | undefined;
21719
+ avalanche?: boolean | undefined;
21706
21720
  photo?: boolean | undefined;
21707
21721
  tvs?: boolean | undefined;
21708
- variant?: "standard" | "schottky" | "zener" | "photo" | "tvs" | undefined;
21722
+ variant?: "standard" | "schottky" | "zener" | "avalanche" | "photo" | "tvs" | undefined;
21709
21723
  }>;
21710
21724
  declare const diodePins: readonly ["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"];
21711
21725
  type DiodePinLabels = (typeof diodePins)[number];
@@ -21718,10 +21732,11 @@ interface DiodeProps<PinLabel extends string = string> extends CommonComponentPr
21718
21732
  pos?: string | string[] | readonly string[];
21719
21733
  neg?: string | string[] | readonly string[];
21720
21734
  };
21721
- variant?: "standard" | "schottky" | "zener" | "photo" | "tvs";
21735
+ variant?: "standard" | "schottky" | "zener" | "avalanche" | "photo" | "tvs";
21722
21736
  standard?: boolean;
21723
21737
  schottky?: boolean;
21724
21738
  zener?: boolean;
21739
+ avalanche?: boolean;
21725
21740
  photo?: boolean;
21726
21741
  tvs?: boolean;
21727
21742
  schOrientation?: SchematicOrientation;
@@ -24809,4 +24824,4 @@ interface PlatformConfig {
24809
24824
  }
24810
24825
  declare const platformConfig: z.ZodType<PlatformConfig>;
24811
24826
 
24812
- export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryPinLabels, type BatteryProps, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CrystalPinLabels, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type JumperProps, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicCellProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRowProps, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicCellProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicRowProps, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };
24827
+ export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryPinLabels, type BatteryProps, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CrystalPinLabels, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type JumperProps, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicCellProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRowProps, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicCellProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRowProps, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };