@tscircuit/props 0.0.353 → 0.0.355
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 -0
- package/dist/index.d.ts +246 -9
- package/dist/index.js +280 -239
- package/dist/index.js.map +1 -1
- package/lib/components/board.ts +2 -0
- package/lib/components/courtyard-outline.ts +15 -0
- package/lib/components/courtyard-rect.ts +16 -0
- package/lib/components/fabrication-note-rect.ts +16 -0
- package/lib/index.ts +3 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -177,10 +177,12 @@ export interface BatteryProps<PinLabel extends string = string>
|
|
|
177
177
|
|
|
178
178
|
```ts
|
|
179
179
|
export interface BoardProps extends Omit<SubcircuitGroupProps, "subcircuit"> {
|
|
180
|
+
title?: string;
|
|
180
181
|
material?: "fr4" | "fr1";
|
|
181
182
|
/** Number of layers for the PCB */
|
|
182
183
|
layers?: 2 | 4;
|
|
183
184
|
borderRadius?: Distance;
|
|
185
|
+
thickness?: Distance;
|
|
184
186
|
boardAnchorPosition?: Point;
|
|
185
187
|
boardAnchorAlignment?: z.infer<typeof ninePointAnchor>;
|
|
186
188
|
/** Color applied to both top and bottom solder masks */
|
package/dist/index.d.ts
CHANGED
|
@@ -10751,6 +10751,7 @@ interface BoardProps extends Omit<SubcircuitGroupProps, "subcircuit"> {
|
|
|
10751
10751
|
/** Number of layers for the PCB */
|
|
10752
10752
|
layers?: 2 | 4;
|
|
10753
10753
|
borderRadius?: Distance;
|
|
10754
|
+
thickness?: Distance;
|
|
10754
10755
|
boardAnchorPosition?: Point;
|
|
10755
10756
|
boardAnchorAlignment?: z.infer<typeof ninePointAnchor>;
|
|
10756
10757
|
/** Color applied to both top and bottom solder masks */
|
|
@@ -11440,6 +11441,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
11440
11441
|
material: z.ZodDefault<z.ZodEnum<["fr4", "fr1"]>>;
|
|
11441
11442
|
layers: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<2>, z.ZodLiteral<4>]>>;
|
|
11442
11443
|
borderRadius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11444
|
+
thickness: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11443
11445
|
boardAnchorPosition: z.ZodOptional<z.ZodObject<{
|
|
11444
11446
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11445
11447
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -11739,6 +11741,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
11739
11741
|
outlineOffsetY?: number | undefined;
|
|
11740
11742
|
title?: string | undefined;
|
|
11741
11743
|
borderRadius?: number | undefined;
|
|
11744
|
+
thickness?: number | undefined;
|
|
11742
11745
|
boardAnchorPosition?: {
|
|
11743
11746
|
x: number;
|
|
11744
11747
|
y: number;
|
|
@@ -12035,6 +12038,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
12035
12038
|
material?: "fr4" | "fr1" | undefined;
|
|
12036
12039
|
layers?: 2 | 4 | undefined;
|
|
12037
12040
|
borderRadius?: string | number | undefined;
|
|
12041
|
+
thickness?: string | number | undefined;
|
|
12038
12042
|
boardAnchorPosition?: {
|
|
12039
12043
|
x: string | number;
|
|
12040
12044
|
y: string | number;
|
|
@@ -27924,6 +27928,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
27924
27928
|
material: z.ZodDefault<z.ZodEnum<["fr4", "fr1"]>>;
|
|
27925
27929
|
layers: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<2>, z.ZodLiteral<4>]>>;
|
|
27926
27930
|
borderRadius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27931
|
+
thickness: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27927
27932
|
boardAnchorPosition: z.ZodOptional<z.ZodObject<{
|
|
27928
27933
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27929
27934
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -28238,6 +28243,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
28238
28243
|
outlineOffsetY?: number | undefined;
|
|
28239
28244
|
title?: string | undefined;
|
|
28240
28245
|
borderRadius?: number | undefined;
|
|
28246
|
+
thickness?: number | undefined;
|
|
28241
28247
|
boardAnchorPosition?: {
|
|
28242
28248
|
x: number;
|
|
28243
28249
|
y: number;
|
|
@@ -28544,6 +28550,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
28544
28550
|
material?: "fr4" | "fr1" | undefined;
|
|
28545
28551
|
layers?: 2 | 4 | undefined;
|
|
28546
28552
|
borderRadius?: string | number | undefined;
|
|
28553
|
+
thickness?: string | number | undefined;
|
|
28547
28554
|
boardAnchorPosition?: {
|
|
28548
28555
|
x: string | number;
|
|
28549
28556
|
y: string | number;
|
|
@@ -31506,8 +31513,8 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
31506
31513
|
})[];
|
|
31507
31514
|
key?: string | undefined;
|
|
31508
31515
|
highlightColor?: string | undefined;
|
|
31509
|
-
maxLength?: number | undefined;
|
|
31510
31516
|
thickness?: number | undefined;
|
|
31517
|
+
maxLength?: number | undefined;
|
|
31511
31518
|
schematicRouteHints?: {
|
|
31512
31519
|
x: number;
|
|
31513
31520
|
y: number;
|
|
@@ -31532,8 +31539,8 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
31532
31539
|
})[];
|
|
31533
31540
|
key?: string | undefined;
|
|
31534
31541
|
highlightColor?: string | undefined;
|
|
31535
|
-
maxLength?: string | number | undefined;
|
|
31536
31542
|
thickness?: string | number | undefined;
|
|
31543
|
+
maxLength?: string | number | undefined;
|
|
31537
31544
|
schematicRouteHints?: {
|
|
31538
31545
|
x: string | number;
|
|
31539
31546
|
y: string | number;
|
|
@@ -31631,8 +31638,8 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
31631
31638
|
};
|
|
31632
31639
|
key?: string | undefined;
|
|
31633
31640
|
highlightColor?: string | undefined;
|
|
31634
|
-
maxLength?: number | undefined;
|
|
31635
31641
|
thickness?: number | undefined;
|
|
31642
|
+
maxLength?: number | undefined;
|
|
31636
31643
|
schematicRouteHints?: {
|
|
31637
31644
|
x: number;
|
|
31638
31645
|
y: number;
|
|
@@ -31660,8 +31667,8 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
31660
31667
|
};
|
|
31661
31668
|
key?: string | undefined;
|
|
31662
31669
|
highlightColor?: string | undefined;
|
|
31663
|
-
maxLength?: string | number | undefined;
|
|
31664
31670
|
thickness?: string | number | undefined;
|
|
31671
|
+
maxLength?: string | number | undefined;
|
|
31665
31672
|
schematicRouteHints?: {
|
|
31666
31673
|
x: string | number;
|
|
31667
31674
|
y: string | number;
|
|
@@ -43756,6 +43763,81 @@ declare const fabricationNoteTextProps: z.ZodObject<{
|
|
|
43756
43763
|
}>;
|
|
43757
43764
|
type FabricationNoteTextProps = z.input<typeof fabricationNoteTextProps>;
|
|
43758
43765
|
|
|
43766
|
+
declare const fabricationNoteRectProps: z.ZodObject<Omit<{
|
|
43767
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43768
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43769
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43770
|
+
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
43771
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
43772
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
43773
|
+
}, "strip", z.ZodTypeAny, {
|
|
43774
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
43775
|
+
}, {
|
|
43776
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
43777
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
43778
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
43779
|
+
}>>;
|
|
43780
|
+
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43781
|
+
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43782
|
+
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43783
|
+
pcbMarginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43784
|
+
pcbMarginX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43785
|
+
pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43786
|
+
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
43787
|
+
relative: z.ZodOptional<z.ZodBoolean>;
|
|
43788
|
+
}, "pcbRotation"> & {
|
|
43789
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
43790
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
43791
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43792
|
+
isFilled: z.ZodOptional<z.ZodBoolean>;
|
|
43793
|
+
hasStroke: z.ZodOptional<z.ZodBoolean>;
|
|
43794
|
+
isStrokeDashed: z.ZodOptional<z.ZodBoolean>;
|
|
43795
|
+
color: z.ZodOptional<z.ZodString>;
|
|
43796
|
+
}, "strip", z.ZodTypeAny, {
|
|
43797
|
+
width: number;
|
|
43798
|
+
height: number;
|
|
43799
|
+
pcbX?: number | undefined;
|
|
43800
|
+
pcbY?: number | undefined;
|
|
43801
|
+
pcbPositionAnchor?: string | undefined;
|
|
43802
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
43803
|
+
pcbMarginTop?: number | undefined;
|
|
43804
|
+
pcbMarginRight?: number | undefined;
|
|
43805
|
+
pcbMarginBottom?: number | undefined;
|
|
43806
|
+
pcbMarginLeft?: number | undefined;
|
|
43807
|
+
pcbMarginX?: number | undefined;
|
|
43808
|
+
pcbMarginY?: number | undefined;
|
|
43809
|
+
pcbRelative?: boolean | undefined;
|
|
43810
|
+
relative?: boolean | undefined;
|
|
43811
|
+
strokeWidth?: number | undefined;
|
|
43812
|
+
color?: string | undefined;
|
|
43813
|
+
isFilled?: boolean | undefined;
|
|
43814
|
+
hasStroke?: boolean | undefined;
|
|
43815
|
+
isStrokeDashed?: boolean | undefined;
|
|
43816
|
+
}, {
|
|
43817
|
+
width: string | number;
|
|
43818
|
+
height: string | number;
|
|
43819
|
+
pcbX?: string | number | undefined;
|
|
43820
|
+
pcbY?: string | number | undefined;
|
|
43821
|
+
pcbPositionAnchor?: string | undefined;
|
|
43822
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
43823
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
43824
|
+
} | undefined;
|
|
43825
|
+
pcbMarginTop?: string | number | undefined;
|
|
43826
|
+
pcbMarginRight?: string | number | undefined;
|
|
43827
|
+
pcbMarginBottom?: string | number | undefined;
|
|
43828
|
+
pcbMarginLeft?: string | number | undefined;
|
|
43829
|
+
pcbMarginX?: string | number | undefined;
|
|
43830
|
+
pcbMarginY?: string | number | undefined;
|
|
43831
|
+
pcbRelative?: boolean | undefined;
|
|
43832
|
+
relative?: boolean | undefined;
|
|
43833
|
+
strokeWidth?: string | number | undefined;
|
|
43834
|
+
color?: string | undefined;
|
|
43835
|
+
isFilled?: boolean | undefined;
|
|
43836
|
+
hasStroke?: boolean | undefined;
|
|
43837
|
+
isStrokeDashed?: boolean | undefined;
|
|
43838
|
+
}>;
|
|
43839
|
+
type FabricationNoteRectProps = z.input<typeof fabricationNoteRectProps>;
|
|
43840
|
+
|
|
43759
43841
|
declare const fabricationNotePathProps: z.ZodObject<Omit<{
|
|
43760
43842
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43761
43843
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -45612,6 +45694,161 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
45612
45694
|
}>]>;
|
|
45613
45695
|
type PcbKeepoutProps = z.input<typeof pcbKeepoutProps>;
|
|
45614
45696
|
|
|
45697
|
+
declare const courtyardRectProps: z.ZodObject<Omit<{
|
|
45698
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45699
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45700
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45701
|
+
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
45702
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
45703
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
45704
|
+
}, "strip", z.ZodTypeAny, {
|
|
45705
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
45706
|
+
}, {
|
|
45707
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
45708
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
45709
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
45710
|
+
}>>;
|
|
45711
|
+
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45712
|
+
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45713
|
+
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45714
|
+
pcbMarginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45715
|
+
pcbMarginX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45716
|
+
pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45717
|
+
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
45718
|
+
relative: z.ZodOptional<z.ZodBoolean>;
|
|
45719
|
+
}, "pcbRotation"> & {
|
|
45720
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
45721
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
45722
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45723
|
+
isFilled: z.ZodOptional<z.ZodBoolean>;
|
|
45724
|
+
hasStroke: z.ZodOptional<z.ZodBoolean>;
|
|
45725
|
+
isStrokeDashed: z.ZodOptional<z.ZodBoolean>;
|
|
45726
|
+
color: z.ZodOptional<z.ZodString>;
|
|
45727
|
+
}, "strip", z.ZodTypeAny, {
|
|
45728
|
+
width: number;
|
|
45729
|
+
height: number;
|
|
45730
|
+
pcbX?: number | undefined;
|
|
45731
|
+
pcbY?: number | undefined;
|
|
45732
|
+
pcbPositionAnchor?: string | undefined;
|
|
45733
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
45734
|
+
pcbMarginTop?: number | undefined;
|
|
45735
|
+
pcbMarginRight?: number | undefined;
|
|
45736
|
+
pcbMarginBottom?: number | undefined;
|
|
45737
|
+
pcbMarginLeft?: number | undefined;
|
|
45738
|
+
pcbMarginX?: number | undefined;
|
|
45739
|
+
pcbMarginY?: number | undefined;
|
|
45740
|
+
pcbRelative?: boolean | undefined;
|
|
45741
|
+
relative?: boolean | undefined;
|
|
45742
|
+
strokeWidth?: number | undefined;
|
|
45743
|
+
color?: string | undefined;
|
|
45744
|
+
isFilled?: boolean | undefined;
|
|
45745
|
+
hasStroke?: boolean | undefined;
|
|
45746
|
+
isStrokeDashed?: boolean | undefined;
|
|
45747
|
+
}, {
|
|
45748
|
+
width: string | number;
|
|
45749
|
+
height: string | number;
|
|
45750
|
+
pcbX?: string | number | undefined;
|
|
45751
|
+
pcbY?: string | number | undefined;
|
|
45752
|
+
pcbPositionAnchor?: string | undefined;
|
|
45753
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
45754
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
45755
|
+
} | undefined;
|
|
45756
|
+
pcbMarginTop?: string | number | undefined;
|
|
45757
|
+
pcbMarginRight?: string | number | undefined;
|
|
45758
|
+
pcbMarginBottom?: string | number | undefined;
|
|
45759
|
+
pcbMarginLeft?: string | number | undefined;
|
|
45760
|
+
pcbMarginX?: string | number | undefined;
|
|
45761
|
+
pcbMarginY?: string | number | undefined;
|
|
45762
|
+
pcbRelative?: boolean | undefined;
|
|
45763
|
+
relative?: boolean | undefined;
|
|
45764
|
+
strokeWidth?: string | number | undefined;
|
|
45765
|
+
color?: string | undefined;
|
|
45766
|
+
isFilled?: boolean | undefined;
|
|
45767
|
+
hasStroke?: boolean | undefined;
|
|
45768
|
+
isStrokeDashed?: boolean | undefined;
|
|
45769
|
+
}>;
|
|
45770
|
+
type CourtyardRectProps = z.input<typeof courtyardRectProps>;
|
|
45771
|
+
|
|
45772
|
+
declare const courtyardOutlineProps: z.ZodObject<Omit<{
|
|
45773
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45774
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45775
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45776
|
+
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
45777
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
45778
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
45779
|
+
}, "strip", z.ZodTypeAny, {
|
|
45780
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
45781
|
+
}, {
|
|
45782
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
45783
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
45784
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
45785
|
+
}>>;
|
|
45786
|
+
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45787
|
+
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45788
|
+
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45789
|
+
pcbMarginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45790
|
+
pcbMarginX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45791
|
+
pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45792
|
+
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
45793
|
+
relative: z.ZodOptional<z.ZodBoolean>;
|
|
45794
|
+
}, "pcbX" | "pcbY" | "pcbRotation"> & {
|
|
45795
|
+
outline: z.ZodArray<z.ZodObject<{
|
|
45796
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
45797
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
45798
|
+
}, "strip", z.ZodTypeAny, {
|
|
45799
|
+
x: number;
|
|
45800
|
+
y: number;
|
|
45801
|
+
}, {
|
|
45802
|
+
x: string | number;
|
|
45803
|
+
y: string | number;
|
|
45804
|
+
}>, "many">;
|
|
45805
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45806
|
+
isClosed: z.ZodOptional<z.ZodBoolean>;
|
|
45807
|
+
isStrokeDashed: z.ZodOptional<z.ZodBoolean>;
|
|
45808
|
+
color: z.ZodOptional<z.ZodString>;
|
|
45809
|
+
}, "strip", z.ZodTypeAny, {
|
|
45810
|
+
outline: {
|
|
45811
|
+
x: number;
|
|
45812
|
+
y: number;
|
|
45813
|
+
}[];
|
|
45814
|
+
pcbPositionAnchor?: string | undefined;
|
|
45815
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
45816
|
+
pcbMarginTop?: number | undefined;
|
|
45817
|
+
pcbMarginRight?: number | undefined;
|
|
45818
|
+
pcbMarginBottom?: number | undefined;
|
|
45819
|
+
pcbMarginLeft?: number | undefined;
|
|
45820
|
+
pcbMarginX?: number | undefined;
|
|
45821
|
+
pcbMarginY?: number | undefined;
|
|
45822
|
+
pcbRelative?: boolean | undefined;
|
|
45823
|
+
relative?: boolean | undefined;
|
|
45824
|
+
strokeWidth?: number | undefined;
|
|
45825
|
+
color?: string | undefined;
|
|
45826
|
+
isStrokeDashed?: boolean | undefined;
|
|
45827
|
+
isClosed?: boolean | undefined;
|
|
45828
|
+
}, {
|
|
45829
|
+
outline: {
|
|
45830
|
+
x: string | number;
|
|
45831
|
+
y: string | number;
|
|
45832
|
+
}[];
|
|
45833
|
+
pcbPositionAnchor?: string | undefined;
|
|
45834
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
45835
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
45836
|
+
} | undefined;
|
|
45837
|
+
pcbMarginTop?: string | number | undefined;
|
|
45838
|
+
pcbMarginRight?: string | number | undefined;
|
|
45839
|
+
pcbMarginBottom?: string | number | undefined;
|
|
45840
|
+
pcbMarginLeft?: string | number | undefined;
|
|
45841
|
+
pcbMarginX?: string | number | undefined;
|
|
45842
|
+
pcbMarginY?: string | number | undefined;
|
|
45843
|
+
pcbRelative?: boolean | undefined;
|
|
45844
|
+
relative?: boolean | undefined;
|
|
45845
|
+
strokeWidth?: string | number | undefined;
|
|
45846
|
+
color?: string | undefined;
|
|
45847
|
+
isStrokeDashed?: boolean | undefined;
|
|
45848
|
+
isClosed?: boolean | undefined;
|
|
45849
|
+
}>;
|
|
45850
|
+
type CourtyardOutlineProps = z.input<typeof courtyardOutlineProps>;
|
|
45851
|
+
|
|
45615
45852
|
interface CopperPourProps {
|
|
45616
45853
|
name?: string;
|
|
45617
45854
|
layer: LayerRefInput;
|
|
@@ -48961,8 +49198,8 @@ declare const schematicCircleProps: z.ZodObject<{
|
|
|
48961
49198
|
};
|
|
48962
49199
|
radius: number;
|
|
48963
49200
|
color: string;
|
|
48964
|
-
isDashed: boolean;
|
|
48965
49201
|
isFilled: boolean;
|
|
49202
|
+
isDashed: boolean;
|
|
48966
49203
|
strokeWidth?: number | undefined;
|
|
48967
49204
|
fillColor?: string | undefined;
|
|
48968
49205
|
}, {
|
|
@@ -48973,8 +49210,8 @@ declare const schematicCircleProps: z.ZodObject<{
|
|
|
48973
49210
|
radius: string | number;
|
|
48974
49211
|
strokeWidth?: string | number | undefined;
|
|
48975
49212
|
color?: string | undefined;
|
|
48976
|
-
isDashed?: boolean | undefined;
|
|
48977
49213
|
isFilled?: boolean | undefined;
|
|
49214
|
+
isDashed?: boolean | undefined;
|
|
48978
49215
|
fillColor?: string | undefined;
|
|
48979
49216
|
}>;
|
|
48980
49217
|
type SchematicCircleProps = z.input<typeof schematicCircleProps>;
|
|
@@ -48994,8 +49231,8 @@ declare const schematicRectProps: z.ZodObject<{
|
|
|
48994
49231
|
width: number;
|
|
48995
49232
|
height: number;
|
|
48996
49233
|
color: string;
|
|
48997
|
-
isDashed: boolean;
|
|
48998
49234
|
isFilled: boolean;
|
|
49235
|
+
isDashed: boolean;
|
|
48999
49236
|
rotation: number;
|
|
49000
49237
|
schX?: number | undefined;
|
|
49001
49238
|
schY?: number | undefined;
|
|
@@ -49008,8 +49245,8 @@ declare const schematicRectProps: z.ZodObject<{
|
|
|
49008
49245
|
schY?: string | number | undefined;
|
|
49009
49246
|
strokeWidth?: string | number | undefined;
|
|
49010
49247
|
color?: string | undefined;
|
|
49011
|
-
isDashed?: boolean | undefined;
|
|
49012
49248
|
isFilled?: boolean | undefined;
|
|
49249
|
+
isDashed?: boolean | undefined;
|
|
49013
49250
|
fillColor?: string | undefined;
|
|
49014
49251
|
rotation?: string | number | undefined;
|
|
49015
49252
|
}>;
|
|
@@ -49953,4 +50190,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
49953
50190
|
}
|
|
49954
50191
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
49955
50192
|
|
|
49956
|
-
export { type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, 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 CircuitJson, 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 SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, 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 VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, analogSimulationProps, autorouterConfig, autorouterPreset, 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, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
50193
|
+
export { type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, 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 CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CourtyardOutlineProps, type CourtyardRectProps, 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 FabricationNoteRectProps, 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 SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, 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 VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, analogSimulationProps, autorouterConfig, autorouterPreset, 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, courtyardOutlineProps, courtyardRectProps, 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, fabricationNoteRectProps, 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, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|