@tscircuit/props 0.0.359 → 0.0.360
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 +193 -75
- package/dist/index.d.ts +588 -5
- package/dist/index.js +343 -249
- package/dist/index.js.map +1 -1
- package/lib/components/fabrication-note-dimension.ts +41 -0
- package/lib/components/fabrication-note-text.ts +24 -2
- package/lib/components/pcb-note-dimension.ts +38 -0
- package/lib/components/pcb-note-line.ts +31 -0
- package/lib/components/pcb-note-path.ts +27 -0
- package/lib/components/pcb-note-rect.ts +30 -0
- package/lib/components/pcb-note-text.ts +31 -0
- package/lib/index.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import * as react from 'react';
|
|
3
3
|
import { ReactElement } from 'react';
|
|
4
|
-
import { LayerRef, LayerRefInput, Point as Point$1, RouteHintPoint, PcbTrace, AnySourceComponent } from 'circuit-json';
|
|
4
|
+
import { LayerRef, LayerRefInput, Point as Point$1, RouteHintPoint, PcbTrace, AnySourceComponent, RouteHintPointInput } from 'circuit-json';
|
|
5
5
|
|
|
6
6
|
declare const direction: z.ZodEnum<["up", "down", "left", "right"]>;
|
|
7
7
|
type Direction = "up" | "down" | "left" | "right";
|
|
@@ -43692,6 +43692,13 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
43692
43692
|
}>;
|
|
43693
43693
|
type InferredSwitchProps = z.infer<typeof switchProps>;
|
|
43694
43694
|
|
|
43695
|
+
interface FabricationNoteTextProps extends PcbLayoutProps {
|
|
43696
|
+
text: string;
|
|
43697
|
+
anchorAlignment?: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right";
|
|
43698
|
+
font?: "tscircuit2024";
|
|
43699
|
+
fontSize?: string | number;
|
|
43700
|
+
color?: string;
|
|
43701
|
+
}
|
|
43695
43702
|
declare const fabricationNoteTextProps: z.ZodObject<{
|
|
43696
43703
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43697
43704
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -43761,7 +43768,7 @@ declare const fabricationNoteTextProps: z.ZodObject<{
|
|
|
43761
43768
|
font?: "tscircuit2024" | undefined;
|
|
43762
43769
|
fontSize?: string | number | undefined;
|
|
43763
43770
|
}>;
|
|
43764
|
-
type
|
|
43771
|
+
type FabricationNoteTextPropsInput = z.input<typeof fabricationNoteTextProps>;
|
|
43765
43772
|
|
|
43766
43773
|
declare const fabricationNoteRectProps: z.ZodObject<Omit<{
|
|
43767
43774
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -43939,6 +43946,120 @@ declare const fabricationNotePathProps: z.ZodObject<Omit<{
|
|
|
43939
43946
|
}>;
|
|
43940
43947
|
type FabricationNotePathProps = z.input<typeof fabricationNotePathProps>;
|
|
43941
43948
|
|
|
43949
|
+
interface FabricationNoteDimensionProps extends Omit<PcbLayoutProps, "pcbX" | "pcbY" | "pcbRotation"> {
|
|
43950
|
+
from: string | Point;
|
|
43951
|
+
to: string | Point;
|
|
43952
|
+
text?: string;
|
|
43953
|
+
offset?: string | number;
|
|
43954
|
+
font?: "tscircuit2024";
|
|
43955
|
+
fontSize?: string | number;
|
|
43956
|
+
color?: string;
|
|
43957
|
+
arrowSize?: string | number;
|
|
43958
|
+
}
|
|
43959
|
+
declare const fabricationNoteDimensionProps: z.ZodObject<Omit<{
|
|
43960
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43961
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43962
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43963
|
+
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
43964
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
43965
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
43966
|
+
}, "strip", z.ZodTypeAny, {
|
|
43967
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
43968
|
+
}, {
|
|
43969
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
43970
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
43971
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
43972
|
+
}>>;
|
|
43973
|
+
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43974
|
+
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43975
|
+
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43976
|
+
pcbMarginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43977
|
+
pcbMarginX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43978
|
+
pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
43979
|
+
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
43980
|
+
relative: z.ZodOptional<z.ZodBoolean>;
|
|
43981
|
+
}, "pcbX" | "pcbY" | "pcbRotation"> & {
|
|
43982
|
+
from: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
43983
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
43984
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
43985
|
+
}, "strip", z.ZodTypeAny, {
|
|
43986
|
+
x: number;
|
|
43987
|
+
y: number;
|
|
43988
|
+
}, {
|
|
43989
|
+
x: string | number;
|
|
43990
|
+
y: string | number;
|
|
43991
|
+
}>]>;
|
|
43992
|
+
to: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
43993
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
43994
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
43995
|
+
}, "strip", z.ZodTypeAny, {
|
|
43996
|
+
x: number;
|
|
43997
|
+
y: number;
|
|
43998
|
+
}, {
|
|
43999
|
+
x: string | number;
|
|
44000
|
+
y: string | number;
|
|
44001
|
+
}>]>;
|
|
44002
|
+
text: z.ZodOptional<z.ZodString>;
|
|
44003
|
+
offset: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
44004
|
+
font: z.ZodOptional<z.ZodEnum<["tscircuit2024"]>>;
|
|
44005
|
+
fontSize: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
44006
|
+
color: z.ZodOptional<z.ZodString>;
|
|
44007
|
+
arrowSize: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
44008
|
+
}, "strip", z.ZodTypeAny, {
|
|
44009
|
+
from: string | {
|
|
44010
|
+
x: number;
|
|
44011
|
+
y: number;
|
|
44012
|
+
};
|
|
44013
|
+
to: string | {
|
|
44014
|
+
x: number;
|
|
44015
|
+
y: number;
|
|
44016
|
+
};
|
|
44017
|
+
pcbPositionAnchor?: string | undefined;
|
|
44018
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
44019
|
+
pcbMarginTop?: number | undefined;
|
|
44020
|
+
pcbMarginRight?: number | undefined;
|
|
44021
|
+
pcbMarginBottom?: number | undefined;
|
|
44022
|
+
pcbMarginLeft?: number | undefined;
|
|
44023
|
+
pcbMarginX?: number | undefined;
|
|
44024
|
+
pcbMarginY?: number | undefined;
|
|
44025
|
+
pcbRelative?: boolean | undefined;
|
|
44026
|
+
relative?: boolean | undefined;
|
|
44027
|
+
color?: string | undefined;
|
|
44028
|
+
text?: string | undefined;
|
|
44029
|
+
font?: "tscircuit2024" | undefined;
|
|
44030
|
+
fontSize?: number | undefined;
|
|
44031
|
+
offset?: number | undefined;
|
|
44032
|
+
arrowSize?: number | undefined;
|
|
44033
|
+
}, {
|
|
44034
|
+
from: string | {
|
|
44035
|
+
x: string | number;
|
|
44036
|
+
y: string | number;
|
|
44037
|
+
};
|
|
44038
|
+
to: string | {
|
|
44039
|
+
x: string | number;
|
|
44040
|
+
y: string | number;
|
|
44041
|
+
};
|
|
44042
|
+
pcbPositionAnchor?: string | undefined;
|
|
44043
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
44044
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
44045
|
+
} | undefined;
|
|
44046
|
+
pcbMarginTop?: string | number | undefined;
|
|
44047
|
+
pcbMarginRight?: string | number | undefined;
|
|
44048
|
+
pcbMarginBottom?: string | number | undefined;
|
|
44049
|
+
pcbMarginLeft?: string | number | undefined;
|
|
44050
|
+
pcbMarginX?: string | number | undefined;
|
|
44051
|
+
pcbMarginY?: string | number | undefined;
|
|
44052
|
+
pcbRelative?: boolean | undefined;
|
|
44053
|
+
relative?: boolean | undefined;
|
|
44054
|
+
color?: string | undefined;
|
|
44055
|
+
text?: string | undefined;
|
|
44056
|
+
font?: "tscircuit2024" | undefined;
|
|
44057
|
+
fontSize?: string | number | undefined;
|
|
44058
|
+
offset?: string | number | undefined;
|
|
44059
|
+
arrowSize?: string | number | undefined;
|
|
44060
|
+
}>;
|
|
44061
|
+
type FabricationNoteDimensionPropsInput = z.input<typeof fabricationNoteDimensionProps>;
|
|
44062
|
+
|
|
43942
44063
|
declare const pcbTraceProps: z.ZodObject<{
|
|
43943
44064
|
layer: z.ZodOptional<z.ZodString>;
|
|
43944
44065
|
thickness: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -49981,7 +50102,6 @@ declare const traceHintProps: z.ZodObject<{
|
|
|
49981
50102
|
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
49982
50103
|
}[] | undefined;
|
|
49983
50104
|
for?: string | undefined;
|
|
49984
|
-
order?: number | undefined;
|
|
49985
50105
|
offset?: {
|
|
49986
50106
|
x: number;
|
|
49987
50107
|
y: number;
|
|
@@ -49994,6 +50114,7 @@ declare const traceHintProps: z.ZodObject<{
|
|
|
49994
50114
|
via?: boolean | undefined;
|
|
49995
50115
|
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
49996
50116
|
} | undefined;
|
|
50117
|
+
order?: number | undefined;
|
|
49997
50118
|
traceWidth?: number | undefined;
|
|
49998
50119
|
}, {
|
|
49999
50120
|
offsets?: {
|
|
@@ -50013,7 +50134,6 @@ declare const traceHintProps: z.ZodObject<{
|
|
|
50013
50134
|
} | undefined;
|
|
50014
50135
|
}[] | undefined;
|
|
50015
50136
|
for?: string | undefined;
|
|
50016
|
-
order?: number | undefined;
|
|
50017
50137
|
offset?: {
|
|
50018
50138
|
x: string | number;
|
|
50019
50139
|
y: string | number;
|
|
@@ -50030,6 +50150,7 @@ declare const traceHintProps: z.ZodObject<{
|
|
|
50030
50150
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50031
50151
|
} | undefined;
|
|
50032
50152
|
} | undefined;
|
|
50153
|
+
order?: number | undefined;
|
|
50033
50154
|
traceWidth?: number | undefined;
|
|
50034
50155
|
}>;
|
|
50035
50156
|
type TraceHintProps = z.input<typeof traceHintProps>;
|
|
@@ -50141,6 +50262,468 @@ declare const portProps: z.ZodObject<{
|
|
|
50141
50262
|
}>;
|
|
50142
50263
|
type PortProps = z.input<typeof portProps>;
|
|
50143
50264
|
|
|
50265
|
+
interface PcbNoteTextProps extends PcbLayoutProps {
|
|
50266
|
+
text: string;
|
|
50267
|
+
anchorAlignment?: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right";
|
|
50268
|
+
font?: "tscircuit2024";
|
|
50269
|
+
fontSize?: string | number;
|
|
50270
|
+
color?: string;
|
|
50271
|
+
}
|
|
50272
|
+
declare const pcbNoteTextProps: z.ZodObject<{
|
|
50273
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50274
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50275
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50276
|
+
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
50277
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
50278
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
50279
|
+
}, "strip", z.ZodTypeAny, {
|
|
50280
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50281
|
+
}, {
|
|
50282
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50283
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
50284
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50285
|
+
}>>;
|
|
50286
|
+
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50287
|
+
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50288
|
+
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50289
|
+
pcbMarginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50290
|
+
pcbMarginX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50291
|
+
pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50292
|
+
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
50293
|
+
relative: z.ZodOptional<z.ZodBoolean>;
|
|
50294
|
+
} & {
|
|
50295
|
+
text: z.ZodString;
|
|
50296
|
+
anchorAlignment: z.ZodDefault<z.ZodEnum<["center", "top_left", "top_right", "bottom_left", "bottom_right"]>>;
|
|
50297
|
+
font: z.ZodOptional<z.ZodEnum<["tscircuit2024"]>>;
|
|
50298
|
+
fontSize: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50299
|
+
color: z.ZodOptional<z.ZodString>;
|
|
50300
|
+
}, "strip", z.ZodTypeAny, {
|
|
50301
|
+
text: string;
|
|
50302
|
+
anchorAlignment: "top_left" | "top_right" | "center" | "bottom_left" | "bottom_right";
|
|
50303
|
+
pcbX?: number | undefined;
|
|
50304
|
+
pcbY?: number | undefined;
|
|
50305
|
+
pcbRotation?: number | undefined;
|
|
50306
|
+
pcbPositionAnchor?: string | undefined;
|
|
50307
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
50308
|
+
pcbMarginTop?: number | undefined;
|
|
50309
|
+
pcbMarginRight?: number | undefined;
|
|
50310
|
+
pcbMarginBottom?: number | undefined;
|
|
50311
|
+
pcbMarginLeft?: number | undefined;
|
|
50312
|
+
pcbMarginX?: number | undefined;
|
|
50313
|
+
pcbMarginY?: number | undefined;
|
|
50314
|
+
pcbRelative?: boolean | undefined;
|
|
50315
|
+
relative?: boolean | undefined;
|
|
50316
|
+
color?: string | undefined;
|
|
50317
|
+
font?: "tscircuit2024" | undefined;
|
|
50318
|
+
fontSize?: number | undefined;
|
|
50319
|
+
}, {
|
|
50320
|
+
text: string;
|
|
50321
|
+
pcbX?: string | number | undefined;
|
|
50322
|
+
pcbY?: string | number | undefined;
|
|
50323
|
+
pcbRotation?: string | number | undefined;
|
|
50324
|
+
pcbPositionAnchor?: string | undefined;
|
|
50325
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
50326
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50327
|
+
} | undefined;
|
|
50328
|
+
pcbMarginTop?: string | number | undefined;
|
|
50329
|
+
pcbMarginRight?: string | number | undefined;
|
|
50330
|
+
pcbMarginBottom?: string | number | undefined;
|
|
50331
|
+
pcbMarginLeft?: string | number | undefined;
|
|
50332
|
+
pcbMarginX?: string | number | undefined;
|
|
50333
|
+
pcbMarginY?: string | number | undefined;
|
|
50334
|
+
pcbRelative?: boolean | undefined;
|
|
50335
|
+
relative?: boolean | undefined;
|
|
50336
|
+
color?: string | undefined;
|
|
50337
|
+
anchorAlignment?: "top_left" | "top_right" | "center" | "bottom_left" | "bottom_right" | undefined;
|
|
50338
|
+
font?: "tscircuit2024" | undefined;
|
|
50339
|
+
fontSize?: string | number | undefined;
|
|
50340
|
+
}>;
|
|
50341
|
+
type PcbNoteTextPropsInput = z.input<typeof pcbNoteTextProps>;
|
|
50342
|
+
|
|
50343
|
+
interface PcbNoteRectProps extends Omit<PcbLayoutProps, "pcbRotation"> {
|
|
50344
|
+
width: string | number;
|
|
50345
|
+
height: string | number;
|
|
50346
|
+
strokeWidth?: string | number;
|
|
50347
|
+
isFilled?: boolean;
|
|
50348
|
+
hasStroke?: boolean;
|
|
50349
|
+
isStrokeDashed?: boolean;
|
|
50350
|
+
color?: string;
|
|
50351
|
+
}
|
|
50352
|
+
declare const pcbNoteRectProps: z.ZodObject<Omit<{
|
|
50353
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50354
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50355
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50356
|
+
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
50357
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
50358
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
50359
|
+
}, "strip", z.ZodTypeAny, {
|
|
50360
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50361
|
+
}, {
|
|
50362
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50363
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
50364
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50365
|
+
}>>;
|
|
50366
|
+
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50367
|
+
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50368
|
+
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50369
|
+
pcbMarginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50370
|
+
pcbMarginX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50371
|
+
pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50372
|
+
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
50373
|
+
relative: z.ZodOptional<z.ZodBoolean>;
|
|
50374
|
+
}, "pcbRotation"> & {
|
|
50375
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
50376
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
50377
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50378
|
+
isFilled: z.ZodOptional<z.ZodBoolean>;
|
|
50379
|
+
hasStroke: z.ZodOptional<z.ZodBoolean>;
|
|
50380
|
+
isStrokeDashed: z.ZodOptional<z.ZodBoolean>;
|
|
50381
|
+
color: z.ZodOptional<z.ZodString>;
|
|
50382
|
+
}, "strip", z.ZodTypeAny, {
|
|
50383
|
+
width: number;
|
|
50384
|
+
height: number;
|
|
50385
|
+
pcbX?: number | undefined;
|
|
50386
|
+
pcbY?: number | undefined;
|
|
50387
|
+
pcbPositionAnchor?: string | undefined;
|
|
50388
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
50389
|
+
pcbMarginTop?: number | undefined;
|
|
50390
|
+
pcbMarginRight?: number | undefined;
|
|
50391
|
+
pcbMarginBottom?: number | undefined;
|
|
50392
|
+
pcbMarginLeft?: number | undefined;
|
|
50393
|
+
pcbMarginX?: number | undefined;
|
|
50394
|
+
pcbMarginY?: number | undefined;
|
|
50395
|
+
pcbRelative?: boolean | undefined;
|
|
50396
|
+
relative?: boolean | undefined;
|
|
50397
|
+
strokeWidth?: number | undefined;
|
|
50398
|
+
color?: string | undefined;
|
|
50399
|
+
isFilled?: boolean | undefined;
|
|
50400
|
+
hasStroke?: boolean | undefined;
|
|
50401
|
+
isStrokeDashed?: boolean | undefined;
|
|
50402
|
+
}, {
|
|
50403
|
+
width: string | number;
|
|
50404
|
+
height: string | number;
|
|
50405
|
+
pcbX?: string | number | undefined;
|
|
50406
|
+
pcbY?: string | number | undefined;
|
|
50407
|
+
pcbPositionAnchor?: string | undefined;
|
|
50408
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
50409
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50410
|
+
} | undefined;
|
|
50411
|
+
pcbMarginTop?: string | number | undefined;
|
|
50412
|
+
pcbMarginRight?: string | number | undefined;
|
|
50413
|
+
pcbMarginBottom?: string | number | undefined;
|
|
50414
|
+
pcbMarginLeft?: string | number | undefined;
|
|
50415
|
+
pcbMarginX?: string | number | undefined;
|
|
50416
|
+
pcbMarginY?: string | number | undefined;
|
|
50417
|
+
pcbRelative?: boolean | undefined;
|
|
50418
|
+
relative?: boolean | undefined;
|
|
50419
|
+
strokeWidth?: string | number | undefined;
|
|
50420
|
+
color?: string | undefined;
|
|
50421
|
+
isFilled?: boolean | undefined;
|
|
50422
|
+
hasStroke?: boolean | undefined;
|
|
50423
|
+
isStrokeDashed?: boolean | undefined;
|
|
50424
|
+
}>;
|
|
50425
|
+
type PcbNoteRectPropsInput = z.input<typeof pcbNoteRectProps>;
|
|
50426
|
+
|
|
50427
|
+
interface PcbNotePathProps extends Omit<PcbLayoutProps, "pcbX" | "pcbY" | "pcbRotation"> {
|
|
50428
|
+
route: RouteHintPointInput[];
|
|
50429
|
+
strokeWidth?: string | number;
|
|
50430
|
+
color?: string;
|
|
50431
|
+
}
|
|
50432
|
+
declare const pcbNotePathProps: z.ZodObject<Omit<{
|
|
50433
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50434
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50435
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50436
|
+
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
50437
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
50438
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
50439
|
+
}, "strip", z.ZodTypeAny, {
|
|
50440
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50441
|
+
}, {
|
|
50442
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50443
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
50444
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50445
|
+
}>>;
|
|
50446
|
+
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50447
|
+
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50448
|
+
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50449
|
+
pcbMarginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50450
|
+
pcbMarginX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50451
|
+
pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50452
|
+
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
50453
|
+
relative: z.ZodOptional<z.ZodBoolean>;
|
|
50454
|
+
}, "pcbX" | "pcbY" | "pcbRotation"> & {
|
|
50455
|
+
route: z.ZodArray<z.ZodObject<{
|
|
50456
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
50457
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
50458
|
+
via: z.ZodOptional<z.ZodBoolean>;
|
|
50459
|
+
to_layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
50460
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
50461
|
+
}, "strip", z.ZodTypeAny, {
|
|
50462
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50463
|
+
}, {
|
|
50464
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50465
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
50466
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50467
|
+
}>>;
|
|
50468
|
+
trace_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50469
|
+
}, "strip", z.ZodTypeAny, {
|
|
50470
|
+
x: number;
|
|
50471
|
+
y: number;
|
|
50472
|
+
via?: boolean | undefined;
|
|
50473
|
+
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
50474
|
+
trace_width?: number | undefined;
|
|
50475
|
+
}, {
|
|
50476
|
+
x: string | number;
|
|
50477
|
+
y: string | number;
|
|
50478
|
+
via?: boolean | undefined;
|
|
50479
|
+
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
50480
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50481
|
+
} | undefined;
|
|
50482
|
+
trace_width?: string | number | undefined;
|
|
50483
|
+
}>, "many">;
|
|
50484
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50485
|
+
color: z.ZodOptional<z.ZodString>;
|
|
50486
|
+
}, "strip", z.ZodTypeAny, {
|
|
50487
|
+
route: {
|
|
50488
|
+
x: number;
|
|
50489
|
+
y: number;
|
|
50490
|
+
via?: boolean | undefined;
|
|
50491
|
+
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
50492
|
+
trace_width?: number | undefined;
|
|
50493
|
+
}[];
|
|
50494
|
+
pcbPositionAnchor?: string | undefined;
|
|
50495
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
50496
|
+
pcbMarginTop?: number | undefined;
|
|
50497
|
+
pcbMarginRight?: number | undefined;
|
|
50498
|
+
pcbMarginBottom?: number | undefined;
|
|
50499
|
+
pcbMarginLeft?: number | undefined;
|
|
50500
|
+
pcbMarginX?: number | undefined;
|
|
50501
|
+
pcbMarginY?: number | undefined;
|
|
50502
|
+
pcbRelative?: boolean | undefined;
|
|
50503
|
+
relative?: boolean | undefined;
|
|
50504
|
+
strokeWidth?: number | undefined;
|
|
50505
|
+
color?: string | undefined;
|
|
50506
|
+
}, {
|
|
50507
|
+
route: {
|
|
50508
|
+
x: string | number;
|
|
50509
|
+
y: string | number;
|
|
50510
|
+
via?: boolean | undefined;
|
|
50511
|
+
to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
50512
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50513
|
+
} | undefined;
|
|
50514
|
+
trace_width?: string | number | undefined;
|
|
50515
|
+
}[];
|
|
50516
|
+
pcbPositionAnchor?: string | undefined;
|
|
50517
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
50518
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50519
|
+
} | undefined;
|
|
50520
|
+
pcbMarginTop?: string | number | undefined;
|
|
50521
|
+
pcbMarginRight?: string | number | undefined;
|
|
50522
|
+
pcbMarginBottom?: string | number | undefined;
|
|
50523
|
+
pcbMarginLeft?: string | number | undefined;
|
|
50524
|
+
pcbMarginX?: string | number | undefined;
|
|
50525
|
+
pcbMarginY?: string | number | undefined;
|
|
50526
|
+
pcbRelative?: boolean | undefined;
|
|
50527
|
+
relative?: boolean | undefined;
|
|
50528
|
+
strokeWidth?: string | number | undefined;
|
|
50529
|
+
color?: string | undefined;
|
|
50530
|
+
}>;
|
|
50531
|
+
type PcbNotePathPropsInput = z.input<typeof pcbNotePathProps>;
|
|
50532
|
+
|
|
50533
|
+
interface PcbNoteLineProps extends Omit<PcbLayoutProps, "pcbX" | "pcbY" | "pcbRotation"> {
|
|
50534
|
+
x1: string | number;
|
|
50535
|
+
y1: string | number;
|
|
50536
|
+
x2: string | number;
|
|
50537
|
+
y2: string | number;
|
|
50538
|
+
strokeWidth?: string | number;
|
|
50539
|
+
color?: string;
|
|
50540
|
+
isDashed?: boolean;
|
|
50541
|
+
}
|
|
50542
|
+
declare const pcbNoteLineProps: z.ZodObject<Omit<{
|
|
50543
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50544
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50545
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50546
|
+
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
50547
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
50548
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
50549
|
+
}, "strip", z.ZodTypeAny, {
|
|
50550
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50551
|
+
}, {
|
|
50552
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50553
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
50554
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50555
|
+
}>>;
|
|
50556
|
+
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50557
|
+
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50558
|
+
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50559
|
+
pcbMarginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50560
|
+
pcbMarginX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50561
|
+
pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50562
|
+
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
50563
|
+
relative: z.ZodOptional<z.ZodBoolean>;
|
|
50564
|
+
}, "pcbX" | "pcbY" | "pcbRotation"> & {
|
|
50565
|
+
x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
50566
|
+
y1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
50567
|
+
x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
50568
|
+
y2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
50569
|
+
strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50570
|
+
color: z.ZodOptional<z.ZodString>;
|
|
50571
|
+
isDashed: z.ZodOptional<z.ZodBoolean>;
|
|
50572
|
+
}, "strip", z.ZodTypeAny, {
|
|
50573
|
+
x1: number;
|
|
50574
|
+
y1: number;
|
|
50575
|
+
x2: number;
|
|
50576
|
+
y2: number;
|
|
50577
|
+
pcbPositionAnchor?: string | undefined;
|
|
50578
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
50579
|
+
pcbMarginTop?: number | undefined;
|
|
50580
|
+
pcbMarginRight?: number | undefined;
|
|
50581
|
+
pcbMarginBottom?: number | undefined;
|
|
50582
|
+
pcbMarginLeft?: number | undefined;
|
|
50583
|
+
pcbMarginX?: number | undefined;
|
|
50584
|
+
pcbMarginY?: number | undefined;
|
|
50585
|
+
pcbRelative?: boolean | undefined;
|
|
50586
|
+
relative?: boolean | undefined;
|
|
50587
|
+
strokeWidth?: number | undefined;
|
|
50588
|
+
color?: string | undefined;
|
|
50589
|
+
isDashed?: boolean | undefined;
|
|
50590
|
+
}, {
|
|
50591
|
+
x1: string | number;
|
|
50592
|
+
y1: string | number;
|
|
50593
|
+
x2: string | number;
|
|
50594
|
+
y2: string | number;
|
|
50595
|
+
pcbPositionAnchor?: string | undefined;
|
|
50596
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
50597
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50598
|
+
} | undefined;
|
|
50599
|
+
pcbMarginTop?: string | number | undefined;
|
|
50600
|
+
pcbMarginRight?: string | number | undefined;
|
|
50601
|
+
pcbMarginBottom?: string | number | undefined;
|
|
50602
|
+
pcbMarginLeft?: string | number | undefined;
|
|
50603
|
+
pcbMarginX?: string | number | undefined;
|
|
50604
|
+
pcbMarginY?: string | number | undefined;
|
|
50605
|
+
pcbRelative?: boolean | undefined;
|
|
50606
|
+
relative?: boolean | undefined;
|
|
50607
|
+
strokeWidth?: string | number | undefined;
|
|
50608
|
+
color?: string | undefined;
|
|
50609
|
+
isDashed?: boolean | undefined;
|
|
50610
|
+
}>;
|
|
50611
|
+
type PcbNoteLinePropsInput = z.input<typeof pcbNoteLineProps>;
|
|
50612
|
+
|
|
50613
|
+
interface PcbNoteDimensionProps extends Omit<PcbLayoutProps, "pcbX" | "pcbY" | "pcbRotation"> {
|
|
50614
|
+
from: string | Point;
|
|
50615
|
+
to: string | Point;
|
|
50616
|
+
text?: string;
|
|
50617
|
+
offset?: string | number;
|
|
50618
|
+
font?: "tscircuit2024";
|
|
50619
|
+
fontSize?: string | number;
|
|
50620
|
+
color?: string;
|
|
50621
|
+
arrowSize?: string | number;
|
|
50622
|
+
}
|
|
50623
|
+
declare const pcbNoteDimensionProps: z.ZodObject<Omit<{
|
|
50624
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50625
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50626
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50627
|
+
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
50628
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
50629
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
50630
|
+
}, "strip", z.ZodTypeAny, {
|
|
50631
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50632
|
+
}, {
|
|
50633
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50634
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
50635
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50636
|
+
}>>;
|
|
50637
|
+
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50638
|
+
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50639
|
+
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50640
|
+
pcbMarginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50641
|
+
pcbMarginX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50642
|
+
pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50643
|
+
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
50644
|
+
relative: z.ZodOptional<z.ZodBoolean>;
|
|
50645
|
+
}, "pcbX" | "pcbY" | "pcbRotation"> & {
|
|
50646
|
+
from: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
50647
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
50648
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
50649
|
+
}, "strip", z.ZodTypeAny, {
|
|
50650
|
+
x: number;
|
|
50651
|
+
y: number;
|
|
50652
|
+
}, {
|
|
50653
|
+
x: string | number;
|
|
50654
|
+
y: string | number;
|
|
50655
|
+
}>]>;
|
|
50656
|
+
to: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
50657
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
50658
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
50659
|
+
}, "strip", z.ZodTypeAny, {
|
|
50660
|
+
x: number;
|
|
50661
|
+
y: number;
|
|
50662
|
+
}, {
|
|
50663
|
+
x: string | number;
|
|
50664
|
+
y: string | number;
|
|
50665
|
+
}>]>;
|
|
50666
|
+
text: z.ZodOptional<z.ZodString>;
|
|
50667
|
+
offset: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50668
|
+
font: z.ZodOptional<z.ZodEnum<["tscircuit2024"]>>;
|
|
50669
|
+
fontSize: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50670
|
+
color: z.ZodOptional<z.ZodString>;
|
|
50671
|
+
arrowSize: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50672
|
+
}, "strip", z.ZodTypeAny, {
|
|
50673
|
+
from: string | {
|
|
50674
|
+
x: number;
|
|
50675
|
+
y: number;
|
|
50676
|
+
};
|
|
50677
|
+
to: string | {
|
|
50678
|
+
x: number;
|
|
50679
|
+
y: number;
|
|
50680
|
+
};
|
|
50681
|
+
pcbPositionAnchor?: string | undefined;
|
|
50682
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
50683
|
+
pcbMarginTop?: number | undefined;
|
|
50684
|
+
pcbMarginRight?: number | undefined;
|
|
50685
|
+
pcbMarginBottom?: number | undefined;
|
|
50686
|
+
pcbMarginLeft?: number | undefined;
|
|
50687
|
+
pcbMarginX?: number | undefined;
|
|
50688
|
+
pcbMarginY?: number | undefined;
|
|
50689
|
+
pcbRelative?: boolean | undefined;
|
|
50690
|
+
relative?: boolean | undefined;
|
|
50691
|
+
color?: string | undefined;
|
|
50692
|
+
text?: string | undefined;
|
|
50693
|
+
font?: "tscircuit2024" | undefined;
|
|
50694
|
+
fontSize?: number | undefined;
|
|
50695
|
+
offset?: number | undefined;
|
|
50696
|
+
arrowSize?: number | undefined;
|
|
50697
|
+
}, {
|
|
50698
|
+
from: string | {
|
|
50699
|
+
x: string | number;
|
|
50700
|
+
y: string | number;
|
|
50701
|
+
};
|
|
50702
|
+
to: string | {
|
|
50703
|
+
x: string | number;
|
|
50704
|
+
y: string | number;
|
|
50705
|
+
};
|
|
50706
|
+
pcbPositionAnchor?: string | undefined;
|
|
50707
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
50708
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
50709
|
+
} | undefined;
|
|
50710
|
+
pcbMarginTop?: string | number | undefined;
|
|
50711
|
+
pcbMarginRight?: string | number | undefined;
|
|
50712
|
+
pcbMarginBottom?: string | number | undefined;
|
|
50713
|
+
pcbMarginLeft?: string | number | undefined;
|
|
50714
|
+
pcbMarginX?: string | number | undefined;
|
|
50715
|
+
pcbMarginY?: string | number | undefined;
|
|
50716
|
+
pcbRelative?: boolean | undefined;
|
|
50717
|
+
relative?: boolean | undefined;
|
|
50718
|
+
color?: string | undefined;
|
|
50719
|
+
text?: string | undefined;
|
|
50720
|
+
font?: "tscircuit2024" | undefined;
|
|
50721
|
+
fontSize?: string | number | undefined;
|
|
50722
|
+
offset?: string | number | undefined;
|
|
50723
|
+
arrowSize?: string | number | undefined;
|
|
50724
|
+
}>;
|
|
50725
|
+
type PcbNoteDimensionPropsInput = z.input<typeof pcbNoteDimensionProps>;
|
|
50726
|
+
|
|
50144
50727
|
interface FootprintLibraryResult {
|
|
50145
50728
|
footprintCircuitJson: any[];
|
|
50146
50729
|
cadModel?: CadModelProp;
|
|
@@ -50194,4 +50777,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
50194
50777
|
}
|
|
50195
50778
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
50196
50779
|
|
|
50197
|
-
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 };
|
|
50780
|
+
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 FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, 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 PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, 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, fabricationNoteDimensionProps, 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, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, 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 };
|