@tscircuit/props 0.0.216 → 0.0.218
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 +22 -0
- package/dist/index.d.ts +53 -1
- package/dist/index.js +129 -113
- package/dist/index.js.map +1 -1
- package/lib/components/chip.ts +5 -0
- package/lib/components/netalias.ts +6 -0
- package/lib/components/netlabel.ts +25 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,6 +38,7 @@ resistorProps.parse({ resistance: "10k" } as ResistorPropsInput)
|
|
|
38
38
|
| `<mosfet />` | [`MosfetProps`](#mosfetprops-mosfet) |
|
|
39
39
|
| `<net />` | [`NetProps`](#netprops-net) |
|
|
40
40
|
| `<netalias />` | [`NetAliasProps`](#netaliasprops-netalias) |
|
|
41
|
+
| `<netlabel />` | [`NetLabelProps`](#netlabelprops-netlabel) |
|
|
41
42
|
| `<pinheader />` | [`PinHeaderProps`](#pinheaderprops-pinheader) |
|
|
42
43
|
| `<platedhole />` | [`CirclePlatedHoleProps`](#circleplatedholeprops-platedhole) |
|
|
43
44
|
| `<potentiometer />` | [`PotentiometerProps`](#potentiometerprops-potentiometer) |
|
|
@@ -208,6 +209,10 @@ export interface ChipPropsSU<PinLabel extends string = string>
|
|
|
208
209
|
extends CommonComponentProps {
|
|
209
210
|
manufacturerPartNumber?: string
|
|
210
211
|
pinLabels?: PinLabelsProp<string, PinLabel>
|
|
212
|
+
/**
|
|
213
|
+
* Whether to show pin aliases in the schematic
|
|
214
|
+
*/
|
|
215
|
+
showPinAliases?: boolean
|
|
211
216
|
schPinArrangement?: SchematicPortArrangement
|
|
212
217
|
/** @deprecated Use schPinArrangement instead. */
|
|
213
218
|
schPortArrangement?: SchematicPortArrangement
|
|
@@ -457,6 +462,7 @@ export interface NetProps {
|
|
|
457
462
|
```ts
|
|
458
463
|
export interface NetAliasProps {
|
|
459
464
|
net?: string
|
|
465
|
+
connection?: string
|
|
460
466
|
schX?: number | string
|
|
461
467
|
schY?: number | string
|
|
462
468
|
schRotation?: number | string
|
|
@@ -467,6 +473,22 @@ export interface NetAliasProps {
|
|
|
467
473
|
[Source](https://github.com/tscircuit/props/blob/main/lib/components/netalias.ts)
|
|
468
474
|
|
|
469
475
|
|
|
476
|
+
### NetLabelProps `<netlabel />`
|
|
477
|
+
|
|
478
|
+
```ts
|
|
479
|
+
export interface NetLabelProps {
|
|
480
|
+
net?: string
|
|
481
|
+
connection?: string
|
|
482
|
+
schX?: number | string
|
|
483
|
+
schY?: number | string
|
|
484
|
+
schRotation?: number | string
|
|
485
|
+
anchorSide?: "left" | "up" | "right" | "down"
|
|
486
|
+
}
|
|
487
|
+
```
|
|
488
|
+
|
|
489
|
+
[Source](https://github.com/tscircuit/props/blob/main/lib/components/netlabel.ts)
|
|
490
|
+
|
|
491
|
+
|
|
470
492
|
### PinHeaderProps `<pinheader />`
|
|
471
493
|
|
|
472
494
|
```ts
|
package/dist/index.d.ts
CHANGED
|
@@ -6913,6 +6913,10 @@ interface PinCompatibleVariant {
|
|
|
6913
6913
|
interface ChipPropsSU<PinLabel extends string = string> extends CommonComponentProps {
|
|
6914
6914
|
manufacturerPartNumber?: string;
|
|
6915
6915
|
pinLabels?: PinLabelsProp<string, PinLabel>;
|
|
6916
|
+
/**
|
|
6917
|
+
* Whether to show pin aliases in the schematic
|
|
6918
|
+
*/
|
|
6919
|
+
showPinAliases?: boolean;
|
|
6916
6920
|
schPinArrangement?: SchematicPortArrangement;
|
|
6917
6921
|
/** @deprecated Use schPinArrangement instead. */
|
|
6918
6922
|
schPortArrangement?: SchematicPortArrangement;
|
|
@@ -7227,6 +7231,7 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
7227
7231
|
}>, {
|
|
7228
7232
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
7229
7233
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
7234
|
+
showPinAliases: z.ZodOptional<z.ZodBoolean>;
|
|
7230
7235
|
internallyConnectedPins: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7231
7236
|
externallyConnectedPins: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7232
7237
|
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
@@ -7544,6 +7549,7 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
7544
7549
|
schHeight?: number | undefined;
|
|
7545
7550
|
manufacturerPartNumber?: string | undefined;
|
|
7546
7551
|
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
7552
|
+
showPinAliases?: boolean | undefined;
|
|
7547
7553
|
internallyConnectedPins?: string[][] | undefined;
|
|
7548
7554
|
externallyConnectedPins?: string[][] | undefined;
|
|
7549
7555
|
schPinArrangement?: {
|
|
@@ -7689,6 +7695,7 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
7689
7695
|
schHeight?: string | number | undefined;
|
|
7690
7696
|
manufacturerPartNumber?: string | undefined;
|
|
7691
7697
|
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
7698
|
+
showPinAliases?: boolean | undefined;
|
|
7692
7699
|
internallyConnectedPins?: string[][] | undefined;
|
|
7693
7700
|
externallyConnectedPins?: string[][] | undefined;
|
|
7694
7701
|
schPinArrangement?: {
|
|
@@ -8024,6 +8031,7 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
8024
8031
|
}>, {
|
|
8025
8032
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
8026
8033
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
8034
|
+
showPinAliases: z.ZodOptional<z.ZodBoolean>;
|
|
8027
8035
|
internallyConnectedPins: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8028
8036
|
externallyConnectedPins: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8029
8037
|
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
@@ -8341,6 +8349,7 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
8341
8349
|
schHeight?: number | undefined;
|
|
8342
8350
|
manufacturerPartNumber?: string | undefined;
|
|
8343
8351
|
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
8352
|
+
showPinAliases?: boolean | undefined;
|
|
8344
8353
|
internallyConnectedPins?: string[][] | undefined;
|
|
8345
8354
|
externallyConnectedPins?: string[][] | undefined;
|
|
8346
8355
|
schPinArrangement?: {
|
|
@@ -8486,6 +8495,7 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
8486
8495
|
schHeight?: string | number | undefined;
|
|
8487
8496
|
manufacturerPartNumber?: string | undefined;
|
|
8488
8497
|
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
8498
|
+
showPinAliases?: boolean | undefined;
|
|
8489
8499
|
internallyConnectedPins?: string[][] | undefined;
|
|
8490
8500
|
externallyConnectedPins?: string[][] | undefined;
|
|
8491
8501
|
schPinArrangement?: {
|
|
@@ -16490,15 +16500,52 @@ declare const pinHeaderProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
16490
16500
|
facingDirection?: "left" | "right" | undefined;
|
|
16491
16501
|
}>;
|
|
16492
16502
|
|
|
16503
|
+
/**
|
|
16504
|
+
* @deprecated Use NetLabelProps instead.
|
|
16505
|
+
*/
|
|
16493
16506
|
interface NetAliasProps {
|
|
16494
16507
|
net?: string;
|
|
16508
|
+
connection?: string;
|
|
16495
16509
|
schX?: number | string;
|
|
16496
16510
|
schY?: number | string;
|
|
16497
16511
|
schRotation?: number | string;
|
|
16498
16512
|
anchorSide?: "left" | "up" | "right" | "down";
|
|
16499
16513
|
}
|
|
16514
|
+
/** @deprecated Use netLabelProps instead. */
|
|
16500
16515
|
declare const netAliasProps: z.ZodObject<{
|
|
16501
16516
|
net: z.ZodOptional<z.ZodString>;
|
|
16517
|
+
connection: z.ZodOptional<z.ZodString>;
|
|
16518
|
+
schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16519
|
+
schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16520
|
+
schRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16521
|
+
anchorSide: z.ZodOptional<z.ZodEnum<["left", "up", "right", "down"]>>;
|
|
16522
|
+
}, "strip", z.ZodTypeAny, {
|
|
16523
|
+
schX?: number | undefined;
|
|
16524
|
+
schY?: number | undefined;
|
|
16525
|
+
schRotation?: number | undefined;
|
|
16526
|
+
net?: string | undefined;
|
|
16527
|
+
connection?: string | undefined;
|
|
16528
|
+
anchorSide?: "up" | "down" | "left" | "right" | undefined;
|
|
16529
|
+
}, {
|
|
16530
|
+
schX?: string | number | undefined;
|
|
16531
|
+
schY?: string | number | undefined;
|
|
16532
|
+
schRotation?: string | number | undefined;
|
|
16533
|
+
net?: string | undefined;
|
|
16534
|
+
connection?: string | undefined;
|
|
16535
|
+
anchorSide?: "up" | "down" | "left" | "right" | undefined;
|
|
16536
|
+
}>;
|
|
16537
|
+
|
|
16538
|
+
interface NetLabelProps {
|
|
16539
|
+
net?: string;
|
|
16540
|
+
connection?: string;
|
|
16541
|
+
schX?: number | string;
|
|
16542
|
+
schY?: number | string;
|
|
16543
|
+
schRotation?: number | string;
|
|
16544
|
+
anchorSide?: "left" | "up" | "right" | "down";
|
|
16545
|
+
}
|
|
16546
|
+
declare const netLabelProps: z.ZodObject<{
|
|
16547
|
+
net: z.ZodOptional<z.ZodString>;
|
|
16548
|
+
connection: z.ZodOptional<z.ZodString>;
|
|
16502
16549
|
schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16503
16550
|
schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16504
16551
|
schRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -16508,12 +16555,14 @@ declare const netAliasProps: z.ZodObject<{
|
|
|
16508
16555
|
schY?: number | undefined;
|
|
16509
16556
|
schRotation?: number | undefined;
|
|
16510
16557
|
net?: string | undefined;
|
|
16558
|
+
connection?: string | undefined;
|
|
16511
16559
|
anchorSide?: "up" | "down" | "left" | "right" | undefined;
|
|
16512
16560
|
}, {
|
|
16513
16561
|
schX?: string | number | undefined;
|
|
16514
16562
|
schY?: string | number | undefined;
|
|
16515
16563
|
schRotation?: string | number | undefined;
|
|
16516
16564
|
net?: string | undefined;
|
|
16565
|
+
connection?: string | undefined;
|
|
16517
16566
|
anchorSide?: "up" | "down" | "left" | "right" | undefined;
|
|
16518
16567
|
}>;
|
|
16519
16568
|
|
|
@@ -16778,6 +16827,7 @@ declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
16778
16827
|
}>, {
|
|
16779
16828
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
16780
16829
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
16830
|
+
showPinAliases: z.ZodOptional<z.ZodBoolean>;
|
|
16781
16831
|
internallyConnectedPins: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
16782
16832
|
externallyConnectedPins: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
16783
16833
|
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
@@ -17095,6 +17145,7 @@ declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
17095
17145
|
schHeight?: number | undefined;
|
|
17096
17146
|
manufacturerPartNumber?: string | undefined;
|
|
17097
17147
|
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
17148
|
+
showPinAliases?: boolean | undefined;
|
|
17098
17149
|
internallyConnectedPins?: string[][] | undefined;
|
|
17099
17150
|
externallyConnectedPins?: string[][] | undefined;
|
|
17100
17151
|
schPinArrangement?: {
|
|
@@ -17240,6 +17291,7 @@ declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
17240
17291
|
schHeight?: string | number | undefined;
|
|
17241
17292
|
manufacturerPartNumber?: string | undefined;
|
|
17242
17293
|
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
17294
|
+
showPinAliases?: boolean | undefined;
|
|
17243
17295
|
internallyConnectedPins?: string[][] | undefined;
|
|
17244
17296
|
externallyConnectedPins?: string[][] | undefined;
|
|
17245
17297
|
schPinArrangement?: {
|
|
@@ -22856,4 +22908,4 @@ interface PlatformConfig {
|
|
|
22856
22908
|
}
|
|
22857
22909
|
declare const platformConfig: z.ZodType<PlatformConfig>;
|
|
22858
22910
|
|
|
22859
|
-
export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryProps, type BoardProps, 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 CrystalProps, type CutoutProps, type CutoutPropsInput, 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 Footprint, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type JumperProps, type LayoutConfig, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetProps, type NetAliasProps, 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 SchematicLineProps, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, 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 TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, 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, netProps, 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, schematicLineProps, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };
|
|
22911
|
+
export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryProps, type BoardProps, 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 CrystalProps, type CutoutProps, type CutoutPropsInput, 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 Footprint, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type JumperProps, type LayoutConfig, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, 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 SchematicLineProps, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, 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 TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, 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, 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, schematicLineProps, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };
|