@tscircuit/props 0.0.330 → 0.0.332
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 +2 -1
- package/dist/index.d.ts +189 -8
- package/dist/index.js +189 -142
- package/dist/index.js.map +1 -1
- package/lib/components/board.ts +5 -2
- package/lib/components/schematic-arc.ts +17 -0
- package/lib/components/schematic-circle.ts +14 -0
- package/lib/components/schematic-line.ts +3 -0
- package/lib/components/schematic-rect.ts +16 -0
- package/lib/index.ts +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -165,7 +165,8 @@ export interface BoardProps extends Omit<SubcircuitGroupProps, "subcircuit"> {
|
|
|
165
165
|
/** Number of layers for the PCB */
|
|
166
166
|
layers?: 2 | 4;
|
|
167
167
|
borderRadius?: Distance;
|
|
168
|
-
|
|
168
|
+
boardAnchorPosition?: Point;
|
|
169
|
+
boardAnchorAlignment?: z.infer<typeof ninePointAnchor>;
|
|
169
170
|
}
|
|
170
171
|
```
|
|
171
172
|
|
package/dist/index.d.ts
CHANGED
|
@@ -10654,7 +10654,8 @@ interface BoardProps extends Omit<SubcircuitGroupProps, "subcircuit"> {
|
|
|
10654
10654
|
/** Number of layers for the PCB */
|
|
10655
10655
|
layers?: 2 | 4;
|
|
10656
10656
|
borderRadius?: Distance;
|
|
10657
|
-
|
|
10657
|
+
boardAnchorPosition?: Point;
|
|
10658
|
+
boardAnchorAlignment?: z.infer<typeof ninePointAnchor>;
|
|
10658
10659
|
}
|
|
10659
10660
|
declare const boardProps: z.ZodObject<{
|
|
10660
10661
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -11334,7 +11335,17 @@ declare const boardProps: z.ZodObject<{
|
|
|
11334
11335
|
material: z.ZodDefault<z.ZodEnum<["fr4", "fr1"]>>;
|
|
11335
11336
|
layers: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<2>, z.ZodLiteral<4>]>>;
|
|
11336
11337
|
borderRadius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11337
|
-
|
|
11338
|
+
boardAnchorPosition: z.ZodOptional<z.ZodObject<{
|
|
11339
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11340
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11341
|
+
}, "strip", z.ZodTypeAny, {
|
|
11342
|
+
x: number;
|
|
11343
|
+
y: number;
|
|
11344
|
+
}, {
|
|
11345
|
+
x: string | number;
|
|
11346
|
+
y: string | number;
|
|
11347
|
+
}>>;
|
|
11348
|
+
boardAnchorAlignment: z.ZodOptional<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
11338
11349
|
}, "strip", z.ZodTypeAny, {
|
|
11339
11350
|
material: "fr4" | "fr1";
|
|
11340
11351
|
layers: 2 | 4;
|
|
@@ -11615,7 +11626,11 @@ declare const boardProps: z.ZodObject<{
|
|
|
11615
11626
|
outlineOffsetX?: number | undefined;
|
|
11616
11627
|
outlineOffsetY?: number | undefined;
|
|
11617
11628
|
borderRadius?: number | undefined;
|
|
11618
|
-
|
|
11629
|
+
boardAnchorPosition?: {
|
|
11630
|
+
x: number;
|
|
11631
|
+
y: number;
|
|
11632
|
+
} | undefined;
|
|
11633
|
+
boardAnchorAlignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
11619
11634
|
}, {
|
|
11620
11635
|
symbol?: SymbolProp | undefined;
|
|
11621
11636
|
key?: any;
|
|
@@ -11900,7 +11915,11 @@ declare const boardProps: z.ZodObject<{
|
|
|
11900
11915
|
material?: "fr4" | "fr1" | undefined;
|
|
11901
11916
|
layers?: 2 | 4 | undefined;
|
|
11902
11917
|
borderRadius?: string | number | undefined;
|
|
11903
|
-
|
|
11918
|
+
boardAnchorPosition?: {
|
|
11919
|
+
x: string | number;
|
|
11920
|
+
y: string | number;
|
|
11921
|
+
} | undefined;
|
|
11922
|
+
boardAnchorAlignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
11904
11923
|
}>;
|
|
11905
11924
|
|
|
11906
11925
|
interface BreakoutProps extends Omit<SubcircuitGroupProps, "subcircuit"> {
|
|
@@ -27687,7 +27706,17 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
27687
27706
|
material: z.ZodDefault<z.ZodEnum<["fr4", "fr1"]>>;
|
|
27688
27707
|
layers: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<2>, z.ZodLiteral<4>]>>;
|
|
27689
27708
|
borderRadius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27690
|
-
|
|
27709
|
+
boardAnchorPosition: z.ZodOptional<z.ZodObject<{
|
|
27710
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27711
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27712
|
+
}, "strip", z.ZodTypeAny, {
|
|
27713
|
+
x: number;
|
|
27714
|
+
y: number;
|
|
27715
|
+
}, {
|
|
27716
|
+
x: string | number;
|
|
27717
|
+
y: string | number;
|
|
27718
|
+
}>>;
|
|
27719
|
+
boardAnchorAlignment: z.ZodOptional<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
27691
27720
|
} & {
|
|
27692
27721
|
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
27693
27722
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -27983,7 +28012,11 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
27983
28012
|
outlineOffsetX?: number | undefined;
|
|
27984
28013
|
outlineOffsetY?: number | undefined;
|
|
27985
28014
|
borderRadius?: number | undefined;
|
|
27986
|
-
|
|
28015
|
+
boardAnchorPosition?: {
|
|
28016
|
+
x: number;
|
|
28017
|
+
y: number;
|
|
28018
|
+
} | undefined;
|
|
28019
|
+
boardAnchorAlignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
27987
28020
|
leftPins?: string[] | undefined;
|
|
27988
28021
|
rightPins?: string[] | undefined;
|
|
27989
28022
|
topPins?: string[] | undefined;
|
|
@@ -28278,7 +28311,11 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
28278
28311
|
material?: "fr4" | "fr1" | undefined;
|
|
28279
28312
|
layers?: 2 | 4 | undefined;
|
|
28280
28313
|
borderRadius?: string | number | undefined;
|
|
28281
|
-
|
|
28314
|
+
boardAnchorPosition?: {
|
|
28315
|
+
x: string | number;
|
|
28316
|
+
y: string | number;
|
|
28317
|
+
} | undefined;
|
|
28318
|
+
boardAnchorAlignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
28282
28319
|
leftPins?: string[] | undefined;
|
|
28283
28320
|
rightPins?: string[] | undefined;
|
|
28284
28321
|
topPins?: string[] | undefined;
|
|
@@ -47358,6 +47395,51 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
47358
47395
|
}>;
|
|
47359
47396
|
declare const voltageSourcePins: readonly ["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"];
|
|
47360
47397
|
|
|
47398
|
+
declare const schematicArcProps: z.ZodObject<{
|
|
47399
|
+
center: z.ZodObject<{
|
|
47400
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
47401
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
47402
|
+
}, "strip", z.ZodTypeAny, {
|
|
47403
|
+
x: number;
|
|
47404
|
+
y: number;
|
|
47405
|
+
}, {
|
|
47406
|
+
x: string | number;
|
|
47407
|
+
y: string | number;
|
|
47408
|
+
}>;
|
|
47409
|
+
radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
47410
|
+
startAngleDegrees: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
47411
|
+
endAngleDegrees: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
47412
|
+
direction: z.ZodDefault<z.ZodEnum<["clockwise", "counterclockwise"]>>;
|
|
47413
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
47414
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
47415
|
+
isDashed: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
47416
|
+
}, "strip", z.ZodTypeAny, {
|
|
47417
|
+
direction: "clockwise" | "counterclockwise";
|
|
47418
|
+
center: {
|
|
47419
|
+
x: number;
|
|
47420
|
+
y: number;
|
|
47421
|
+
};
|
|
47422
|
+
color: string;
|
|
47423
|
+
radius: number;
|
|
47424
|
+
startAngleDegrees: number;
|
|
47425
|
+
endAngleDegrees: number;
|
|
47426
|
+
isDashed: boolean;
|
|
47427
|
+
strokeWidth?: number | undefined;
|
|
47428
|
+
}, {
|
|
47429
|
+
center: {
|
|
47430
|
+
x: string | number;
|
|
47431
|
+
y: string | number;
|
|
47432
|
+
};
|
|
47433
|
+
radius: string | number;
|
|
47434
|
+
startAngleDegrees: string | number;
|
|
47435
|
+
endAngleDegrees: string | number;
|
|
47436
|
+
direction?: "clockwise" | "counterclockwise" | undefined;
|
|
47437
|
+
strokeWidth?: string | number | undefined;
|
|
47438
|
+
color?: string | undefined;
|
|
47439
|
+
isDashed?: boolean | undefined;
|
|
47440
|
+
}>;
|
|
47441
|
+
type SchematicArcProps = z.input<typeof schematicArcProps>;
|
|
47442
|
+
|
|
47361
47443
|
declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
47362
47444
|
schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
47363
47445
|
schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -47480,21 +47562,120 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
47480
47562
|
}>;
|
|
47481
47563
|
type SchematicBoxProps = z.input<typeof schematicBoxProps>;
|
|
47482
47564
|
|
|
47565
|
+
declare const schematicCircleProps: z.ZodObject<{
|
|
47566
|
+
center: z.ZodObject<{
|
|
47567
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
47568
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
47569
|
+
}, "strip", z.ZodTypeAny, {
|
|
47570
|
+
x: number;
|
|
47571
|
+
y: number;
|
|
47572
|
+
}, {
|
|
47573
|
+
x: string | number;
|
|
47574
|
+
y: string | number;
|
|
47575
|
+
}>;
|
|
47576
|
+
radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
47577
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
47578
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
47579
|
+
isFilled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
47580
|
+
fillColor: z.ZodOptional<z.ZodString>;
|
|
47581
|
+
isDashed: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
47582
|
+
}, "strip", z.ZodTypeAny, {
|
|
47583
|
+
center: {
|
|
47584
|
+
x: number;
|
|
47585
|
+
y: number;
|
|
47586
|
+
};
|
|
47587
|
+
color: string;
|
|
47588
|
+
radius: number;
|
|
47589
|
+
isDashed: boolean;
|
|
47590
|
+
isFilled: boolean;
|
|
47591
|
+
strokeWidth?: number | undefined;
|
|
47592
|
+
fillColor?: string | undefined;
|
|
47593
|
+
}, {
|
|
47594
|
+
center: {
|
|
47595
|
+
x: string | number;
|
|
47596
|
+
y: string | number;
|
|
47597
|
+
};
|
|
47598
|
+
radius: string | number;
|
|
47599
|
+
strokeWidth?: string | number | undefined;
|
|
47600
|
+
color?: string | undefined;
|
|
47601
|
+
isDashed?: boolean | undefined;
|
|
47602
|
+
isFilled?: boolean | undefined;
|
|
47603
|
+
fillColor?: string | undefined;
|
|
47604
|
+
}>;
|
|
47605
|
+
type SchematicCircleProps = z.input<typeof schematicCircleProps>;
|
|
47606
|
+
|
|
47607
|
+
declare const schematicRectProps: z.ZodObject<{
|
|
47608
|
+
center: z.ZodObject<{
|
|
47609
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
47610
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
47611
|
+
}, "strip", z.ZodTypeAny, {
|
|
47612
|
+
x: number;
|
|
47613
|
+
y: number;
|
|
47614
|
+
}, {
|
|
47615
|
+
x: string | number;
|
|
47616
|
+
y: string | number;
|
|
47617
|
+
}>;
|
|
47618
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
47619
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
47620
|
+
rotation: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
47621
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
47622
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
47623
|
+
isFilled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
47624
|
+
fillColor: z.ZodOptional<z.ZodString>;
|
|
47625
|
+
isDashed: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
47626
|
+
}, "strip", z.ZodTypeAny, {
|
|
47627
|
+
center: {
|
|
47628
|
+
x: number;
|
|
47629
|
+
y: number;
|
|
47630
|
+
};
|
|
47631
|
+
width: number;
|
|
47632
|
+
height: number;
|
|
47633
|
+
color: string;
|
|
47634
|
+
isDashed: boolean;
|
|
47635
|
+
isFilled: boolean;
|
|
47636
|
+
rotation: number;
|
|
47637
|
+
strokeWidth?: number | undefined;
|
|
47638
|
+
fillColor?: string | undefined;
|
|
47639
|
+
}, {
|
|
47640
|
+
center: {
|
|
47641
|
+
x: string | number;
|
|
47642
|
+
y: string | number;
|
|
47643
|
+
};
|
|
47644
|
+
width: string | number;
|
|
47645
|
+
height: string | number;
|
|
47646
|
+
strokeWidth?: string | number | undefined;
|
|
47647
|
+
color?: string | undefined;
|
|
47648
|
+
isDashed?: boolean | undefined;
|
|
47649
|
+
isFilled?: boolean | undefined;
|
|
47650
|
+
fillColor?: string | undefined;
|
|
47651
|
+
rotation?: string | number | undefined;
|
|
47652
|
+
}>;
|
|
47653
|
+
type SchematicRectProps = z.input<typeof schematicRectProps>;
|
|
47654
|
+
|
|
47483
47655
|
declare const schematicLineProps: z.ZodObject<{
|
|
47484
47656
|
x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
47485
47657
|
y1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
47486
47658
|
x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
47487
47659
|
y2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
47660
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
47661
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
47662
|
+
isDashed: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
47488
47663
|
}, "strip", z.ZodTypeAny, {
|
|
47664
|
+
color: string;
|
|
47665
|
+
isDashed: boolean;
|
|
47489
47666
|
x1: number;
|
|
47490
47667
|
y1: number;
|
|
47491
47668
|
x2: number;
|
|
47492
47669
|
y2: number;
|
|
47670
|
+
strokeWidth?: number | undefined;
|
|
47493
47671
|
}, {
|
|
47494
47672
|
x1: string | number;
|
|
47495
47673
|
y1: string | number;
|
|
47496
47674
|
x2: string | number;
|
|
47497
47675
|
y2: string | number;
|
|
47676
|
+
strokeWidth?: string | number | undefined;
|
|
47677
|
+
color?: string | undefined;
|
|
47678
|
+
isDashed?: boolean | undefined;
|
|
47498
47679
|
}>;
|
|
47499
47680
|
type SchematicLineProps = z.input<typeof schematicLineProps>;
|
|
47500
47681
|
|
|
@@ -48383,4 +48564,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
48383
48564
|
}
|
|
48384
48565
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
48385
48566
|
|
|
48386
|
-
export { type AutocompleteString, type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, 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 CopperPourProps, type CopperPourPropsInput, 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 FootprintFileParserEntry, type FootprintLibraryResult, 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 KicadAutocompleteStringPath, type KicadPath, 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 PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, 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 SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, 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, pinAttributeMap, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, projectConfig, 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, symbolProp, symbolProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
48567
|
+
export { type AutocompleteString, type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, 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 CopperPourProps, type CopperPourPropsInput, 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 FootprintFileParserEntry, type FootprintLibraryResult, 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 KicadAutocompleteStringPath, type KicadPath, 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 PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, 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 SchematicRectProps, 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 SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, 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, pinAttributeMap, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, symbolProp, symbolProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|