@tscircuit/props 0.0.580 → 0.0.581
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 -12
- package/dist/index.d.ts +94 -71
- package/dist/index.js +1017 -1003
- package/dist/index.js.map +1 -1
- package/lib/assembly/device.ts +15 -0
- package/lib/assembly/index.ts +7 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -97,6 +97,29 @@ declare const commonShapeProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
97
97
|
radius: string | number;
|
|
98
98
|
}>]>;
|
|
99
99
|
|
|
100
|
+
interface AssemblyDeviceProps {
|
|
101
|
+
/** Product-level assembly identity. */
|
|
102
|
+
name?: string;
|
|
103
|
+
}
|
|
104
|
+
declare const assemblyDeviceProps: z.ZodObject<{
|
|
105
|
+
name: z.ZodOptional<z.ZodString>;
|
|
106
|
+
}, "strip", z.ZodTypeAny, {
|
|
107
|
+
name?: string | undefined;
|
|
108
|
+
}, {
|
|
109
|
+
name?: string | undefined;
|
|
110
|
+
}>;
|
|
111
|
+
type AssemblyDevicePropsInput = z.input<typeof assemblyDeviceProps>;
|
|
112
|
+
|
|
113
|
+
declare const assemblyProps: {
|
|
114
|
+
readonly device: zod.ZodObject<{
|
|
115
|
+
name: zod.ZodOptional<zod.ZodString>;
|
|
116
|
+
}, "strip", zod.ZodTypeAny, {
|
|
117
|
+
name?: string | undefined;
|
|
118
|
+
}, {
|
|
119
|
+
name?: string | undefined;
|
|
120
|
+
}>;
|
|
121
|
+
};
|
|
122
|
+
|
|
100
123
|
declare const enclosureCutoutApertureShapes: readonly ["pill", "rect", "circle"];
|
|
101
124
|
type EnclosureCutoutApertureShape = CommonShapeProps["shape"];
|
|
102
125
|
/**
|
|
@@ -18817,9 +18840,9 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
18817
18840
|
symbol?: SymbolProp | undefined;
|
|
18818
18841
|
width?: number | undefined;
|
|
18819
18842
|
height?: number | undefined;
|
|
18843
|
+
name?: string | undefined;
|
|
18820
18844
|
key?: any;
|
|
18821
18845
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
18822
|
-
name?: string | undefined;
|
|
18823
18846
|
pcbX?: string | number | undefined;
|
|
18824
18847
|
pcbY?: string | number | undefined;
|
|
18825
18848
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -19075,11 +19098,11 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
19075
19098
|
symbol?: SymbolProp | undefined;
|
|
19076
19099
|
width?: string | number | undefined;
|
|
19077
19100
|
height?: string | number | undefined;
|
|
19101
|
+
name?: string | undefined;
|
|
19078
19102
|
key?: any;
|
|
19079
19103
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
19080
19104
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
19081
19105
|
} | undefined;
|
|
19082
|
-
name?: string | undefined;
|
|
19083
19106
|
pcbX?: string | number | undefined;
|
|
19084
19107
|
pcbY?: string | number | undefined;
|
|
19085
19108
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -20102,9 +20125,9 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20102
20125
|
symbol?: SymbolProp | undefined;
|
|
20103
20126
|
width?: number | undefined;
|
|
20104
20127
|
height?: number | undefined;
|
|
20128
|
+
name?: string | undefined;
|
|
20105
20129
|
key?: any;
|
|
20106
20130
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
20107
|
-
name?: string | undefined;
|
|
20108
20131
|
pcbX?: string | number | undefined;
|
|
20109
20132
|
pcbY?: string | number | undefined;
|
|
20110
20133
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -20420,11 +20443,11 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20420
20443
|
symbol?: SymbolProp | undefined;
|
|
20421
20444
|
width?: string | number | undefined;
|
|
20422
20445
|
height?: string | number | undefined;
|
|
20446
|
+
name?: string | undefined;
|
|
20423
20447
|
key?: any;
|
|
20424
20448
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
20425
20449
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
20426
20450
|
} | undefined;
|
|
20427
|
-
name?: string | undefined;
|
|
20428
20451
|
pcbX?: string | number | undefined;
|
|
20429
20452
|
pcbY?: string | number | undefined;
|
|
20430
20453
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -21511,9 +21534,9 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21511
21534
|
symbol?: SymbolProp | undefined;
|
|
21512
21535
|
width?: number | undefined;
|
|
21513
21536
|
height?: number | undefined;
|
|
21537
|
+
name?: string | undefined;
|
|
21514
21538
|
key?: any;
|
|
21515
21539
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
21516
|
-
name?: string | undefined;
|
|
21517
21540
|
pcbX?: string | number | undefined;
|
|
21518
21541
|
pcbY?: string | number | undefined;
|
|
21519
21542
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -21830,11 +21853,11 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21830
21853
|
symbol?: SymbolProp | undefined;
|
|
21831
21854
|
width?: string | number | undefined;
|
|
21832
21855
|
height?: string | number | undefined;
|
|
21856
|
+
name?: string | undefined;
|
|
21833
21857
|
key?: any;
|
|
21834
21858
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
21835
21859
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
21836
21860
|
} | undefined;
|
|
21837
|
-
name?: string | undefined;
|
|
21838
21861
|
pcbX?: string | number | undefined;
|
|
21839
21862
|
pcbY?: string | number | undefined;
|
|
21840
21863
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -22716,9 +22739,9 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22716
22739
|
symbol?: SymbolProp | undefined;
|
|
22717
22740
|
width?: number | undefined;
|
|
22718
22741
|
height?: number | undefined;
|
|
22742
|
+
name?: string | undefined;
|
|
22719
22743
|
key?: any;
|
|
22720
22744
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
22721
|
-
name?: string | undefined;
|
|
22722
22745
|
pcbX?: string | number | undefined;
|
|
22723
22746
|
pcbY?: string | number | undefined;
|
|
22724
22747
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -22975,11 +22998,11 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22975
22998
|
symbol?: SymbolProp | undefined;
|
|
22976
22999
|
width?: string | number | undefined;
|
|
22977
23000
|
height?: string | number | undefined;
|
|
23001
|
+
name?: string | undefined;
|
|
22978
23002
|
key?: any;
|
|
22979
23003
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
22980
23004
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
22981
23005
|
} | undefined;
|
|
22982
|
-
name?: string | undefined;
|
|
22983
23006
|
pcbX?: string | number | undefined;
|
|
22984
23007
|
pcbY?: string | number | undefined;
|
|
22985
23008
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -24004,9 +24027,9 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
24004
24027
|
symbol?: SymbolProp | undefined;
|
|
24005
24028
|
width?: number | undefined;
|
|
24006
24029
|
height?: number | undefined;
|
|
24030
|
+
name?: string | undefined;
|
|
24007
24031
|
key?: any;
|
|
24008
24032
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
24009
|
-
name?: string | undefined;
|
|
24010
24033
|
pcbX?: string | number | undefined;
|
|
24011
24034
|
pcbY?: string | number | undefined;
|
|
24012
24035
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -24323,11 +24346,11 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
24323
24346
|
symbol?: SymbolProp | undefined;
|
|
24324
24347
|
width?: string | number | undefined;
|
|
24325
24348
|
height?: string | number | undefined;
|
|
24349
|
+
name?: string | undefined;
|
|
24326
24350
|
key?: any;
|
|
24327
24351
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
24328
24352
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
24329
24353
|
} | undefined;
|
|
24330
|
-
name?: string | undefined;
|
|
24331
24354
|
pcbX?: string | number | undefined;
|
|
24332
24355
|
pcbY?: string | number | undefined;
|
|
24333
24356
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -25471,10 +25494,10 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25471
25494
|
symbol?: SymbolProp | undefined;
|
|
25472
25495
|
width?: number | undefined;
|
|
25473
25496
|
height?: number | undefined;
|
|
25497
|
+
name?: string | undefined;
|
|
25474
25498
|
key?: any;
|
|
25475
25499
|
thickness?: number | undefined;
|
|
25476
25500
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
25477
|
-
name?: string | undefined;
|
|
25478
25501
|
pcbX?: string | number | undefined;
|
|
25479
25502
|
pcbY?: string | number | undefined;
|
|
25480
25503
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -25804,12 +25827,12 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25804
25827
|
symbol?: SymbolProp | undefined;
|
|
25805
25828
|
width?: string | number | undefined;
|
|
25806
25829
|
height?: string | number | undefined;
|
|
25830
|
+
name?: string | undefined;
|
|
25807
25831
|
key?: any;
|
|
25808
25832
|
thickness?: string | number | undefined;
|
|
25809
25833
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
25810
25834
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
25811
25835
|
} | undefined;
|
|
25812
|
-
name?: string | undefined;
|
|
25813
25836
|
layers?: 1 | 2 | 4 | 6 | 8 | undefined;
|
|
25814
25837
|
pcbX?: string | number | undefined;
|
|
25815
25838
|
pcbY?: string | number | undefined;
|
|
@@ -26757,9 +26780,9 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26757
26780
|
symbol?: SymbolProp | undefined;
|
|
26758
26781
|
width?: number | undefined;
|
|
26759
26782
|
height?: number | undefined;
|
|
26783
|
+
name?: string | undefined;
|
|
26760
26784
|
key?: any;
|
|
26761
26785
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
26762
|
-
name?: string | undefined;
|
|
26763
26786
|
pcbX?: string | number | undefined;
|
|
26764
26787
|
pcbY?: string | number | undefined;
|
|
26765
26788
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -27032,11 +27055,11 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
27032
27055
|
symbol?: SymbolProp | undefined;
|
|
27033
27056
|
width?: string | number | undefined;
|
|
27034
27057
|
height?: string | number | undefined;
|
|
27058
|
+
name?: string | undefined;
|
|
27035
27059
|
key?: any;
|
|
27036
27060
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
27037
27061
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
27038
27062
|
} | undefined;
|
|
27039
|
-
name?: string | undefined;
|
|
27040
27063
|
pcbX?: string | number | undefined;
|
|
27041
27064
|
pcbY?: string | number | undefined;
|
|
27042
27065
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -27896,9 +27919,9 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
27896
27919
|
symbol?: SymbolProp | undefined;
|
|
27897
27920
|
width?: number | undefined;
|
|
27898
27921
|
height?: number | undefined;
|
|
27922
|
+
name?: string | undefined;
|
|
27899
27923
|
key?: any;
|
|
27900
27924
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
27901
|
-
name?: string | undefined;
|
|
27902
27925
|
pcbX?: string | number | undefined;
|
|
27903
27926
|
pcbY?: string | number | undefined;
|
|
27904
27927
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -28171,11 +28194,11 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
28171
28194
|
symbol?: SymbolProp | undefined;
|
|
28172
28195
|
width?: string | number | undefined;
|
|
28173
28196
|
height?: string | number | undefined;
|
|
28197
|
+
name?: string | undefined;
|
|
28174
28198
|
key?: any;
|
|
28175
28199
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
28176
28200
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
28177
28201
|
} | undefined;
|
|
28178
|
-
name?: string | undefined;
|
|
28179
28202
|
pcbX?: string | number | undefined;
|
|
28180
28203
|
pcbY?: string | number | undefined;
|
|
28181
28204
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -29222,9 +29245,9 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29222
29245
|
symbol?: SymbolProp | undefined;
|
|
29223
29246
|
width?: number | undefined;
|
|
29224
29247
|
height?: number | undefined;
|
|
29248
|
+
name?: string | undefined;
|
|
29225
29249
|
key?: any;
|
|
29226
29250
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
29227
|
-
name?: string | undefined;
|
|
29228
29251
|
pcbX?: string | number | undefined;
|
|
29229
29252
|
pcbY?: string | number | undefined;
|
|
29230
29253
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -29540,11 +29563,11 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29540
29563
|
symbol?: SymbolProp | undefined;
|
|
29541
29564
|
width?: string | number | undefined;
|
|
29542
29565
|
height?: string | number | undefined;
|
|
29566
|
+
name?: string | undefined;
|
|
29543
29567
|
key?: any;
|
|
29544
29568
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
29545
29569
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
29546
29570
|
} | undefined;
|
|
29547
|
-
name?: string | undefined;
|
|
29548
29571
|
pcbX?: string | number | undefined;
|
|
29549
29572
|
pcbY?: string | number | undefined;
|
|
29550
29573
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -89837,10 +89860,10 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89837
89860
|
symbol?: SymbolProp | undefined;
|
|
89838
89861
|
width?: number | undefined;
|
|
89839
89862
|
height?: number | undefined;
|
|
89863
|
+
name?: string | undefined;
|
|
89840
89864
|
key?: any;
|
|
89841
89865
|
thickness?: number | undefined;
|
|
89842
89866
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
89843
|
-
name?: string | undefined;
|
|
89844
89867
|
pcbX?: string | number | undefined;
|
|
89845
89868
|
pcbY?: string | number | undefined;
|
|
89846
89869
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -90180,12 +90203,12 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
90180
90203
|
symbol?: SymbolProp | undefined;
|
|
90181
90204
|
width?: string | number | undefined;
|
|
90182
90205
|
height?: string | number | undefined;
|
|
90206
|
+
name?: string | undefined;
|
|
90183
90207
|
key?: any;
|
|
90184
90208
|
thickness?: string | number | undefined;
|
|
90185
90209
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
90186
90210
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
90187
90211
|
} | undefined;
|
|
90188
|
-
name?: string | undefined;
|
|
90189
90212
|
layers?: 1 | 2 | 4 | 6 | 8 | undefined;
|
|
90190
90213
|
pcbX?: string | number | undefined;
|
|
90191
90214
|
pcbY?: string | number | undefined;
|
|
@@ -100919,8 +100942,8 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
100919
100942
|
shape: "rect";
|
|
100920
100943
|
width: number;
|
|
100921
100944
|
height: number;
|
|
100922
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
100923
100945
|
name?: string | undefined;
|
|
100946
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
100924
100947
|
pcbX?: string | number | undefined;
|
|
100925
100948
|
pcbY?: string | number | undefined;
|
|
100926
100949
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -100964,10 +100987,10 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
100964
100987
|
shape: "rect";
|
|
100965
100988
|
width: string | number;
|
|
100966
100989
|
height: string | number;
|
|
100990
|
+
name?: string | undefined;
|
|
100967
100991
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
100968
100992
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
100969
100993
|
} | undefined;
|
|
100970
|
-
name?: string | undefined;
|
|
100971
100994
|
pcbX?: string | number | undefined;
|
|
100972
100995
|
pcbY?: string | number | undefined;
|
|
100973
100996
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101092,8 +101115,8 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
101092
101115
|
width: number;
|
|
101093
101116
|
height: number;
|
|
101094
101117
|
ccwRotation: number;
|
|
101095
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101096
101118
|
name?: string | undefined;
|
|
101119
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101097
101120
|
pcbX?: string | number | undefined;
|
|
101098
101121
|
pcbY?: string | number | undefined;
|
|
101099
101122
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101137,10 +101160,10 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
101137
101160
|
width: string | number;
|
|
101138
101161
|
height: string | number;
|
|
101139
101162
|
ccwRotation: number;
|
|
101163
|
+
name?: string | undefined;
|
|
101140
101164
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
101141
101165
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
101142
101166
|
} | undefined;
|
|
101143
|
-
name?: string | undefined;
|
|
101144
101167
|
pcbX?: string | number | undefined;
|
|
101145
101168
|
pcbY?: string | number | undefined;
|
|
101146
101169
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101255,8 +101278,8 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
101255
101278
|
}, "strip", z.ZodTypeAny, {
|
|
101256
101279
|
shape: "circle";
|
|
101257
101280
|
radius: number;
|
|
101258
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101259
101281
|
name?: string | undefined;
|
|
101282
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101260
101283
|
pcbX?: string | number | undefined;
|
|
101261
101284
|
pcbY?: string | number | undefined;
|
|
101262
101285
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101293,10 +101316,10 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
101293
101316
|
}, {
|
|
101294
101317
|
shape: "circle";
|
|
101295
101318
|
radius: string | number;
|
|
101319
|
+
name?: string | undefined;
|
|
101296
101320
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
101297
101321
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
101298
101322
|
} | undefined;
|
|
101299
|
-
name?: string | undefined;
|
|
101300
101323
|
pcbX?: string | number | undefined;
|
|
101301
101324
|
pcbY?: string | number | undefined;
|
|
101302
101325
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101410,8 +101433,8 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
101410
101433
|
width: number;
|
|
101411
101434
|
height: number;
|
|
101412
101435
|
radius: number;
|
|
101413
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101414
101436
|
name?: string | undefined;
|
|
101437
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101415
101438
|
pcbX?: string | number | undefined;
|
|
101416
101439
|
pcbY?: string | number | undefined;
|
|
101417
101440
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101450,10 +101473,10 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
101450
101473
|
width: string | number;
|
|
101451
101474
|
height: string | number;
|
|
101452
101475
|
radius: string | number;
|
|
101476
|
+
name?: string | undefined;
|
|
101453
101477
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
101454
101478
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
101455
101479
|
} | undefined;
|
|
101456
|
-
name?: string | undefined;
|
|
101457
101480
|
pcbX?: string | number | undefined;
|
|
101458
101481
|
pcbY?: string | number | undefined;
|
|
101459
101482
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101575,8 +101598,8 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
101575
101598
|
x: number;
|
|
101576
101599
|
y: number;
|
|
101577
101600
|
}[];
|
|
101578
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101579
101601
|
name?: string | undefined;
|
|
101602
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101580
101603
|
pcbX?: string | number | undefined;
|
|
101581
101604
|
pcbY?: string | number | undefined;
|
|
101582
101605
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101616,10 +101639,10 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
101616
101639
|
x: string | number;
|
|
101617
101640
|
y: string | number;
|
|
101618
101641
|
}[];
|
|
101642
|
+
name?: string | undefined;
|
|
101619
101643
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
101620
101644
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
101621
101645
|
} | undefined;
|
|
101622
|
-
name?: string | undefined;
|
|
101623
101646
|
pcbX?: string | number | undefined;
|
|
101624
101647
|
pcbY?: string | number | undefined;
|
|
101625
101648
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101729,8 +101752,8 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
101729
101752
|
}, "strip", z.ZodTypeAny, {
|
|
101730
101753
|
shape: "circle";
|
|
101731
101754
|
radius: number;
|
|
101732
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101733
101755
|
name?: string | undefined;
|
|
101756
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101734
101757
|
pcbX?: string | number | undefined;
|
|
101735
101758
|
pcbY?: string | number | undefined;
|
|
101736
101759
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101767,10 +101790,10 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
101767
101790
|
}, {
|
|
101768
101791
|
shape: "circle";
|
|
101769
101792
|
radius: string | number;
|
|
101793
|
+
name?: string | undefined;
|
|
101770
101794
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
101771
101795
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
101772
101796
|
} | undefined;
|
|
101773
|
-
name?: string | undefined;
|
|
101774
101797
|
pcbX?: string | number | undefined;
|
|
101775
101798
|
pcbY?: string | number | undefined;
|
|
101776
101799
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101887,8 +101910,8 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
101887
101910
|
shape: "rect";
|
|
101888
101911
|
width: number;
|
|
101889
101912
|
height: number;
|
|
101890
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101891
101913
|
name?: string | undefined;
|
|
101914
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101892
101915
|
pcbX?: string | number | undefined;
|
|
101893
101916
|
pcbY?: string | number | undefined;
|
|
101894
101917
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101932,10 +101955,10 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
101932
101955
|
shape: "rect";
|
|
101933
101956
|
width: string | number;
|
|
101934
101957
|
height: string | number;
|
|
101958
|
+
name?: string | undefined;
|
|
101935
101959
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
101936
101960
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
101937
101961
|
} | undefined;
|
|
101938
|
-
name?: string | undefined;
|
|
101939
101962
|
pcbX?: string | number | undefined;
|
|
101940
101963
|
pcbY?: string | number | undefined;
|
|
101941
101964
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -102059,8 +102082,8 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102059
102082
|
width: number;
|
|
102060
102083
|
height: number;
|
|
102061
102084
|
ccwRotation: number;
|
|
102062
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
102063
102085
|
name?: string | undefined;
|
|
102086
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
102064
102087
|
pcbX?: string | number | undefined;
|
|
102065
102088
|
pcbY?: string | number | undefined;
|
|
102066
102089
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -102104,10 +102127,10 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102104
102127
|
width: string | number;
|
|
102105
102128
|
height: string | number;
|
|
102106
102129
|
ccwRotation: number;
|
|
102130
|
+
name?: string | undefined;
|
|
102107
102131
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
102108
102132
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
102109
102133
|
} | undefined;
|
|
102110
|
-
name?: string | undefined;
|
|
102111
102134
|
pcbX?: string | number | undefined;
|
|
102112
102135
|
pcbY?: string | number | undefined;
|
|
102113
102136
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -102225,8 +102248,8 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102225
102248
|
width: number;
|
|
102226
102249
|
height: number;
|
|
102227
102250
|
radius: number;
|
|
102228
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
102229
102251
|
name?: string | undefined;
|
|
102252
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
102230
102253
|
pcbX?: string | number | undefined;
|
|
102231
102254
|
pcbY?: string | number | undefined;
|
|
102232
102255
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -102265,10 +102288,10 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102265
102288
|
width: string | number;
|
|
102266
102289
|
height: string | number;
|
|
102267
102290
|
radius: string | number;
|
|
102291
|
+
name?: string | undefined;
|
|
102268
102292
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
102269
102293
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
102270
102294
|
} | undefined;
|
|
102271
|
-
name?: string | undefined;
|
|
102272
102295
|
pcbX?: string | number | undefined;
|
|
102273
102296
|
pcbY?: string | number | undefined;
|
|
102274
102297
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -102389,8 +102412,8 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102389
102412
|
x: number;
|
|
102390
102413
|
y: number;
|
|
102391
102414
|
}[];
|
|
102392
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
102393
102415
|
name?: string | undefined;
|
|
102416
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
102394
102417
|
pcbX?: string | number | undefined;
|
|
102395
102418
|
pcbY?: string | number | undefined;
|
|
102396
102419
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -102430,10 +102453,10 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102430
102453
|
x: string | number;
|
|
102431
102454
|
y: string | number;
|
|
102432
102455
|
}[];
|
|
102456
|
+
name?: string | undefined;
|
|
102433
102457
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
102434
102458
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
102435
102459
|
} | undefined;
|
|
102436
|
-
name?: string | undefined;
|
|
102437
102460
|
pcbX?: string | number | undefined;
|
|
102438
102461
|
pcbY?: string | number | undefined;
|
|
102439
102462
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103151,8 +103174,8 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103151
103174
|
}, "strip", z.ZodTypeAny, {
|
|
103152
103175
|
shape?: "circle" | undefined;
|
|
103153
103176
|
radius?: number | undefined;
|
|
103154
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103155
103177
|
name?: string | undefined;
|
|
103178
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103156
103179
|
pcbX?: string | number | undefined;
|
|
103157
103180
|
pcbY?: string | number | undefined;
|
|
103158
103181
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103190,10 +103213,10 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103190
103213
|
}, {
|
|
103191
103214
|
shape?: "circle" | undefined;
|
|
103192
103215
|
radius?: string | number | undefined;
|
|
103216
|
+
name?: string | undefined;
|
|
103193
103217
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
103194
103218
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
103195
103219
|
} | undefined;
|
|
103196
|
-
name?: string | undefined;
|
|
103197
103220
|
pcbX?: string | number | undefined;
|
|
103198
103221
|
pcbY?: string | number | undefined;
|
|
103199
103222
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103232,8 +103255,8 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103232
103255
|
diameter: number;
|
|
103233
103256
|
radius: number;
|
|
103234
103257
|
shape?: "circle" | undefined;
|
|
103235
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103236
103258
|
name?: string | undefined;
|
|
103259
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103237
103260
|
pcbX?: string | number | undefined;
|
|
103238
103261
|
pcbY?: string | number | undefined;
|
|
103239
103262
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103270,10 +103293,10 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103270
103293
|
}, {
|
|
103271
103294
|
shape?: "circle" | undefined;
|
|
103272
103295
|
radius?: string | number | undefined;
|
|
103296
|
+
name?: string | undefined;
|
|
103273
103297
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
103274
103298
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
103275
103299
|
} | undefined;
|
|
103276
|
-
name?: string | undefined;
|
|
103277
103300
|
pcbX?: string | number | undefined;
|
|
103278
103301
|
pcbY?: string | number | undefined;
|
|
103279
103302
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103384,8 +103407,8 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103384
103407
|
shape: "pill";
|
|
103385
103408
|
width: number;
|
|
103386
103409
|
height: number;
|
|
103387
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103388
103410
|
name?: string | undefined;
|
|
103411
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103389
103412
|
pcbX?: string | number | undefined;
|
|
103390
103413
|
pcbY?: string | number | undefined;
|
|
103391
103414
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103423,10 +103446,10 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103423
103446
|
shape: "pill";
|
|
103424
103447
|
width: string | number;
|
|
103425
103448
|
height: string | number;
|
|
103449
|
+
name?: string | undefined;
|
|
103426
103450
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
103427
103451
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
103428
103452
|
} | undefined;
|
|
103429
|
-
name?: string | undefined;
|
|
103430
103453
|
pcbX?: string | number | undefined;
|
|
103431
103454
|
pcbY?: string | number | undefined;
|
|
103432
103455
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103536,8 +103559,8 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103536
103559
|
shape: "oval";
|
|
103537
103560
|
width: number;
|
|
103538
103561
|
height: number;
|
|
103539
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103540
103562
|
name?: string | undefined;
|
|
103563
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103541
103564
|
pcbX?: string | number | undefined;
|
|
103542
103565
|
pcbY?: string | number | undefined;
|
|
103543
103566
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103575,10 +103598,10 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103575
103598
|
shape: "oval";
|
|
103576
103599
|
width: string | number;
|
|
103577
103600
|
height: string | number;
|
|
103601
|
+
name?: string | undefined;
|
|
103578
103602
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
103579
103603
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
103580
103604
|
} | undefined;
|
|
103581
|
-
name?: string | undefined;
|
|
103582
103605
|
pcbX?: string | number | undefined;
|
|
103583
103606
|
pcbY?: string | number | undefined;
|
|
103584
103607
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103688,8 +103711,8 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103688
103711
|
shape: "rect";
|
|
103689
103712
|
width: number;
|
|
103690
103713
|
height: number;
|
|
103691
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103692
103714
|
name?: string | undefined;
|
|
103715
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103693
103716
|
pcbX?: string | number | undefined;
|
|
103694
103717
|
pcbY?: string | number | undefined;
|
|
103695
103718
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103727,10 +103750,10 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103727
103750
|
shape: "rect";
|
|
103728
103751
|
width: string | number;
|
|
103729
103752
|
height: string | number;
|
|
103753
|
+
name?: string | undefined;
|
|
103730
103754
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
103731
103755
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
103732
103756
|
} | undefined;
|
|
103733
|
-
name?: string | undefined;
|
|
103734
103757
|
pcbX?: string | number | undefined;
|
|
103735
103758
|
pcbY?: string | number | undefined;
|
|
103736
103759
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103948,9 +103971,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
103948
103971
|
getPortSelector: () => string;
|
|
103949
103972
|
})[];
|
|
103950
103973
|
width?: number | undefined;
|
|
103974
|
+
name?: string | undefined;
|
|
103951
103975
|
key?: string | undefined;
|
|
103952
103976
|
thickness?: number | undefined;
|
|
103953
|
-
name?: string | undefined;
|
|
103954
103977
|
highlightColor?: string | undefined;
|
|
103955
103978
|
displayName?: string | undefined;
|
|
103956
103979
|
maxLength?: number | undefined;
|
|
@@ -103990,9 +104013,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
103990
104013
|
getPortSelector: () => string;
|
|
103991
104014
|
})[];
|
|
103992
104015
|
width?: string | number | undefined;
|
|
104016
|
+
name?: string | undefined;
|
|
103993
104017
|
key?: string | undefined;
|
|
103994
104018
|
thickness?: string | number | undefined;
|
|
103995
|
-
name?: string | undefined;
|
|
103996
104019
|
highlightColor?: string | undefined;
|
|
103997
104020
|
displayName?: string | undefined;
|
|
103998
104021
|
maxLength?: string | number | undefined;
|
|
@@ -104221,9 +104244,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104221
104244
|
getPortSelector: () => string;
|
|
104222
104245
|
};
|
|
104223
104246
|
width?: number | undefined;
|
|
104247
|
+
name?: string | undefined;
|
|
104224
104248
|
key?: string | undefined;
|
|
104225
104249
|
thickness?: number | undefined;
|
|
104226
|
-
name?: string | undefined;
|
|
104227
104250
|
highlightColor?: string | undefined;
|
|
104228
104251
|
displayName?: string | undefined;
|
|
104229
104252
|
maxLength?: number | undefined;
|
|
@@ -104266,9 +104289,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104266
104289
|
getPortSelector: () => string;
|
|
104267
104290
|
};
|
|
104268
104291
|
width?: string | number | undefined;
|
|
104292
|
+
name?: string | undefined;
|
|
104269
104293
|
key?: string | undefined;
|
|
104270
104294
|
thickness?: string | number | undefined;
|
|
104271
|
-
name?: string | undefined;
|
|
104272
104295
|
highlightColor?: string | undefined;
|
|
104273
104296
|
displayName?: string | undefined;
|
|
104274
104297
|
maxLength?: string | number | undefined;
|
|
@@ -104497,9 +104520,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104497
104520
|
getPortSelector: () => string;
|
|
104498
104521
|
};
|
|
104499
104522
|
width?: number | undefined;
|
|
104523
|
+
name?: string | undefined;
|
|
104500
104524
|
key?: string | undefined;
|
|
104501
104525
|
thickness?: number | undefined;
|
|
104502
|
-
name?: string | undefined;
|
|
104503
104526
|
highlightColor?: string | undefined;
|
|
104504
104527
|
displayName?: string | undefined;
|
|
104505
104528
|
maxLength?: number | undefined;
|
|
@@ -104542,9 +104565,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104542
104565
|
getPortSelector: () => string;
|
|
104543
104566
|
};
|
|
104544
104567
|
width?: string | number | undefined;
|
|
104568
|
+
name?: string | undefined;
|
|
104545
104569
|
key?: string | undefined;
|
|
104546
104570
|
thickness?: string | number | undefined;
|
|
104547
|
-
name?: string | undefined;
|
|
104548
104571
|
highlightColor?: string | undefined;
|
|
104549
104572
|
displayName?: string | undefined;
|
|
104550
104573
|
maxLength?: string | number | undefined;
|
|
@@ -110174,9 +110197,9 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
110174
110197
|
symbol?: SymbolProp | undefined;
|
|
110175
110198
|
width?: number | undefined;
|
|
110176
110199
|
height?: number | undefined;
|
|
110200
|
+
name?: string | undefined;
|
|
110177
110201
|
key?: any;
|
|
110178
110202
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
110179
|
-
name?: string | undefined;
|
|
110180
110203
|
pcbX?: string | number | undefined;
|
|
110181
110204
|
pcbY?: string | number | undefined;
|
|
110182
110205
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -110531,11 +110554,11 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
110531
110554
|
symbol?: SymbolProp | undefined;
|
|
110532
110555
|
width?: string | number | undefined;
|
|
110533
110556
|
height?: string | number | undefined;
|
|
110557
|
+
name?: string | undefined;
|
|
110534
110558
|
key?: any;
|
|
110535
110559
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
110536
110560
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
110537
110561
|
} | undefined;
|
|
110538
|
-
name?: string | undefined;
|
|
110539
110562
|
pcbX?: string | number | undefined;
|
|
110540
110563
|
pcbY?: string | number | undefined;
|
|
110541
110564
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -121579,9 +121602,9 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121579
121602
|
symbol?: SymbolProp | undefined;
|
|
121580
121603
|
width?: number | undefined;
|
|
121581
121604
|
height?: number | undefined;
|
|
121605
|
+
name?: string | undefined;
|
|
121582
121606
|
key?: any;
|
|
121583
121607
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
121584
|
-
name?: string | undefined;
|
|
121585
121608
|
pcbX?: string | number | undefined;
|
|
121586
121609
|
pcbY?: string | number | undefined;
|
|
121587
121610
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -121897,11 +121920,11 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121897
121920
|
symbol?: SymbolProp | undefined;
|
|
121898
121921
|
width?: string | number | undefined;
|
|
121899
121922
|
height?: string | number | undefined;
|
|
121923
|
+
name?: string | undefined;
|
|
121900
121924
|
key?: any;
|
|
121901
121925
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
121902
121926
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
121903
121927
|
} | undefined;
|
|
121904
|
-
name?: string | undefined;
|
|
121905
121928
|
pcbX?: string | number | undefined;
|
|
121906
121929
|
pcbY?: string | number | undefined;
|
|
121907
121930
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -122340,8 +122363,8 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
122340
122363
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
122341
122364
|
phaseIndex: z.ZodOptional<z.ZodNumber>;
|
|
122342
122365
|
}, "strip", z.ZodTypeAny, {
|
|
122343
|
-
key?: any;
|
|
122344
122366
|
name?: string | undefined;
|
|
122367
|
+
key?: any;
|
|
122345
122368
|
connections?: string[] | undefined;
|
|
122346
122369
|
minTraceWidth?: number | undefined;
|
|
122347
122370
|
minViaHoleEdgeToViaHoleEdgeClearance?: number | undefined;
|
|
@@ -122364,8 +122387,8 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
122364
122387
|
} | undefined;
|
|
122365
122388
|
reroute?: boolean | undefined;
|
|
122366
122389
|
}, {
|
|
122367
|
-
key?: any;
|
|
122368
122390
|
name?: string | undefined;
|
|
122391
|
+
key?: any;
|
|
122369
122392
|
connections?: string[] | undefined;
|
|
122370
122393
|
minTraceWidth?: string | number | undefined;
|
|
122371
122394
|
minViaHoleEdgeToViaHoleEdgeClearance?: string | number | undefined;
|
|
@@ -122388,8 +122411,8 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
122388
122411
|
} | undefined;
|
|
122389
122412
|
reroute?: boolean | undefined;
|
|
122390
122413
|
}>, {
|
|
122391
|
-
key?: any;
|
|
122392
122414
|
name?: string | undefined;
|
|
122415
|
+
key?: any;
|
|
122393
122416
|
connections?: string[] | undefined;
|
|
122394
122417
|
minTraceWidth?: number | undefined;
|
|
122395
122418
|
minViaHoleEdgeToViaHoleEdgeClearance?: number | undefined;
|
|
@@ -122412,8 +122435,8 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
122412
122435
|
} | undefined;
|
|
122413
122436
|
reroute?: boolean | undefined;
|
|
122414
122437
|
}, {
|
|
122415
|
-
key?: any;
|
|
122416
122438
|
name?: string | undefined;
|
|
122439
|
+
key?: any;
|
|
122417
122440
|
connections?: string[] | undefined;
|
|
122418
122441
|
minTraceWidth?: string | number | undefined;
|
|
122419
122442
|
minViaHoleEdgeToViaHoleEdgeClearance?: string | number | undefined;
|
|
@@ -158115,8 +158138,8 @@ declare const viaProps: z.ZodObject<{
|
|
|
158115
158138
|
netIsAssignable: z.ZodOptional<z.ZodBoolean>;
|
|
158116
158139
|
}, "strip", z.ZodTypeAny, {
|
|
158117
158140
|
symbol?: SymbolProp | undefined;
|
|
158118
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
158119
158141
|
name?: string | undefined;
|
|
158142
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
158120
158143
|
layers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[] | undefined;
|
|
158121
158144
|
pcbX?: string | number | undefined;
|
|
158122
158145
|
pcbY?: string | number | undefined;
|
|
@@ -158172,10 +158195,10 @@ declare const viaProps: z.ZodObject<{
|
|
|
158172
158195
|
netIsAssignable?: boolean | undefined;
|
|
158173
158196
|
}, {
|
|
158174
158197
|
symbol?: SymbolProp | undefined;
|
|
158198
|
+
name?: string | undefined;
|
|
158175
158199
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
158176
158200
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
158177
158201
|
} | undefined;
|
|
158178
|
-
name?: string | undefined;
|
|
158179
158202
|
layers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
158180
158203
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
158181
158204
|
})[] | undefined;
|
|
@@ -182344,10 +182367,10 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
182344
182367
|
}, "strip", z.ZodTypeAny, {
|
|
182345
182368
|
connectsTo: string;
|
|
182346
182369
|
symbol?: SymbolProp | undefined;
|
|
182370
|
+
name?: string | undefined;
|
|
182347
182371
|
showAsTranslucentModel?: boolean | undefined;
|
|
182348
182372
|
key?: any;
|
|
182349
182373
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
182350
|
-
name?: string | undefined;
|
|
182351
182374
|
symbolName?: string | undefined;
|
|
182352
182375
|
pcbX?: string | number | undefined;
|
|
182353
182376
|
pcbY?: string | number | undefined;
|
|
@@ -182929,12 +182952,12 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
182929
182952
|
}, {
|
|
182930
182953
|
connectsTo: string;
|
|
182931
182954
|
symbol?: SymbolProp | undefined;
|
|
182955
|
+
name?: string | undefined;
|
|
182932
182956
|
showAsTranslucentModel?: boolean | undefined;
|
|
182933
182957
|
key?: any;
|
|
182934
182958
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
182935
182959
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
182936
182960
|
} | undefined;
|
|
182937
|
-
name?: string | undefined;
|
|
182938
182961
|
symbolName?: string | undefined;
|
|
182939
182962
|
pcbX?: string | number | undefined;
|
|
182940
182963
|
pcbY?: string | number | undefined;
|
|
@@ -190068,8 +190091,8 @@ declare const portProps: z.ZodObject<{
|
|
|
190068
190091
|
hasInversionCircle: z.ZodOptional<z.ZodBoolean>;
|
|
190069
190092
|
}, "strip", z.ZodTypeAny, {
|
|
190070
190093
|
symbol?: SymbolProp | undefined;
|
|
190071
|
-
layer?: string | undefined;
|
|
190072
190094
|
name?: string | undefined;
|
|
190095
|
+
layer?: string | undefined;
|
|
190073
190096
|
layers?: string[] | undefined;
|
|
190074
190097
|
pcbX?: string | number | undefined;
|
|
190075
190098
|
pcbY?: string | number | undefined;
|
|
@@ -190132,8 +190155,8 @@ declare const portProps: z.ZodObject<{
|
|
|
190132
190155
|
hasInversionCircle?: boolean | undefined;
|
|
190133
190156
|
}, {
|
|
190134
190157
|
symbol?: SymbolProp | undefined;
|
|
190135
|
-
layer?: string | undefined;
|
|
190136
190158
|
name?: string | undefined;
|
|
190159
|
+
layer?: string | undefined;
|
|
190137
190160
|
layers?: string[] | undefined;
|
|
190138
190161
|
pcbX?: string | number | undefined;
|
|
190139
190162
|
pcbY?: string | number | undefined;
|
|
@@ -191123,4 +191146,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
191123
191146
|
}
|
|
191124
191147
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
191125
191148
|
|
|
191126
|
-
export { type AmmeterPinLabels, type AmmeterProps, type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, 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 CadModelAxisDirection, 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 CircleEnclosureCutoutApertureProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleShapeProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type CommonShapeProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DifferentialPairProps, type DiodePinLabels, type DiodePinLabelsProp, type DiodeProps, type Direction, type DirectionAlongEdge, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type EnclosureCutoutApertureProps, type EnclosureCutoutApertureShape, type EnclosureFdmBoxProps, type EnclosureFdmBoxPropsInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicSheetProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, 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 MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, type OvalPlatedHoleProps, type PanelProps, type ParsedEnclosureCutoutApertureProps, 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 PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillEnclosureCutoutApertureProps, type PillHoleProps, type PillPlatedHoleProps, type PillShapeProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectEnclosureCutoutApertureProps, type RectHoleProps, type RectShapeProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, 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 SchematicSectionProps, type SchematicSheetProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, analogSimulationProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleShapeProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, commonShapeProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, differentialPairProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, 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, enclosureCutoutApertureProps, enclosureCutoutApertureShapes, enclosureFdmBoxProps, enclosureProps, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillShapeProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectShapeProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSheetProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
191149
|
+
export { type AmmeterPinLabels, type AmmeterProps, type AnalogSimulationProps, type AssemblyDeviceProps, type AssemblyDevicePropsInput, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, 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 CadModelAxisDirection, 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 CircleEnclosureCutoutApertureProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleShapeProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type CommonShapeProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DifferentialPairProps, type DiodePinLabels, type DiodePinLabelsProp, type DiodeProps, type Direction, type DirectionAlongEdge, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type EnclosureCutoutApertureProps, type EnclosureCutoutApertureShape, type EnclosureFdmBoxProps, type EnclosureFdmBoxPropsInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicSheetProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, 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 MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, type OvalPlatedHoleProps, type PanelProps, type ParsedEnclosureCutoutApertureProps, 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 PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillEnclosureCutoutApertureProps, type PillHoleProps, type PillPlatedHoleProps, type PillShapeProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectEnclosureCutoutApertureProps, type RectHoleProps, type RectShapeProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, 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 SchematicSectionProps, type SchematicSheetProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, analogSimulationProps, assemblyDeviceProps, assemblyProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleShapeProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, commonShapeProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, differentialPairProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, 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, enclosureCutoutApertureProps, enclosureCutoutApertureShapes, enclosureFdmBoxProps, enclosureProps, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillShapeProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectShapeProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSheetProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|