@tscircuit/props 0.0.467 → 0.0.469
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/dist/index.d.ts +361 -19
- package/dist/index.js +874 -856
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +5 -0
- package/lib/common/pcbSx.ts +33 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5957,6 +5957,31 @@ declare const pcbStyle: z.ZodObject<{
|
|
|
5957
5957
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
5958
5958
|
}>;
|
|
5959
5959
|
|
|
5960
|
+
type PcbSxSelector = "& footprint[src^='kicad:'] silkscreentext" | "& silkscreentext";
|
|
5961
|
+
interface PcbSxValue {
|
|
5962
|
+
fontSize?: string | number;
|
|
5963
|
+
pcbX?: string | number;
|
|
5964
|
+
pcbY?: string | number;
|
|
5965
|
+
}
|
|
5966
|
+
type PcbSxBase = Record<string, PcbSxValue>;
|
|
5967
|
+
type PcbSx = PcbSxBase & {
|
|
5968
|
+
[K in PcbSxSelector]?: PcbSxValue;
|
|
5969
|
+
};
|
|
5970
|
+
declare const pcbSxValue: z.ZodObject<{
|
|
5971
|
+
fontSize: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5972
|
+
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
5973
|
+
pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
5974
|
+
}, "strip", z.ZodTypeAny, {
|
|
5975
|
+
fontSize?: number | undefined;
|
|
5976
|
+
pcbX?: string | number | undefined;
|
|
5977
|
+
pcbY?: string | number | undefined;
|
|
5978
|
+
}, {
|
|
5979
|
+
fontSize?: string | number | undefined;
|
|
5980
|
+
pcbX?: string | number | undefined;
|
|
5981
|
+
pcbY?: string | number | undefined;
|
|
5982
|
+
}>;
|
|
5983
|
+
declare const pcbSx: z.ZodType<PcbSx>;
|
|
5984
|
+
|
|
5960
5985
|
interface SchStyle {
|
|
5961
5986
|
defaultPassiveSize?: "xs" | "sm" | "md" | string | number;
|
|
5962
5987
|
defaultCapacitorOrientation?: "vertical" | "none";
|
|
@@ -6002,6 +6027,7 @@ interface PcbLayoutProps {
|
|
|
6002
6027
|
pcbMarginX?: string | number;
|
|
6003
6028
|
pcbMarginY?: string | number;
|
|
6004
6029
|
pcbStyle?: PcbStyle;
|
|
6030
|
+
pcbSx?: PcbSx;
|
|
6005
6031
|
/**
|
|
6006
6032
|
* If true, pcbX/pcbY will be interpreted relative to the parent group
|
|
6007
6033
|
*/
|
|
@@ -6034,6 +6060,7 @@ interface CommonLayoutProps {
|
|
|
6034
6060
|
pcbMarginX?: string | number;
|
|
6035
6061
|
pcbMarginY?: string | number;
|
|
6036
6062
|
pcbStyle?: PcbStyle;
|
|
6063
|
+
pcbSx?: PcbSx;
|
|
6037
6064
|
schMarginTop?: string | number;
|
|
6038
6065
|
schMarginRight?: string | number;
|
|
6039
6066
|
schMarginBottom?: string | number;
|
|
@@ -6121,6 +6148,7 @@ declare const pcbLayoutProps: z.ZodObject<{
|
|
|
6121
6148
|
} | undefined;
|
|
6122
6149
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
6123
6150
|
}>>;
|
|
6151
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
6124
6152
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
6125
6153
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
6126
6154
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6152,6 +6180,7 @@ declare const pcbLayoutProps: z.ZodObject<{
|
|
|
6152
6180
|
} | undefined;
|
|
6153
6181
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
6154
6182
|
} | undefined;
|
|
6183
|
+
pcbSx?: PcbSx | undefined;
|
|
6155
6184
|
pcbRelative?: boolean | undefined;
|
|
6156
6185
|
relative?: boolean | undefined;
|
|
6157
6186
|
}, {
|
|
@@ -6185,6 +6214,7 @@ declare const pcbLayoutProps: z.ZodObject<{
|
|
|
6185
6214
|
} | undefined;
|
|
6186
6215
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
6187
6216
|
} | undefined;
|
|
6217
|
+
pcbSx?: PcbSx | undefined;
|
|
6188
6218
|
pcbRelative?: boolean | undefined;
|
|
6189
6219
|
relative?: boolean | undefined;
|
|
6190
6220
|
}>;
|
|
@@ -6240,6 +6270,7 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
6240
6270
|
} | undefined;
|
|
6241
6271
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
6242
6272
|
}>>;
|
|
6273
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
6243
6274
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6244
6275
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6245
6276
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6303,6 +6334,7 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
6303
6334
|
} | undefined;
|
|
6304
6335
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
6305
6336
|
} | undefined;
|
|
6337
|
+
pcbSx?: PcbSx | undefined;
|
|
6306
6338
|
pcbRelative?: boolean | undefined;
|
|
6307
6339
|
relative?: boolean | undefined;
|
|
6308
6340
|
schMarginTop?: number | undefined;
|
|
@@ -6352,6 +6384,7 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
6352
6384
|
} | undefined;
|
|
6353
6385
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
6354
6386
|
} | undefined;
|
|
6387
|
+
pcbSx?: PcbSx | undefined;
|
|
6355
6388
|
pcbRelative?: boolean | undefined;
|
|
6356
6389
|
relative?: boolean | undefined;
|
|
6357
6390
|
schMarginTop?: string | number | undefined;
|
|
@@ -6508,6 +6541,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
6508
6541
|
} | undefined;
|
|
6509
6542
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
6510
6543
|
}>>;
|
|
6544
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
6511
6545
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6512
6546
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6513
6547
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -9553,6 +9587,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9553
9587
|
} | undefined;
|
|
9554
9588
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
9555
9589
|
} | undefined;
|
|
9590
|
+
pcbSx?: PcbSx | undefined;
|
|
9556
9591
|
pcbRelative?: boolean | undefined;
|
|
9557
9592
|
relative?: boolean | undefined;
|
|
9558
9593
|
schMarginTop?: number | undefined;
|
|
@@ -10050,6 +10085,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
10050
10085
|
} | undefined;
|
|
10051
10086
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
10052
10087
|
} | undefined;
|
|
10088
|
+
pcbSx?: PcbSx | undefined;
|
|
10053
10089
|
pcbRelative?: boolean | undefined;
|
|
10054
10090
|
relative?: boolean | undefined;
|
|
10055
10091
|
schMarginTop?: string | number | undefined;
|
|
@@ -10565,6 +10601,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
10565
10601
|
} | undefined;
|
|
10566
10602
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
10567
10603
|
}>>;
|
|
10604
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
10568
10605
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
10569
10606
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
10570
10607
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -13610,6 +13647,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
13610
13647
|
} | undefined;
|
|
13611
13648
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
13612
13649
|
} | undefined;
|
|
13650
|
+
pcbSx?: PcbSx | undefined;
|
|
13613
13651
|
pcbRelative?: boolean | undefined;
|
|
13614
13652
|
relative?: boolean | undefined;
|
|
13615
13653
|
schMarginTop?: number | undefined;
|
|
@@ -14107,6 +14145,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
14107
14145
|
} | undefined;
|
|
14108
14146
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
14109
14147
|
} | undefined;
|
|
14148
|
+
pcbSx?: PcbSx | undefined;
|
|
14110
14149
|
pcbRelative?: boolean | undefined;
|
|
14111
14150
|
relative?: boolean | undefined;
|
|
14112
14151
|
schMarginTop?: string | number | undefined;
|
|
@@ -16359,6 +16398,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
16359
16398
|
} | undefined;
|
|
16360
16399
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
16361
16400
|
}>>;
|
|
16401
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
16362
16402
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16363
16403
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16364
16404
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -16897,6 +16937,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
16897
16937
|
} | undefined;
|
|
16898
16938
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
16899
16939
|
} | undefined;
|
|
16940
|
+
pcbSx?: PcbSx | undefined;
|
|
16900
16941
|
pcbRelative?: boolean | undefined;
|
|
16901
16942
|
relative?: boolean | undefined;
|
|
16902
16943
|
schMarginTop?: number | undefined;
|
|
@@ -17154,6 +17195,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
17154
17195
|
} | undefined;
|
|
17155
17196
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
17156
17197
|
} | undefined;
|
|
17198
|
+
pcbSx?: PcbSx | undefined;
|
|
17157
17199
|
pcbRelative?: boolean | undefined;
|
|
17158
17200
|
relative?: boolean | undefined;
|
|
17159
17201
|
schMarginTop?: string | number | undefined;
|
|
@@ -17431,6 +17473,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
17431
17473
|
} | undefined;
|
|
17432
17474
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
17433
17475
|
}>>;
|
|
17476
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
17434
17477
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
17435
17478
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
17436
17479
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -18163,6 +18206,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
18163
18206
|
} | undefined;
|
|
18164
18207
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
18165
18208
|
} | undefined;
|
|
18209
|
+
pcbSx?: PcbSx | undefined;
|
|
18166
18210
|
pcbRelative?: boolean | undefined;
|
|
18167
18211
|
relative?: boolean | undefined;
|
|
18168
18212
|
schMarginTop?: number | undefined;
|
|
@@ -18470,6 +18514,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
18470
18514
|
} | undefined;
|
|
18471
18515
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
18472
18516
|
} | undefined;
|
|
18517
|
+
pcbSx?: PcbSx | undefined;
|
|
18473
18518
|
pcbRelative?: boolean | undefined;
|
|
18474
18519
|
relative?: boolean | undefined;
|
|
18475
18520
|
schMarginTop?: string | number | undefined;
|
|
@@ -18798,6 +18843,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
18798
18843
|
} | undefined;
|
|
18799
18844
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
18800
18845
|
}>>;
|
|
18846
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
18801
18847
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
18802
18848
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
18803
18849
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -19533,6 +19579,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
19533
19579
|
} | undefined;
|
|
19534
19580
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19535
19581
|
} | undefined;
|
|
19582
|
+
pcbSx?: PcbSx | undefined;
|
|
19536
19583
|
pcbRelative?: boolean | undefined;
|
|
19537
19584
|
relative?: boolean | undefined;
|
|
19538
19585
|
schMarginTop?: number | undefined;
|
|
@@ -19841,6 +19888,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
19841
19888
|
} | undefined;
|
|
19842
19889
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19843
19890
|
} | undefined;
|
|
19891
|
+
pcbSx?: PcbSx | undefined;
|
|
19844
19892
|
pcbRelative?: boolean | undefined;
|
|
19845
19893
|
relative?: boolean | undefined;
|
|
19846
19894
|
schMarginTop?: string | number | undefined;
|
|
@@ -20169,6 +20217,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
20169
20217
|
} | undefined;
|
|
20170
20218
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20171
20219
|
}>>;
|
|
20220
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
20172
20221
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20173
20222
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20174
20223
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -20709,6 +20758,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
20709
20758
|
} | undefined;
|
|
20710
20759
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20711
20760
|
} | undefined;
|
|
20761
|
+
pcbSx?: PcbSx | undefined;
|
|
20712
20762
|
pcbRelative?: boolean | undefined;
|
|
20713
20763
|
relative?: boolean | undefined;
|
|
20714
20764
|
schMarginTop?: number | undefined;
|
|
@@ -20967,6 +21017,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
20967
21017
|
} | undefined;
|
|
20968
21018
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20969
21019
|
} | undefined;
|
|
21020
|
+
pcbSx?: PcbSx | undefined;
|
|
20970
21021
|
pcbRelative?: boolean | undefined;
|
|
20971
21022
|
relative?: boolean | undefined;
|
|
20972
21023
|
schMarginTop?: string | number | undefined;
|
|
@@ -21243,6 +21294,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
21243
21294
|
} | undefined;
|
|
21244
21295
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21245
21296
|
}>>;
|
|
21297
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
21246
21298
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21247
21299
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21248
21300
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -21978,6 +22030,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
21978
22030
|
} | undefined;
|
|
21979
22031
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21980
22032
|
} | undefined;
|
|
22033
|
+
pcbSx?: PcbSx | undefined;
|
|
21981
22034
|
pcbRelative?: boolean | undefined;
|
|
21982
22035
|
relative?: boolean | undefined;
|
|
21983
22036
|
schMarginTop?: number | undefined;
|
|
@@ -22286,6 +22339,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22286
22339
|
} | undefined;
|
|
22287
22340
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22288
22341
|
} | undefined;
|
|
22342
|
+
pcbSx?: PcbSx | undefined;
|
|
22289
22343
|
pcbRelative?: boolean | undefined;
|
|
22290
22344
|
relative?: boolean | undefined;
|
|
22291
22345
|
schMarginTop?: string | number | undefined;
|
|
@@ -22645,6 +22699,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
22645
22699
|
} | undefined;
|
|
22646
22700
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22647
22701
|
}>>;
|
|
22702
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
22648
22703
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
22649
22704
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
22650
22705
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -23407,6 +23462,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
23407
23462
|
} | undefined;
|
|
23408
23463
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23409
23464
|
} | undefined;
|
|
23465
|
+
pcbSx?: PcbSx | undefined;
|
|
23410
23466
|
pcbRelative?: boolean | undefined;
|
|
23411
23467
|
relative?: boolean | undefined;
|
|
23412
23468
|
schMarginTop?: number | undefined;
|
|
@@ -23730,6 +23786,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
23730
23786
|
} | undefined;
|
|
23731
23787
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23732
23788
|
} | undefined;
|
|
23789
|
+
pcbSx?: PcbSx | undefined;
|
|
23733
23790
|
pcbRelative?: boolean | undefined;
|
|
23734
23791
|
relative?: boolean | undefined;
|
|
23735
23792
|
schMarginTop?: string | number | undefined;
|
|
@@ -24102,6 +24159,7 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
24102
24159
|
} | undefined;
|
|
24103
24160
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
24104
24161
|
}>>;
|
|
24162
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
24105
24163
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24106
24164
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24107
24165
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -24661,6 +24719,7 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
24661
24719
|
} | undefined;
|
|
24662
24720
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
24663
24721
|
} | undefined;
|
|
24722
|
+
pcbSx?: PcbSx | undefined;
|
|
24664
24723
|
pcbRelative?: boolean | undefined;
|
|
24665
24724
|
relative?: boolean | undefined;
|
|
24666
24725
|
schMarginTop?: number | undefined;
|
|
@@ -24934,6 +24993,7 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
24934
24993
|
} | undefined;
|
|
24935
24994
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
24936
24995
|
} | undefined;
|
|
24996
|
+
pcbSx?: PcbSx | undefined;
|
|
24937
24997
|
pcbRelative?: boolean | undefined;
|
|
24938
24998
|
relative?: boolean | undefined;
|
|
24939
24999
|
schMarginTop?: string | number | undefined;
|
|
@@ -25229,6 +25289,7 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
25229
25289
|
} | undefined;
|
|
25230
25290
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
25231
25291
|
}>>;
|
|
25292
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
25232
25293
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25233
25294
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25234
25295
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -25788,6 +25849,7 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
25788
25849
|
} | undefined;
|
|
25789
25850
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
25790
25851
|
} | undefined;
|
|
25852
|
+
pcbSx?: PcbSx | undefined;
|
|
25791
25853
|
pcbRelative?: boolean | undefined;
|
|
25792
25854
|
relative?: boolean | undefined;
|
|
25793
25855
|
schMarginTop?: number | undefined;
|
|
@@ -26061,6 +26123,7 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
26061
26123
|
} | undefined;
|
|
26062
26124
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
26063
26125
|
} | undefined;
|
|
26126
|
+
pcbSx?: PcbSx | undefined;
|
|
26064
26127
|
pcbRelative?: boolean | undefined;
|
|
26065
26128
|
relative?: boolean | undefined;
|
|
26066
26129
|
schMarginTop?: string | number | undefined;
|
|
@@ -26361,6 +26424,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
26361
26424
|
} | undefined;
|
|
26362
26425
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
26363
26426
|
}>>;
|
|
26427
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
26364
26428
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26365
26429
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26366
26430
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -27093,6 +27157,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
27093
27157
|
} | undefined;
|
|
27094
27158
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
27095
27159
|
} | undefined;
|
|
27160
|
+
pcbSx?: PcbSx | undefined;
|
|
27096
27161
|
pcbRelative?: boolean | undefined;
|
|
27097
27162
|
relative?: boolean | undefined;
|
|
27098
27163
|
schMarginTop?: number | undefined;
|
|
@@ -27400,6 +27465,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
27400
27465
|
} | undefined;
|
|
27401
27466
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
27402
27467
|
} | undefined;
|
|
27468
|
+
pcbSx?: PcbSx | undefined;
|
|
27403
27469
|
pcbRelative?: boolean | undefined;
|
|
27404
27470
|
relative?: boolean | undefined;
|
|
27405
27471
|
schMarginTop?: string | number | undefined;
|
|
@@ -27800,6 +27866,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
27800
27866
|
} | undefined;
|
|
27801
27867
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
27802
27868
|
}>>;
|
|
27869
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
27803
27870
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27804
27871
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27805
27872
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -31140,6 +31207,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
31140
31207
|
} | undefined;
|
|
31141
31208
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
31142
31209
|
} | undefined;
|
|
31210
|
+
pcbSx?: PcbSx | undefined;
|
|
31143
31211
|
pcbRelative?: boolean | undefined;
|
|
31144
31212
|
relative?: boolean | undefined;
|
|
31145
31213
|
schMarginTop?: number | undefined;
|
|
@@ -31713,6 +31781,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
31713
31781
|
} | undefined;
|
|
31714
31782
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
31715
31783
|
} | undefined;
|
|
31784
|
+
pcbSx?: PcbSx | undefined;
|
|
31716
31785
|
pcbRelative?: boolean | undefined;
|
|
31717
31786
|
relative?: boolean | undefined;
|
|
31718
31787
|
schMarginTop?: string | number | undefined;
|
|
@@ -32307,6 +32376,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
32307
32376
|
} | undefined;
|
|
32308
32377
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
32309
32378
|
}>>;
|
|
32379
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
32310
32380
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
32311
32381
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
32312
32382
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -35647,6 +35717,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
35647
35717
|
} | undefined;
|
|
35648
35718
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
35649
35719
|
} | undefined;
|
|
35720
|
+
pcbSx?: PcbSx | undefined;
|
|
35650
35721
|
pcbRelative?: boolean | undefined;
|
|
35651
35722
|
relative?: boolean | undefined;
|
|
35652
35723
|
schMarginTop?: number | undefined;
|
|
@@ -36220,6 +36291,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
36220
36291
|
} | undefined;
|
|
36221
36292
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
36222
36293
|
} | undefined;
|
|
36294
|
+
pcbSx?: PcbSx | undefined;
|
|
36223
36295
|
pcbRelative?: boolean | undefined;
|
|
36224
36296
|
relative?: boolean | undefined;
|
|
36225
36297
|
schMarginTop?: string | number | undefined;
|
|
@@ -36813,6 +36885,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
36813
36885
|
} | undefined;
|
|
36814
36886
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
36815
36887
|
}>>;
|
|
36888
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
36816
36889
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
36817
36890
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
36818
36891
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -40153,6 +40226,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40153
40226
|
} | undefined;
|
|
40154
40227
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
40155
40228
|
} | undefined;
|
|
40229
|
+
pcbSx?: PcbSx | undefined;
|
|
40156
40230
|
pcbRelative?: boolean | undefined;
|
|
40157
40231
|
relative?: boolean | undefined;
|
|
40158
40232
|
schMarginTop?: number | undefined;
|
|
@@ -40726,6 +40800,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40726
40800
|
} | undefined;
|
|
40727
40801
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
40728
40802
|
} | undefined;
|
|
40803
|
+
pcbSx?: PcbSx | undefined;
|
|
40729
40804
|
pcbRelative?: boolean | undefined;
|
|
40730
40805
|
relative?: boolean | undefined;
|
|
40731
40806
|
schMarginTop?: string | number | undefined;
|
|
@@ -41351,6 +41426,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
41351
41426
|
} | undefined;
|
|
41352
41427
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
41353
41428
|
}>>;
|
|
41429
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
41354
41430
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
41355
41431
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
41356
41432
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -44680,6 +44756,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44680
44756
|
} | undefined;
|
|
44681
44757
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
44682
44758
|
} | undefined;
|
|
44759
|
+
pcbSx?: PcbSx | undefined;
|
|
44683
44760
|
pcbRelative?: boolean | undefined;
|
|
44684
44761
|
relative?: boolean | undefined;
|
|
44685
44762
|
schMarginTop?: number | undefined;
|
|
@@ -45248,6 +45325,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45248
45325
|
} | undefined;
|
|
45249
45326
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
45250
45327
|
} | undefined;
|
|
45328
|
+
pcbSx?: PcbSx | undefined;
|
|
45251
45329
|
pcbRelative?: boolean | undefined;
|
|
45252
45330
|
relative?: boolean | undefined;
|
|
45253
45331
|
schMarginTop?: string | number | undefined;
|
|
@@ -45845,6 +45923,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
45845
45923
|
} | undefined;
|
|
45846
45924
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
45847
45925
|
}>>;
|
|
45926
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
45848
45927
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45849
45928
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
45850
45929
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -49177,6 +49256,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49177
49256
|
} | undefined;
|
|
49178
49257
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
49179
49258
|
} | undefined;
|
|
49259
|
+
pcbSx?: PcbSx | undefined;
|
|
49180
49260
|
pcbRelative?: boolean | undefined;
|
|
49181
49261
|
relative?: boolean | undefined;
|
|
49182
49262
|
schMarginTop?: number | undefined;
|
|
@@ -49747,6 +49827,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49747
49827
|
} | undefined;
|
|
49748
49828
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
49749
49829
|
} | undefined;
|
|
49830
|
+
pcbSx?: PcbSx | undefined;
|
|
49750
49831
|
pcbRelative?: boolean | undefined;
|
|
49751
49832
|
relative?: boolean | undefined;
|
|
49752
49833
|
schMarginTop?: string | number | undefined;
|
|
@@ -50355,6 +50436,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
50355
50436
|
} | undefined;
|
|
50356
50437
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
50357
50438
|
}>>;
|
|
50439
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
50358
50440
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50359
50441
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
50360
50442
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -53558,6 +53640,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
53558
53640
|
} | undefined;
|
|
53559
53641
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
53560
53642
|
} | undefined;
|
|
53643
|
+
pcbSx?: PcbSx | undefined;
|
|
53561
53644
|
pcbRelative?: boolean | undefined;
|
|
53562
53645
|
relative?: boolean | undefined;
|
|
53563
53646
|
schMarginTop?: number | undefined;
|
|
@@ -54098,6 +54181,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54098
54181
|
} | undefined;
|
|
54099
54182
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
54100
54183
|
} | undefined;
|
|
54184
|
+
pcbSx?: PcbSx | undefined;
|
|
54101
54185
|
pcbRelative?: boolean | undefined;
|
|
54102
54186
|
relative?: boolean | undefined;
|
|
54103
54187
|
schMarginTop?: string | number | undefined;
|
|
@@ -54666,6 +54750,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
54666
54750
|
} | undefined;
|
|
54667
54751
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
54668
54752
|
}>>;
|
|
54753
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
54669
54754
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
54670
54755
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
54671
54756
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -57715,6 +57800,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
57715
57800
|
} | undefined;
|
|
57716
57801
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
57717
57802
|
} | undefined;
|
|
57803
|
+
pcbSx?: PcbSx | undefined;
|
|
57718
57804
|
pcbRelative?: boolean | undefined;
|
|
57719
57805
|
relative?: boolean | undefined;
|
|
57720
57806
|
schMarginTop?: number | undefined;
|
|
@@ -58215,6 +58301,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58215
58301
|
} | undefined;
|
|
58216
58302
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
58217
58303
|
} | undefined;
|
|
58304
|
+
pcbSx?: PcbSx | undefined;
|
|
58218
58305
|
pcbRelative?: boolean | undefined;
|
|
58219
58306
|
relative?: boolean | undefined;
|
|
58220
58307
|
schMarginTop?: string | number | undefined;
|
|
@@ -58761,6 +58848,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
58761
58848
|
} | undefined;
|
|
58762
58849
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
58763
58850
|
}>>;
|
|
58851
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
58764
58852
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
58765
58853
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
58766
58854
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -61813,6 +61901,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
61813
61901
|
} | undefined;
|
|
61814
61902
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
61815
61903
|
} | undefined;
|
|
61904
|
+
pcbSx?: PcbSx | undefined;
|
|
61816
61905
|
pcbRelative?: boolean | undefined;
|
|
61817
61906
|
relative?: boolean | undefined;
|
|
61818
61907
|
schMarginTop?: number | undefined;
|
|
@@ -62315,6 +62404,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62315
62404
|
} | undefined;
|
|
62316
62405
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
62317
62406
|
} | undefined;
|
|
62407
|
+
pcbSx?: PcbSx | undefined;
|
|
62318
62408
|
pcbRelative?: boolean | undefined;
|
|
62319
62409
|
relative?: boolean | undefined;
|
|
62320
62410
|
schMarginTop?: string | number | undefined;
|
|
@@ -62939,6 +63029,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
62939
63029
|
} | undefined;
|
|
62940
63030
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
62941
63031
|
}>>;
|
|
63032
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
62942
63033
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
62943
63034
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
62944
63035
|
}, "layer" | "pcbRotation"> & {
|
|
@@ -62982,6 +63073,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
62982
63073
|
} | undefined;
|
|
62983
63074
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
62984
63075
|
} | undefined;
|
|
63076
|
+
pcbSx?: PcbSx | undefined;
|
|
62985
63077
|
pcbRelative?: boolean | undefined;
|
|
62986
63078
|
relative?: boolean | undefined;
|
|
62987
63079
|
connectsTo?: string | string[] | undefined;
|
|
@@ -63020,6 +63112,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63020
63112
|
} | undefined;
|
|
63021
63113
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63022
63114
|
} | undefined;
|
|
63115
|
+
pcbSx?: PcbSx | undefined;
|
|
63023
63116
|
pcbRelative?: boolean | undefined;
|
|
63024
63117
|
relative?: boolean | undefined;
|
|
63025
63118
|
connectsTo?: string | string[] | undefined;
|
|
@@ -63088,6 +63181,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63088
63181
|
} | undefined;
|
|
63089
63182
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63090
63183
|
}>>;
|
|
63184
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
63091
63185
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
63092
63186
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
63093
63187
|
}, "layer"> & {
|
|
@@ -63135,6 +63229,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63135
63229
|
} | undefined;
|
|
63136
63230
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63137
63231
|
} | undefined;
|
|
63232
|
+
pcbSx?: PcbSx | undefined;
|
|
63138
63233
|
pcbRelative?: boolean | undefined;
|
|
63139
63234
|
relative?: boolean | undefined;
|
|
63140
63235
|
connectsTo?: string | string[] | undefined;
|
|
@@ -63179,6 +63274,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63179
63274
|
} | undefined;
|
|
63180
63275
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63181
63276
|
} | undefined;
|
|
63277
|
+
pcbSx?: PcbSx | undefined;
|
|
63182
63278
|
pcbRelative?: boolean | undefined;
|
|
63183
63279
|
relative?: boolean | undefined;
|
|
63184
63280
|
connectsTo?: string | string[] | undefined;
|
|
@@ -63248,6 +63344,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63248
63344
|
} | undefined;
|
|
63249
63345
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63250
63346
|
}>>;
|
|
63347
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
63251
63348
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
63252
63349
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
63253
63350
|
}, "layer"> & {
|
|
@@ -63298,6 +63395,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63298
63395
|
} | undefined;
|
|
63299
63396
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63300
63397
|
} | undefined;
|
|
63398
|
+
pcbSx?: PcbSx | undefined;
|
|
63301
63399
|
pcbRelative?: boolean | undefined;
|
|
63302
63400
|
relative?: boolean | undefined;
|
|
63303
63401
|
connectsTo?: string | string[] | undefined;
|
|
@@ -63345,6 +63443,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63345
63443
|
} | undefined;
|
|
63346
63444
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63347
63445
|
} | undefined;
|
|
63446
|
+
pcbSx?: PcbSx | undefined;
|
|
63348
63447
|
pcbRelative?: boolean | undefined;
|
|
63349
63448
|
relative?: boolean | undefined;
|
|
63350
63449
|
connectsTo?: string | string[] | undefined;
|
|
@@ -63417,6 +63516,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63417
63516
|
} | undefined;
|
|
63418
63517
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63419
63518
|
}>>;
|
|
63519
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
63420
63520
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
63421
63521
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
63422
63522
|
}, "layer" | "pcbRotation"> & {
|
|
@@ -63466,6 +63566,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63466
63566
|
} | undefined;
|
|
63467
63567
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63468
63568
|
} | undefined;
|
|
63569
|
+
pcbSx?: PcbSx | undefined;
|
|
63469
63570
|
pcbRelative?: boolean | undefined;
|
|
63470
63571
|
relative?: boolean | undefined;
|
|
63471
63572
|
connectsTo?: string | string[] | undefined;
|
|
@@ -63509,6 +63610,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63509
63610
|
} | undefined;
|
|
63510
63611
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63511
63612
|
} | undefined;
|
|
63613
|
+
pcbSx?: PcbSx | undefined;
|
|
63512
63614
|
pcbRelative?: boolean | undefined;
|
|
63513
63615
|
relative?: boolean | undefined;
|
|
63514
63616
|
connectsTo?: string | string[] | undefined;
|
|
@@ -63581,6 +63683,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63581
63683
|
} | undefined;
|
|
63582
63684
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63583
63685
|
}>>;
|
|
63686
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
63584
63687
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
63585
63688
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
63586
63689
|
}, "layer" | "pcbRotation"> & {
|
|
@@ -63631,6 +63734,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63631
63734
|
} | undefined;
|
|
63632
63735
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63633
63736
|
} | undefined;
|
|
63737
|
+
pcbSx?: PcbSx | undefined;
|
|
63634
63738
|
pcbRelative?: boolean | undefined;
|
|
63635
63739
|
relative?: boolean | undefined;
|
|
63636
63740
|
connectsTo?: string | string[] | undefined;
|
|
@@ -63674,6 +63778,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63674
63778
|
} | undefined;
|
|
63675
63779
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63676
63780
|
} | undefined;
|
|
63781
|
+
pcbSx?: PcbSx | undefined;
|
|
63677
63782
|
pcbRelative?: boolean | undefined;
|
|
63678
63783
|
relative?: boolean | undefined;
|
|
63679
63784
|
connectsTo?: string | string[] | undefined;
|
|
@@ -63745,6 +63850,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63745
63850
|
} | undefined;
|
|
63746
63851
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63747
63852
|
}>>;
|
|
63853
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
63748
63854
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
63749
63855
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
63750
63856
|
}, "layer" | "pcbRotation"> & {
|
|
@@ -63806,6 +63912,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63806
63912
|
} | undefined;
|
|
63807
63913
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63808
63914
|
} | undefined;
|
|
63915
|
+
pcbSx?: PcbSx | undefined;
|
|
63809
63916
|
pcbRelative?: boolean | undefined;
|
|
63810
63917
|
relative?: boolean | undefined;
|
|
63811
63918
|
connectsTo?: string | string[] | undefined;
|
|
@@ -63851,6 +63958,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63851
63958
|
} | undefined;
|
|
63852
63959
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63853
63960
|
} | undefined;
|
|
63961
|
+
pcbSx?: PcbSx | undefined;
|
|
63854
63962
|
pcbRelative?: boolean | undefined;
|
|
63855
63963
|
relative?: boolean | undefined;
|
|
63856
63964
|
connectsTo?: string | string[] | undefined;
|
|
@@ -63891,6 +63999,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63891
63999
|
} | undefined;
|
|
63892
64000
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63893
64001
|
} | undefined;
|
|
64002
|
+
pcbSx?: PcbSx | undefined;
|
|
63894
64003
|
pcbRelative?: boolean | undefined;
|
|
63895
64004
|
relative?: boolean | undefined;
|
|
63896
64005
|
connectsTo?: string | string[] | undefined;
|
|
@@ -63930,6 +64039,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63930
64039
|
} | undefined;
|
|
63931
64040
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63932
64041
|
} | undefined;
|
|
64042
|
+
pcbSx?: PcbSx | undefined;
|
|
63933
64043
|
pcbRelative?: boolean | undefined;
|
|
63934
64044
|
relative?: boolean | undefined;
|
|
63935
64045
|
connectsTo?: string | string[] | undefined;
|
|
@@ -63972,6 +64082,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
63972
64082
|
} | undefined;
|
|
63973
64083
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
63974
64084
|
} | undefined;
|
|
64085
|
+
pcbSx?: PcbSx | undefined;
|
|
63975
64086
|
pcbRelative?: boolean | undefined;
|
|
63976
64087
|
relative?: boolean | undefined;
|
|
63977
64088
|
connectsTo?: string | string[] | undefined;
|
|
@@ -64017,6 +64128,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64017
64128
|
} | undefined;
|
|
64018
64129
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
64019
64130
|
} | undefined;
|
|
64131
|
+
pcbSx?: PcbSx | undefined;
|
|
64020
64132
|
pcbRelative?: boolean | undefined;
|
|
64021
64133
|
relative?: boolean | undefined;
|
|
64022
64134
|
connectsTo?: string | string[] | undefined;
|
|
@@ -64061,6 +64173,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64061
64173
|
} | undefined;
|
|
64062
64174
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
64063
64175
|
} | undefined;
|
|
64176
|
+
pcbSx?: PcbSx | undefined;
|
|
64064
64177
|
pcbRelative?: boolean | undefined;
|
|
64065
64178
|
relative?: boolean | undefined;
|
|
64066
64179
|
connectsTo?: string | string[] | undefined;
|
|
@@ -64107,6 +64220,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64107
64220
|
} | undefined;
|
|
64108
64221
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
64109
64222
|
} | undefined;
|
|
64223
|
+
pcbSx?: PcbSx | undefined;
|
|
64110
64224
|
pcbRelative?: boolean | undefined;
|
|
64111
64225
|
relative?: boolean | undefined;
|
|
64112
64226
|
connectsTo?: string | string[] | undefined;
|
|
@@ -64147,6 +64261,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64147
64261
|
} | undefined;
|
|
64148
64262
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
64149
64263
|
} | undefined;
|
|
64264
|
+
pcbSx?: PcbSx | undefined;
|
|
64150
64265
|
pcbRelative?: boolean | undefined;
|
|
64151
64266
|
relative?: boolean | undefined;
|
|
64152
64267
|
connectsTo?: string | string[] | undefined;
|
|
@@ -64188,6 +64303,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64188
64303
|
} | undefined;
|
|
64189
64304
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
64190
64305
|
} | undefined;
|
|
64306
|
+
pcbSx?: PcbSx | undefined;
|
|
64191
64307
|
pcbRelative?: boolean | undefined;
|
|
64192
64308
|
relative?: boolean | undefined;
|
|
64193
64309
|
connectsTo?: string | string[] | undefined;
|
|
@@ -64230,6 +64346,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64230
64346
|
} | undefined;
|
|
64231
64347
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
64232
64348
|
} | undefined;
|
|
64349
|
+
pcbSx?: PcbSx | undefined;
|
|
64233
64350
|
pcbRelative?: boolean | undefined;
|
|
64234
64351
|
relative?: boolean | undefined;
|
|
64235
64352
|
connectsTo?: string | string[] | undefined;
|
|
@@ -64273,6 +64390,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64273
64390
|
} | undefined;
|
|
64274
64391
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
64275
64392
|
} | undefined;
|
|
64393
|
+
pcbSx?: PcbSx | undefined;
|
|
64276
64394
|
pcbRelative?: boolean | undefined;
|
|
64277
64395
|
relative?: boolean | undefined;
|
|
64278
64396
|
connectsTo?: string | string[] | undefined;
|
|
@@ -64317,6 +64435,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64317
64435
|
} | undefined;
|
|
64318
64436
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
64319
64437
|
} | undefined;
|
|
64438
|
+
pcbSx?: PcbSx | undefined;
|
|
64320
64439
|
pcbRelative?: boolean | undefined;
|
|
64321
64440
|
relative?: boolean | undefined;
|
|
64322
64441
|
connectsTo?: string | string[] | undefined;
|
|
@@ -64363,6 +64482,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64363
64482
|
} | undefined;
|
|
64364
64483
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
64365
64484
|
} | undefined;
|
|
64485
|
+
pcbSx?: PcbSx | undefined;
|
|
64366
64486
|
pcbRelative?: boolean | undefined;
|
|
64367
64487
|
relative?: boolean | undefined;
|
|
64368
64488
|
connectsTo?: string | string[] | undefined;
|
|
@@ -64439,6 +64559,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
64439
64559
|
} | undefined;
|
|
64440
64560
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
64441
64561
|
}>>;
|
|
64562
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
64442
64563
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
64443
64564
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
64444
64565
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -67495,6 +67616,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
67495
67616
|
} | undefined;
|
|
67496
67617
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
67497
67618
|
} | undefined;
|
|
67619
|
+
pcbSx?: PcbSx | undefined;
|
|
67498
67620
|
pcbRelative?: boolean | undefined;
|
|
67499
67621
|
relative?: boolean | undefined;
|
|
67500
67622
|
schMarginTop?: number | undefined;
|
|
@@ -68001,6 +68123,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68001
68123
|
} | undefined;
|
|
68002
68124
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
68003
68125
|
} | undefined;
|
|
68126
|
+
pcbSx?: PcbSx | undefined;
|
|
68004
68127
|
pcbRelative?: boolean | undefined;
|
|
68005
68128
|
relative?: boolean | undefined;
|
|
68006
68129
|
schMarginTop?: string | number | undefined;
|
|
@@ -68531,6 +68654,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
68531
68654
|
} | undefined;
|
|
68532
68655
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
68533
68656
|
}>>;
|
|
68657
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
68534
68658
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
68535
68659
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
68536
68660
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -71580,6 +71704,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
71580
71704
|
} | undefined;
|
|
71581
71705
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
71582
71706
|
} | undefined;
|
|
71707
|
+
pcbSx?: PcbSx | undefined;
|
|
71583
71708
|
pcbRelative?: boolean | undefined;
|
|
71584
71709
|
relative?: boolean | undefined;
|
|
71585
71710
|
schMarginTop?: number | undefined;
|
|
@@ -72079,6 +72204,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
72079
72204
|
} | undefined;
|
|
72080
72205
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
72081
72206
|
} | undefined;
|
|
72207
|
+
pcbSx?: PcbSx | undefined;
|
|
72082
72208
|
pcbRelative?: boolean | undefined;
|
|
72083
72209
|
relative?: boolean | undefined;
|
|
72084
72210
|
schMarginTop?: string | number | undefined;
|
|
@@ -72608,6 +72734,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
72608
72734
|
} | undefined;
|
|
72609
72735
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
72610
72736
|
}>>;
|
|
72737
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
72611
72738
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
72612
72739
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
72613
72740
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -75660,6 +75787,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
75660
75787
|
} | undefined;
|
|
75661
75788
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
75662
75789
|
} | undefined;
|
|
75790
|
+
pcbSx?: PcbSx | undefined;
|
|
75663
75791
|
pcbRelative?: boolean | undefined;
|
|
75664
75792
|
relative?: boolean | undefined;
|
|
75665
75793
|
schMarginTop?: number | undefined;
|
|
@@ -76163,6 +76291,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
76163
76291
|
} | undefined;
|
|
76164
76292
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
76165
76293
|
} | undefined;
|
|
76294
|
+
pcbSx?: PcbSx | undefined;
|
|
76166
76295
|
pcbRelative?: boolean | undefined;
|
|
76167
76296
|
relative?: boolean | undefined;
|
|
76168
76297
|
schMarginTop?: string | number | undefined;
|
|
@@ -76689,6 +76818,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
76689
76818
|
} | undefined;
|
|
76690
76819
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
76691
76820
|
}>>;
|
|
76821
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
76692
76822
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
76693
76823
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
76694
76824
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -79740,6 +79870,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
79740
79870
|
} | undefined;
|
|
79741
79871
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
79742
79872
|
} | undefined;
|
|
79873
|
+
pcbSx?: PcbSx | undefined;
|
|
79743
79874
|
pcbRelative?: boolean | undefined;
|
|
79744
79875
|
relative?: boolean | undefined;
|
|
79745
79876
|
schMarginTop?: number | undefined;
|
|
@@ -80240,6 +80371,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
80240
80371
|
} | undefined;
|
|
80241
80372
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
80242
80373
|
} | undefined;
|
|
80374
|
+
pcbSx?: PcbSx | undefined;
|
|
80243
80375
|
pcbRelative?: boolean | undefined;
|
|
80244
80376
|
relative?: boolean | undefined;
|
|
80245
80377
|
schMarginTop?: string | number | undefined;
|
|
@@ -80769,6 +80901,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
80769
80901
|
} | undefined;
|
|
80770
80902
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
80771
80903
|
}>>;
|
|
80904
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
80772
80905
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
80773
80906
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
80774
80907
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -81542,6 +81675,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
81542
81675
|
} | undefined;
|
|
81543
81676
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
81544
81677
|
} | undefined;
|
|
81678
|
+
pcbSx?: PcbSx | undefined;
|
|
81545
81679
|
pcbRelative?: boolean | undefined;
|
|
81546
81680
|
relative?: boolean | undefined;
|
|
81547
81681
|
schMarginTop?: number | undefined;
|
|
@@ -81875,6 +82009,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
81875
82009
|
} | undefined;
|
|
81876
82010
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
81877
82011
|
} | undefined;
|
|
82012
|
+
pcbSx?: PcbSx | undefined;
|
|
81878
82013
|
pcbRelative?: boolean | undefined;
|
|
81879
82014
|
relative?: boolean | undefined;
|
|
81880
82015
|
schMarginTop?: string | number | undefined;
|
|
@@ -82246,6 +82381,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
82246
82381
|
} | undefined;
|
|
82247
82382
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
82248
82383
|
}>>;
|
|
82384
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
82249
82385
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
82250
82386
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
82251
82387
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -85307,6 +85443,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
85307
85443
|
} | undefined;
|
|
85308
85444
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
85309
85445
|
} | undefined;
|
|
85446
|
+
pcbSx?: PcbSx | undefined;
|
|
85310
85447
|
pcbRelative?: boolean | undefined;
|
|
85311
85448
|
relative?: boolean | undefined;
|
|
85312
85449
|
schMarginTop?: number | undefined;
|
|
@@ -85814,6 +85951,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
85814
85951
|
} | undefined;
|
|
85815
85952
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
85816
85953
|
} | undefined;
|
|
85954
|
+
pcbSx?: PcbSx | undefined;
|
|
85817
85955
|
pcbRelative?: boolean | undefined;
|
|
85818
85956
|
relative?: boolean | undefined;
|
|
85819
85957
|
schMarginTop?: string | number | undefined;
|
|
@@ -86373,6 +86511,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
86373
86511
|
} | undefined;
|
|
86374
86512
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
86375
86513
|
}>>;
|
|
86514
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
86376
86515
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
86377
86516
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
86378
86517
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -89421,6 +89560,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
89421
89560
|
} | undefined;
|
|
89422
89561
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
89423
89562
|
} | undefined;
|
|
89563
|
+
pcbSx?: PcbSx | undefined;
|
|
89424
89564
|
pcbRelative?: boolean | undefined;
|
|
89425
89565
|
relative?: boolean | undefined;
|
|
89426
89566
|
schMarginTop?: number | undefined;
|
|
@@ -89920,6 +90060,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
89920
90060
|
} | undefined;
|
|
89921
90061
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
89922
90062
|
} | undefined;
|
|
90063
|
+
pcbSx?: PcbSx | undefined;
|
|
89923
90064
|
pcbRelative?: boolean | undefined;
|
|
89924
90065
|
relative?: boolean | undefined;
|
|
89925
90066
|
schMarginTop?: string | number | undefined;
|
|
@@ -90670,6 +90811,7 @@ declare const rectCutoutProps: z.ZodObject<Omit<{
|
|
|
90670
90811
|
} | undefined;
|
|
90671
90812
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
90672
90813
|
}>>;
|
|
90814
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
90673
90815
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
90674
90816
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
90675
90817
|
}, "layer" | "pcbRotation"> & {
|
|
@@ -90708,6 +90850,7 @@ declare const rectCutoutProps: z.ZodObject<Omit<{
|
|
|
90708
90850
|
} | undefined;
|
|
90709
90851
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
90710
90852
|
} | undefined;
|
|
90853
|
+
pcbSx?: PcbSx | undefined;
|
|
90711
90854
|
pcbRelative?: boolean | undefined;
|
|
90712
90855
|
relative?: boolean | undefined;
|
|
90713
90856
|
}, {
|
|
@@ -90741,6 +90884,7 @@ declare const rectCutoutProps: z.ZodObject<Omit<{
|
|
|
90741
90884
|
} | undefined;
|
|
90742
90885
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
90743
90886
|
} | undefined;
|
|
90887
|
+
pcbSx?: PcbSx | undefined;
|
|
90744
90888
|
pcbRelative?: boolean | undefined;
|
|
90745
90889
|
relative?: boolean | undefined;
|
|
90746
90890
|
}>;
|
|
@@ -90810,6 +90954,7 @@ declare const circleCutoutProps: z.ZodObject<Omit<{
|
|
|
90810
90954
|
} | undefined;
|
|
90811
90955
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
90812
90956
|
}>>;
|
|
90957
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
90813
90958
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
90814
90959
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
90815
90960
|
}, "layer" | "pcbRotation"> & {
|
|
@@ -90846,6 +90991,7 @@ declare const circleCutoutProps: z.ZodObject<Omit<{
|
|
|
90846
90991
|
} | undefined;
|
|
90847
90992
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
90848
90993
|
} | undefined;
|
|
90994
|
+
pcbSx?: PcbSx | undefined;
|
|
90849
90995
|
pcbRelative?: boolean | undefined;
|
|
90850
90996
|
relative?: boolean | undefined;
|
|
90851
90997
|
}, {
|
|
@@ -90878,6 +91024,7 @@ declare const circleCutoutProps: z.ZodObject<Omit<{
|
|
|
90878
91024
|
} | undefined;
|
|
90879
91025
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
90880
91026
|
} | undefined;
|
|
91027
|
+
pcbSx?: PcbSx | undefined;
|
|
90881
91028
|
pcbRelative?: boolean | undefined;
|
|
90882
91029
|
relative?: boolean | undefined;
|
|
90883
91030
|
}>;
|
|
@@ -90947,6 +91094,7 @@ declare const polygonCutoutProps: z.ZodObject<Omit<{
|
|
|
90947
91094
|
} | undefined;
|
|
90948
91095
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
90949
91096
|
}>>;
|
|
91097
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
90950
91098
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
90951
91099
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
90952
91100
|
}, "layer" | "pcbRotation"> & {
|
|
@@ -90995,6 +91143,7 @@ declare const polygonCutoutProps: z.ZodObject<Omit<{
|
|
|
90995
91143
|
} | undefined;
|
|
90996
91144
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
90997
91145
|
} | undefined;
|
|
91146
|
+
pcbSx?: PcbSx | undefined;
|
|
90998
91147
|
pcbRelative?: boolean | undefined;
|
|
90999
91148
|
relative?: boolean | undefined;
|
|
91000
91149
|
}, {
|
|
@@ -91030,6 +91179,7 @@ declare const polygonCutoutProps: z.ZodObject<Omit<{
|
|
|
91030
91179
|
} | undefined;
|
|
91031
91180
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91032
91181
|
} | undefined;
|
|
91182
|
+
pcbSx?: PcbSx | undefined;
|
|
91033
91183
|
pcbRelative?: boolean | undefined;
|
|
91034
91184
|
relative?: boolean | undefined;
|
|
91035
91185
|
}>;
|
|
@@ -91095,6 +91245,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
91095
91245
|
} | undefined;
|
|
91096
91246
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91097
91247
|
}>>;
|
|
91248
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
91098
91249
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
91099
91250
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
91100
91251
|
}, "layer" | "pcbRotation"> & {
|
|
@@ -91133,6 +91284,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
91133
91284
|
} | undefined;
|
|
91134
91285
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91135
91286
|
} | undefined;
|
|
91287
|
+
pcbSx?: PcbSx | undefined;
|
|
91136
91288
|
pcbRelative?: boolean | undefined;
|
|
91137
91289
|
relative?: boolean | undefined;
|
|
91138
91290
|
}, {
|
|
@@ -91166,6 +91318,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
91166
91318
|
} | undefined;
|
|
91167
91319
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91168
91320
|
} | undefined;
|
|
91321
|
+
pcbSx?: PcbSx | undefined;
|
|
91169
91322
|
pcbRelative?: boolean | undefined;
|
|
91170
91323
|
relative?: boolean | undefined;
|
|
91171
91324
|
}>, z.ZodObject<Omit<{
|
|
@@ -91229,6 +91382,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
91229
91382
|
} | undefined;
|
|
91230
91383
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91231
91384
|
}>>;
|
|
91385
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
91232
91386
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
91233
91387
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
91234
91388
|
}, "layer" | "pcbRotation"> & {
|
|
@@ -91265,6 +91419,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
91265
91419
|
} | undefined;
|
|
91266
91420
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91267
91421
|
} | undefined;
|
|
91422
|
+
pcbSx?: PcbSx | undefined;
|
|
91268
91423
|
pcbRelative?: boolean | undefined;
|
|
91269
91424
|
relative?: boolean | undefined;
|
|
91270
91425
|
}, {
|
|
@@ -91297,6 +91452,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
91297
91452
|
} | undefined;
|
|
91298
91453
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91299
91454
|
} | undefined;
|
|
91455
|
+
pcbSx?: PcbSx | undefined;
|
|
91300
91456
|
pcbRelative?: boolean | undefined;
|
|
91301
91457
|
relative?: boolean | undefined;
|
|
91302
91458
|
}>, z.ZodObject<Omit<{
|
|
@@ -91360,6 +91516,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
91360
91516
|
} | undefined;
|
|
91361
91517
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91362
91518
|
}>>;
|
|
91519
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
91363
91520
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
91364
91521
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
91365
91522
|
}, "layer" | "pcbRotation"> & {
|
|
@@ -91408,6 +91565,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
91408
91565
|
} | undefined;
|
|
91409
91566
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91410
91567
|
} | undefined;
|
|
91568
|
+
pcbSx?: PcbSx | undefined;
|
|
91411
91569
|
pcbRelative?: boolean | undefined;
|
|
91412
91570
|
relative?: boolean | undefined;
|
|
91413
91571
|
}, {
|
|
@@ -91443,6 +91601,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
91443
91601
|
} | undefined;
|
|
91444
91602
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91445
91603
|
} | undefined;
|
|
91604
|
+
pcbSx?: PcbSx | undefined;
|
|
91446
91605
|
pcbRelative?: boolean | undefined;
|
|
91447
91606
|
relative?: boolean | undefined;
|
|
91448
91607
|
}>]>;
|
|
@@ -91566,6 +91725,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
91566
91725
|
} | undefined;
|
|
91567
91726
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91568
91727
|
}>>;
|
|
91728
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
91569
91729
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
91570
91730
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
91571
91731
|
}, "pcbRotation"> & {
|
|
@@ -91614,6 +91774,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
91614
91774
|
} | undefined;
|
|
91615
91775
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91616
91776
|
} | undefined;
|
|
91777
|
+
pcbSx?: PcbSx | undefined;
|
|
91617
91778
|
pcbRelative?: boolean | undefined;
|
|
91618
91779
|
relative?: boolean | undefined;
|
|
91619
91780
|
portHints?: (string | number)[] | undefined;
|
|
@@ -91659,6 +91820,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
91659
91820
|
} | undefined;
|
|
91660
91821
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91661
91822
|
} | undefined;
|
|
91823
|
+
pcbSx?: PcbSx | undefined;
|
|
91662
91824
|
pcbRelative?: boolean | undefined;
|
|
91663
91825
|
relative?: boolean | undefined;
|
|
91664
91826
|
portHints?: (string | number)[] | undefined;
|
|
@@ -91732,6 +91894,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
91732
91894
|
} | undefined;
|
|
91733
91895
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91734
91896
|
}>>;
|
|
91897
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
91735
91898
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
91736
91899
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
91737
91900
|
}, "pcbRotation"> & {
|
|
@@ -91781,6 +91944,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
91781
91944
|
} | undefined;
|
|
91782
91945
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91783
91946
|
} | undefined;
|
|
91947
|
+
pcbSx?: PcbSx | undefined;
|
|
91784
91948
|
pcbRelative?: boolean | undefined;
|
|
91785
91949
|
relative?: boolean | undefined;
|
|
91786
91950
|
portHints?: (string | number)[] | undefined;
|
|
@@ -91826,6 +91990,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
91826
91990
|
} | undefined;
|
|
91827
91991
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91828
91992
|
} | undefined;
|
|
91993
|
+
pcbSx?: PcbSx | undefined;
|
|
91829
91994
|
pcbRelative?: boolean | undefined;
|
|
91830
91995
|
relative?: boolean | undefined;
|
|
91831
91996
|
portHints?: (string | number)[] | undefined;
|
|
@@ -91898,6 +92063,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
91898
92063
|
} | undefined;
|
|
91899
92064
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91900
92065
|
}>>;
|
|
92066
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
91901
92067
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
91902
92068
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
91903
92069
|
}, "pcbRotation"> & {
|
|
@@ -91938,6 +92104,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
91938
92104
|
} | undefined;
|
|
91939
92105
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91940
92106
|
} | undefined;
|
|
92107
|
+
pcbSx?: PcbSx | undefined;
|
|
91941
92108
|
pcbRelative?: boolean | undefined;
|
|
91942
92109
|
relative?: boolean | undefined;
|
|
91943
92110
|
portHints?: (string | number)[] | undefined;
|
|
@@ -91976,6 +92143,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
91976
92143
|
} | undefined;
|
|
91977
92144
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
91978
92145
|
} | undefined;
|
|
92146
|
+
pcbSx?: PcbSx | undefined;
|
|
91979
92147
|
pcbRelative?: boolean | undefined;
|
|
91980
92148
|
relative?: boolean | undefined;
|
|
91981
92149
|
portHints?: (string | number)[] | undefined;
|
|
@@ -92043,6 +92211,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
92043
92211
|
} | undefined;
|
|
92044
92212
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92045
92213
|
}>>;
|
|
92214
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
92046
92215
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
92047
92216
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
92048
92217
|
}, "pcbRotation"> & {
|
|
@@ -92087,6 +92256,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
92087
92256
|
} | undefined;
|
|
92088
92257
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92089
92258
|
} | undefined;
|
|
92259
|
+
pcbSx?: PcbSx | undefined;
|
|
92090
92260
|
pcbRelative?: boolean | undefined;
|
|
92091
92261
|
relative?: boolean | undefined;
|
|
92092
92262
|
portHints?: (string | number)[] | undefined;
|
|
@@ -92127,6 +92297,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
92127
92297
|
} | undefined;
|
|
92128
92298
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92129
92299
|
} | undefined;
|
|
92300
|
+
pcbSx?: PcbSx | undefined;
|
|
92130
92301
|
pcbRelative?: boolean | undefined;
|
|
92131
92302
|
relative?: boolean | undefined;
|
|
92132
92303
|
portHints?: (string | number)[] | undefined;
|
|
@@ -92194,6 +92365,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
92194
92365
|
} | undefined;
|
|
92195
92366
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92196
92367
|
}>>;
|
|
92368
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
92197
92369
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
92198
92370
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
92199
92371
|
}, "pcbRotation"> & {
|
|
@@ -92246,6 +92418,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
92246
92418
|
} | undefined;
|
|
92247
92419
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92248
92420
|
} | undefined;
|
|
92421
|
+
pcbSx?: PcbSx | undefined;
|
|
92249
92422
|
pcbRelative?: boolean | undefined;
|
|
92250
92423
|
relative?: boolean | undefined;
|
|
92251
92424
|
portHints?: (string | number)[] | undefined;
|
|
@@ -92287,6 +92460,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
92287
92460
|
} | undefined;
|
|
92288
92461
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92289
92462
|
} | undefined;
|
|
92463
|
+
pcbSx?: PcbSx | undefined;
|
|
92290
92464
|
pcbRelative?: boolean | undefined;
|
|
92291
92465
|
relative?: boolean | undefined;
|
|
92292
92466
|
portHints?: (string | number)[] | undefined;
|
|
@@ -92354,6 +92528,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
92354
92528
|
} | undefined;
|
|
92355
92529
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92356
92530
|
}>>;
|
|
92531
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
92357
92532
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
92358
92533
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
92359
92534
|
}, "pcbRotation"> & {
|
|
@@ -92394,6 +92569,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
92394
92569
|
} | undefined;
|
|
92395
92570
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92396
92571
|
} | undefined;
|
|
92572
|
+
pcbSx?: PcbSx | undefined;
|
|
92397
92573
|
pcbRelative?: boolean | undefined;
|
|
92398
92574
|
relative?: boolean | undefined;
|
|
92399
92575
|
portHints?: (string | number)[] | undefined;
|
|
@@ -92432,6 +92608,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
92432
92608
|
} | undefined;
|
|
92433
92609
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92434
92610
|
} | undefined;
|
|
92611
|
+
pcbSx?: PcbSx | undefined;
|
|
92435
92612
|
pcbRelative?: boolean | undefined;
|
|
92436
92613
|
relative?: boolean | undefined;
|
|
92437
92614
|
portHints?: (string | number)[] | undefined;
|
|
@@ -92498,6 +92675,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
92498
92675
|
} | undefined;
|
|
92499
92676
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92500
92677
|
}>>;
|
|
92678
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
92501
92679
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
92502
92680
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
92503
92681
|
}, "pcbRotation"> & {
|
|
@@ -92546,6 +92724,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
92546
92724
|
} | undefined;
|
|
92547
92725
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92548
92726
|
} | undefined;
|
|
92727
|
+
pcbSx?: PcbSx | undefined;
|
|
92549
92728
|
pcbRelative?: boolean | undefined;
|
|
92550
92729
|
relative?: boolean | undefined;
|
|
92551
92730
|
portHints?: (string | number)[] | undefined;
|
|
@@ -92591,6 +92770,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
92591
92770
|
} | undefined;
|
|
92592
92771
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92593
92772
|
} | undefined;
|
|
92773
|
+
pcbSx?: PcbSx | undefined;
|
|
92594
92774
|
pcbRelative?: boolean | undefined;
|
|
92595
92775
|
relative?: boolean | undefined;
|
|
92596
92776
|
portHints?: (string | number)[] | undefined;
|
|
@@ -92663,6 +92843,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
92663
92843
|
} | undefined;
|
|
92664
92844
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92665
92845
|
}>>;
|
|
92846
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
92666
92847
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
92667
92848
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
92668
92849
|
}, "pcbRotation"> & {
|
|
@@ -92712,6 +92893,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
92712
92893
|
} | undefined;
|
|
92713
92894
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92714
92895
|
} | undefined;
|
|
92896
|
+
pcbSx?: PcbSx | undefined;
|
|
92715
92897
|
pcbRelative?: boolean | undefined;
|
|
92716
92898
|
relative?: boolean | undefined;
|
|
92717
92899
|
portHints?: (string | number)[] | undefined;
|
|
@@ -92757,6 +92939,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
92757
92939
|
} | undefined;
|
|
92758
92940
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92759
92941
|
} | undefined;
|
|
92942
|
+
pcbSx?: PcbSx | undefined;
|
|
92760
92943
|
pcbRelative?: boolean | undefined;
|
|
92761
92944
|
relative?: boolean | undefined;
|
|
92762
92945
|
portHints?: (string | number)[] | undefined;
|
|
@@ -92828,6 +93011,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
92828
93011
|
} | undefined;
|
|
92829
93012
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92830
93013
|
}>>;
|
|
93014
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
92831
93015
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
92832
93016
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
92833
93017
|
}, "pcbRotation"> & {
|
|
@@ -92872,6 +93056,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
92872
93056
|
} | undefined;
|
|
92873
93057
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92874
93058
|
} | undefined;
|
|
93059
|
+
pcbSx?: PcbSx | undefined;
|
|
92875
93060
|
pcbRelative?: boolean | undefined;
|
|
92876
93061
|
relative?: boolean | undefined;
|
|
92877
93062
|
portHints?: (string | number)[] | undefined;
|
|
@@ -92912,6 +93097,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
92912
93097
|
} | undefined;
|
|
92913
93098
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92914
93099
|
} | undefined;
|
|
93100
|
+
pcbSx?: PcbSx | undefined;
|
|
92915
93101
|
pcbRelative?: boolean | undefined;
|
|
92916
93102
|
relative?: boolean | undefined;
|
|
92917
93103
|
portHints?: (string | number)[] | undefined;
|
|
@@ -92978,6 +93164,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
92978
93164
|
} | undefined;
|
|
92979
93165
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
92980
93166
|
}>>;
|
|
93167
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
92981
93168
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
92982
93169
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
92983
93170
|
}, "pcbRotation"> & {
|
|
@@ -93030,6 +93217,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93030
93217
|
} | undefined;
|
|
93031
93218
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93032
93219
|
} | undefined;
|
|
93220
|
+
pcbSx?: PcbSx | undefined;
|
|
93033
93221
|
pcbRelative?: boolean | undefined;
|
|
93034
93222
|
relative?: boolean | undefined;
|
|
93035
93223
|
portHints?: (string | number)[] | undefined;
|
|
@@ -93071,6 +93259,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93071
93259
|
} | undefined;
|
|
93072
93260
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93073
93261
|
} | undefined;
|
|
93262
|
+
pcbSx?: PcbSx | undefined;
|
|
93074
93263
|
pcbRelative?: boolean | undefined;
|
|
93075
93264
|
relative?: boolean | undefined;
|
|
93076
93265
|
portHints?: (string | number)[] | undefined;
|
|
@@ -93150,6 +93339,7 @@ declare const rectSolderPasteProps: z.ZodObject<Omit<{
|
|
|
93150
93339
|
} | undefined;
|
|
93151
93340
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93152
93341
|
}>>;
|
|
93342
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
93153
93343
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
93154
93344
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
93155
93345
|
}, "pcbRotation"> & {
|
|
@@ -93187,6 +93377,7 @@ declare const rectSolderPasteProps: z.ZodObject<Omit<{
|
|
|
93187
93377
|
} | undefined;
|
|
93188
93378
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93189
93379
|
} | undefined;
|
|
93380
|
+
pcbSx?: PcbSx | undefined;
|
|
93190
93381
|
pcbRelative?: boolean | undefined;
|
|
93191
93382
|
relative?: boolean | undefined;
|
|
93192
93383
|
}, {
|
|
@@ -93222,6 +93413,7 @@ declare const rectSolderPasteProps: z.ZodObject<Omit<{
|
|
|
93222
93413
|
} | undefined;
|
|
93223
93414
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93224
93415
|
} | undefined;
|
|
93416
|
+
pcbSx?: PcbSx | undefined;
|
|
93225
93417
|
pcbRelative?: boolean | undefined;
|
|
93226
93418
|
relative?: boolean | undefined;
|
|
93227
93419
|
}>;
|
|
@@ -93286,6 +93478,7 @@ declare const circleSolderPasteProps: z.ZodObject<Omit<{
|
|
|
93286
93478
|
} | undefined;
|
|
93287
93479
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93288
93480
|
}>>;
|
|
93481
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
93289
93482
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
93290
93483
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
93291
93484
|
}, "pcbRotation"> & {
|
|
@@ -93321,6 +93514,7 @@ declare const circleSolderPasteProps: z.ZodObject<Omit<{
|
|
|
93321
93514
|
} | undefined;
|
|
93322
93515
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93323
93516
|
} | undefined;
|
|
93517
|
+
pcbSx?: PcbSx | undefined;
|
|
93324
93518
|
pcbRelative?: boolean | undefined;
|
|
93325
93519
|
relative?: boolean | undefined;
|
|
93326
93520
|
}, {
|
|
@@ -93355,6 +93549,7 @@ declare const circleSolderPasteProps: z.ZodObject<Omit<{
|
|
|
93355
93549
|
} | undefined;
|
|
93356
93550
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93357
93551
|
} | undefined;
|
|
93552
|
+
pcbSx?: PcbSx | undefined;
|
|
93358
93553
|
pcbRelative?: boolean | undefined;
|
|
93359
93554
|
relative?: boolean | undefined;
|
|
93360
93555
|
}>;
|
|
@@ -93419,6 +93614,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
93419
93614
|
} | undefined;
|
|
93420
93615
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93421
93616
|
}>>;
|
|
93617
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
93422
93618
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
93423
93619
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
93424
93620
|
}, "pcbRotation"> & {
|
|
@@ -93454,6 +93650,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
93454
93650
|
} | undefined;
|
|
93455
93651
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93456
93652
|
} | undefined;
|
|
93653
|
+
pcbSx?: PcbSx | undefined;
|
|
93457
93654
|
pcbRelative?: boolean | undefined;
|
|
93458
93655
|
relative?: boolean | undefined;
|
|
93459
93656
|
}, {
|
|
@@ -93488,6 +93685,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
93488
93685
|
} | undefined;
|
|
93489
93686
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93490
93687
|
} | undefined;
|
|
93688
|
+
pcbSx?: PcbSx | undefined;
|
|
93491
93689
|
pcbRelative?: boolean | undefined;
|
|
93492
93690
|
relative?: boolean | undefined;
|
|
93493
93691
|
}>, z.ZodObject<Omit<{
|
|
@@ -93551,6 +93749,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
93551
93749
|
} | undefined;
|
|
93552
93750
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93553
93751
|
}>>;
|
|
93752
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
93554
93753
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
93555
93754
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
93556
93755
|
}, "pcbRotation"> & {
|
|
@@ -93588,6 +93787,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
93588
93787
|
} | undefined;
|
|
93589
93788
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93590
93789
|
} | undefined;
|
|
93790
|
+
pcbSx?: PcbSx | undefined;
|
|
93591
93791
|
pcbRelative?: boolean | undefined;
|
|
93592
93792
|
relative?: boolean | undefined;
|
|
93593
93793
|
}, {
|
|
@@ -93623,6 +93823,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
93623
93823
|
} | undefined;
|
|
93624
93824
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93625
93825
|
} | undefined;
|
|
93826
|
+
pcbSx?: PcbSx | undefined;
|
|
93626
93827
|
pcbRelative?: boolean | undefined;
|
|
93627
93828
|
relative?: boolean | undefined;
|
|
93628
93829
|
}>]>;
|
|
@@ -93714,6 +93915,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
93714
93915
|
} | undefined;
|
|
93715
93916
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93716
93917
|
}>>;
|
|
93918
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
93717
93919
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
93718
93920
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
93719
93921
|
} & {
|
|
@@ -93754,6 +93956,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
93754
93956
|
} | undefined;
|
|
93755
93957
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93756
93958
|
} | undefined;
|
|
93959
|
+
pcbSx?: PcbSx | undefined;
|
|
93757
93960
|
pcbRelative?: boolean | undefined;
|
|
93758
93961
|
relative?: boolean | undefined;
|
|
93759
93962
|
solderMaskMargin?: number | undefined;
|
|
@@ -93793,6 +93996,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
93793
93996
|
} | undefined;
|
|
93794
93997
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93795
93998
|
} | undefined;
|
|
93999
|
+
pcbSx?: PcbSx | undefined;
|
|
93796
94000
|
pcbRelative?: boolean | undefined;
|
|
93797
94001
|
relative?: boolean | undefined;
|
|
93798
94002
|
solderMaskMargin?: string | number | undefined;
|
|
@@ -93832,6 +94036,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
93832
94036
|
} | undefined;
|
|
93833
94037
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93834
94038
|
} | undefined;
|
|
94039
|
+
pcbSx?: PcbSx | undefined;
|
|
93835
94040
|
pcbRelative?: boolean | undefined;
|
|
93836
94041
|
relative?: boolean | undefined;
|
|
93837
94042
|
solderMaskMargin?: number | undefined;
|
|
@@ -93869,6 +94074,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
93869
94074
|
} | undefined;
|
|
93870
94075
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93871
94076
|
} | undefined;
|
|
94077
|
+
pcbSx?: PcbSx | undefined;
|
|
93872
94078
|
pcbRelative?: boolean | undefined;
|
|
93873
94079
|
relative?: boolean | undefined;
|
|
93874
94080
|
solderMaskMargin?: string | number | undefined;
|
|
@@ -93936,6 +94142,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
93936
94142
|
} | undefined;
|
|
93937
94143
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93938
94144
|
}>>;
|
|
94145
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
93939
94146
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
93940
94147
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
93941
94148
|
} & {
|
|
@@ -93978,6 +94185,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
93978
94185
|
} | undefined;
|
|
93979
94186
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
93980
94187
|
} | undefined;
|
|
94188
|
+
pcbSx?: PcbSx | undefined;
|
|
93981
94189
|
pcbRelative?: boolean | undefined;
|
|
93982
94190
|
relative?: boolean | undefined;
|
|
93983
94191
|
solderMaskMargin?: number | undefined;
|
|
@@ -94017,6 +94225,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
94017
94225
|
} | undefined;
|
|
94018
94226
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
94019
94227
|
} | undefined;
|
|
94228
|
+
pcbSx?: PcbSx | undefined;
|
|
94020
94229
|
pcbRelative?: boolean | undefined;
|
|
94021
94230
|
relative?: boolean | undefined;
|
|
94022
94231
|
solderMaskMargin?: string | number | undefined;
|
|
@@ -94082,6 +94291,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
94082
94291
|
} | undefined;
|
|
94083
94292
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
94084
94293
|
}>>;
|
|
94294
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
94085
94295
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
94086
94296
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
94087
94297
|
} & {
|
|
@@ -94124,6 +94334,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
94124
94334
|
} | undefined;
|
|
94125
94335
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
94126
94336
|
} | undefined;
|
|
94337
|
+
pcbSx?: PcbSx | undefined;
|
|
94127
94338
|
pcbRelative?: boolean | undefined;
|
|
94128
94339
|
relative?: boolean | undefined;
|
|
94129
94340
|
solderMaskMargin?: number | undefined;
|
|
@@ -94163,6 +94374,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
94163
94374
|
} | undefined;
|
|
94164
94375
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
94165
94376
|
} | undefined;
|
|
94377
|
+
pcbSx?: PcbSx | undefined;
|
|
94166
94378
|
pcbRelative?: boolean | undefined;
|
|
94167
94379
|
relative?: boolean | undefined;
|
|
94168
94380
|
solderMaskMargin?: string | number | undefined;
|
|
@@ -94832,6 +95044,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
94832
95044
|
} | undefined;
|
|
94833
95045
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
94834
95046
|
}>>;
|
|
95047
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
94835
95048
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
94836
95049
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
94837
95050
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -97882,6 +98095,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
97882
98095
|
} | undefined;
|
|
97883
98096
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
97884
98097
|
} | undefined;
|
|
98098
|
+
pcbSx?: PcbSx | undefined;
|
|
97885
98099
|
pcbRelative?: boolean | undefined;
|
|
97886
98100
|
relative?: boolean | undefined;
|
|
97887
98101
|
schMarginTop?: number | undefined;
|
|
@@ -98383,6 +98597,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
98383
98597
|
} | undefined;
|
|
98384
98598
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
98385
98599
|
} | undefined;
|
|
98600
|
+
pcbSx?: PcbSx | undefined;
|
|
98386
98601
|
pcbRelative?: boolean | undefined;
|
|
98387
98602
|
relative?: boolean | undefined;
|
|
98388
98603
|
schMarginTop?: string | number | undefined;
|
|
@@ -98909,6 +99124,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
98909
99124
|
} | undefined;
|
|
98910
99125
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
98911
99126
|
}>>;
|
|
99127
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
98912
99128
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
98913
99129
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
98914
99130
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -99644,6 +99860,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
99644
99860
|
} | undefined;
|
|
99645
99861
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
99646
99862
|
} | undefined;
|
|
99863
|
+
pcbSx?: PcbSx | undefined;
|
|
99647
99864
|
pcbRelative?: boolean | undefined;
|
|
99648
99865
|
relative?: boolean | undefined;
|
|
99649
99866
|
schMarginTop?: number | undefined;
|
|
@@ -99953,6 +100170,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
99953
100170
|
} | undefined;
|
|
99954
100171
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
99955
100172
|
} | undefined;
|
|
100173
|
+
pcbSx?: PcbSx | undefined;
|
|
99956
100174
|
pcbRelative?: boolean | undefined;
|
|
99957
100175
|
relative?: boolean | undefined;
|
|
99958
100176
|
schMarginTop?: string | number | undefined;
|
|
@@ -100364,6 +100582,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
100364
100582
|
} | undefined;
|
|
100365
100583
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
100366
100584
|
}>>;
|
|
100585
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
100367
100586
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100368
100587
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100369
100588
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -103581,6 +103800,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
103581
103800
|
} | undefined;
|
|
103582
103801
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
103583
103802
|
} | undefined;
|
|
103803
|
+
pcbSx?: PcbSx | undefined;
|
|
103584
103804
|
pcbRelative?: boolean | undefined;
|
|
103585
103805
|
relative?: boolean | undefined;
|
|
103586
103806
|
schMarginTop?: number | undefined;
|
|
@@ -104130,6 +104350,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
104130
104350
|
} | undefined;
|
|
104131
104351
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
104132
104352
|
} | undefined;
|
|
104353
|
+
pcbSx?: PcbSx | undefined;
|
|
104133
104354
|
pcbRelative?: boolean | undefined;
|
|
104134
104355
|
relative?: boolean | undefined;
|
|
104135
104356
|
schMarginTop?: string | number | undefined;
|
|
@@ -104769,6 +104990,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
104769
104990
|
} | undefined;
|
|
104770
104991
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
104771
104992
|
}>>;
|
|
104993
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
104772
104994
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
104773
104995
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
104774
104996
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -108109,6 +108331,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
108109
108331
|
} | undefined;
|
|
108110
108332
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
108111
108333
|
} | undefined;
|
|
108334
|
+
pcbSx?: PcbSx | undefined;
|
|
108112
108335
|
pcbRelative?: boolean | undefined;
|
|
108113
108336
|
relative?: boolean | undefined;
|
|
108114
108337
|
schMarginTop?: number | undefined;
|
|
@@ -108682,6 +108905,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
108682
108905
|
} | undefined;
|
|
108683
108906
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
108684
108907
|
} | undefined;
|
|
108908
|
+
pcbSx?: PcbSx | undefined;
|
|
108685
108909
|
pcbRelative?: boolean | undefined;
|
|
108686
108910
|
relative?: boolean | undefined;
|
|
108687
108911
|
schMarginTop?: string | number | undefined;
|
|
@@ -109275,6 +109499,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
109275
109499
|
} | undefined;
|
|
109276
109500
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
109277
109501
|
}>>;
|
|
109502
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
109278
109503
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
109279
109504
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
109280
109505
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -110007,6 +110232,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
110007
110232
|
} | undefined;
|
|
110008
110233
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
110009
110234
|
} | undefined;
|
|
110235
|
+
pcbSx?: PcbSx | undefined;
|
|
110010
110236
|
pcbRelative?: boolean | undefined;
|
|
110011
110237
|
relative?: boolean | undefined;
|
|
110012
110238
|
schMarginTop?: number | undefined;
|
|
@@ -110314,6 +110540,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
110314
110540
|
} | undefined;
|
|
110315
110541
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
110316
110542
|
} | undefined;
|
|
110543
|
+
pcbSx?: PcbSx | undefined;
|
|
110317
110544
|
pcbRelative?: boolean | undefined;
|
|
110318
110545
|
relative?: boolean | undefined;
|
|
110319
110546
|
schMarginTop?: string | number | undefined;
|
|
@@ -110672,6 +110899,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
110672
110899
|
} | undefined;
|
|
110673
110900
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
110674
110901
|
}>>;
|
|
110902
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
110675
110903
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
110676
110904
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
110677
110905
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -113721,6 +113949,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
113721
113949
|
} | undefined;
|
|
113722
113950
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
113723
113951
|
} | undefined;
|
|
113952
|
+
pcbSx?: PcbSx | undefined;
|
|
113724
113953
|
pcbRelative?: boolean | undefined;
|
|
113725
113954
|
relative?: boolean | undefined;
|
|
113726
113955
|
schMarginTop?: number | undefined;
|
|
@@ -114220,6 +114449,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
114220
114449
|
} | undefined;
|
|
114221
114450
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
114222
114451
|
} | undefined;
|
|
114452
|
+
pcbSx?: PcbSx | undefined;
|
|
114223
114453
|
pcbRelative?: boolean | undefined;
|
|
114224
114454
|
relative?: boolean | undefined;
|
|
114225
114455
|
schMarginTop?: string | number | undefined;
|
|
@@ -114743,6 +114973,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
114743
114973
|
} | undefined;
|
|
114744
114974
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
114745
114975
|
}>>;
|
|
114976
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
114746
114977
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
114747
114978
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
114748
114979
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -117793,6 +118024,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
117793
118024
|
} | undefined;
|
|
117794
118025
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
117795
118026
|
} | undefined;
|
|
118027
|
+
pcbSx?: PcbSx | undefined;
|
|
117796
118028
|
pcbRelative?: boolean | undefined;
|
|
117797
118029
|
relative?: boolean | undefined;
|
|
117798
118030
|
schMarginTop?: number | undefined;
|
|
@@ -118292,6 +118524,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
118292
118524
|
} | undefined;
|
|
118293
118525
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
118294
118526
|
} | undefined;
|
|
118527
|
+
pcbSx?: PcbSx | undefined;
|
|
118295
118528
|
pcbRelative?: boolean | undefined;
|
|
118296
118529
|
relative?: boolean | undefined;
|
|
118297
118530
|
schMarginTop?: string | number | undefined;
|
|
@@ -118821,6 +119054,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
118821
119054
|
} | undefined;
|
|
118822
119055
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
118823
119056
|
}>>;
|
|
119057
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
118824
119058
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
118825
119059
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
118826
119060
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -121868,6 +122102,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
121868
122102
|
} | undefined;
|
|
121869
122103
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
121870
122104
|
} | undefined;
|
|
122105
|
+
pcbSx?: PcbSx | undefined;
|
|
121871
122106
|
pcbRelative?: boolean | undefined;
|
|
121872
122107
|
relative?: boolean | undefined;
|
|
121873
122108
|
schMarginTop?: number | undefined;
|
|
@@ -122366,6 +122601,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
122366
122601
|
} | undefined;
|
|
122367
122602
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
122368
122603
|
} | undefined;
|
|
122604
|
+
pcbSx?: PcbSx | undefined;
|
|
122369
122605
|
pcbRelative?: boolean | undefined;
|
|
122370
122606
|
relative?: boolean | undefined;
|
|
122371
122607
|
schMarginTop?: string | number | undefined;
|
|
@@ -122896,6 +123132,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
122896
123132
|
} | undefined;
|
|
122897
123133
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
122898
123134
|
}>>;
|
|
123135
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
122899
123136
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
122900
123137
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
122901
123138
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -125947,6 +126184,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
125947
126184
|
} | undefined;
|
|
125948
126185
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
125949
126186
|
} | undefined;
|
|
126187
|
+
pcbSx?: PcbSx | undefined;
|
|
125950
126188
|
pcbRelative?: boolean | undefined;
|
|
125951
126189
|
relative?: boolean | undefined;
|
|
125952
126190
|
schMarginTop?: number | undefined;
|
|
@@ -126448,6 +126686,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
126448
126686
|
} | undefined;
|
|
126449
126687
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
126450
126688
|
} | undefined;
|
|
126689
|
+
pcbSx?: PcbSx | undefined;
|
|
126451
126690
|
pcbRelative?: boolean | undefined;
|
|
126452
126691
|
relative?: boolean | undefined;
|
|
126453
126692
|
schMarginTop?: string | number | undefined;
|
|
@@ -126967,6 +127206,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
126967
127206
|
} | undefined;
|
|
126968
127207
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
126969
127208
|
}>>;
|
|
127209
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
126970
127210
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
126971
127211
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
126972
127212
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -130023,6 +130263,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
130023
130263
|
} | undefined;
|
|
130024
130264
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
130025
130265
|
} | undefined;
|
|
130266
|
+
pcbSx?: PcbSx | undefined;
|
|
130026
130267
|
pcbRelative?: boolean | undefined;
|
|
130027
130268
|
relative?: boolean | undefined;
|
|
130028
130269
|
schMarginTop?: number | undefined;
|
|
@@ -130528,6 +130769,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
130528
130769
|
} | undefined;
|
|
130529
130770
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
130530
130771
|
} | undefined;
|
|
130772
|
+
pcbSx?: PcbSx | undefined;
|
|
130531
130773
|
pcbRelative?: boolean | undefined;
|
|
130532
130774
|
relative?: boolean | undefined;
|
|
130533
130775
|
schMarginTop?: string | number | undefined;
|
|
@@ -131033,6 +131275,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
131033
131275
|
} | undefined;
|
|
131034
131276
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
131035
131277
|
} | undefined;
|
|
131278
|
+
pcbSx?: PcbSx | undefined;
|
|
131036
131279
|
pcbRelative?: boolean | undefined;
|
|
131037
131280
|
relative?: boolean | undefined;
|
|
131038
131281
|
schMarginTop?: number | undefined;
|
|
@@ -131538,6 +131781,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
131538
131781
|
} | undefined;
|
|
131539
131782
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
131540
131783
|
} | undefined;
|
|
131784
|
+
pcbSx?: PcbSx | undefined;
|
|
131541
131785
|
pcbRelative?: boolean | undefined;
|
|
131542
131786
|
relative?: boolean | undefined;
|
|
131543
131787
|
schMarginTop?: string | number | undefined;
|
|
@@ -132049,6 +132293,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
132049
132293
|
} | undefined;
|
|
132050
132294
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
132051
132295
|
} | undefined;
|
|
132296
|
+
pcbSx?: PcbSx | undefined;
|
|
132052
132297
|
pcbRelative?: boolean | undefined;
|
|
132053
132298
|
relative?: boolean | undefined;
|
|
132054
132299
|
schMarginTop?: number | undefined;
|
|
@@ -132548,6 +132793,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
132548
132793
|
} | undefined;
|
|
132549
132794
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
132550
132795
|
} | undefined;
|
|
132796
|
+
pcbSx?: PcbSx | undefined;
|
|
132551
132797
|
pcbRelative?: boolean | undefined;
|
|
132552
132798
|
relative?: boolean | undefined;
|
|
132553
132799
|
schMarginTop?: string | number | undefined;
|
|
@@ -133095,6 +133341,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
133095
133341
|
} | undefined;
|
|
133096
133342
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
133097
133343
|
}>>;
|
|
133344
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
133098
133345
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
133099
133346
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
133100
133347
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -136147,6 +136394,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
136147
136394
|
} | undefined;
|
|
136148
136395
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
136149
136396
|
} | undefined;
|
|
136397
|
+
pcbSx?: PcbSx | undefined;
|
|
136150
136398
|
pcbRelative?: boolean | undefined;
|
|
136151
136399
|
relative?: boolean | undefined;
|
|
136152
136400
|
schMarginTop?: number | undefined;
|
|
@@ -136650,6 +136898,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
136650
136898
|
} | undefined;
|
|
136651
136899
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
136652
136900
|
} | undefined;
|
|
136901
|
+
pcbSx?: PcbSx | undefined;
|
|
136653
136902
|
pcbRelative?: boolean | undefined;
|
|
136654
136903
|
relative?: boolean | undefined;
|
|
136655
136904
|
schMarginTop?: string | number | undefined;
|
|
@@ -137188,6 +137437,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
137188
137437
|
} | undefined;
|
|
137189
137438
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
137190
137439
|
}>>;
|
|
137440
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
137191
137441
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
137192
137442
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
137193
137443
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -140248,6 +140498,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
140248
140498
|
} | undefined;
|
|
140249
140499
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
140250
140500
|
} | undefined;
|
|
140501
|
+
pcbSx?: PcbSx | undefined;
|
|
140251
140502
|
pcbRelative?: boolean | undefined;
|
|
140252
140503
|
relative?: boolean | undefined;
|
|
140253
140504
|
schMarginTop?: number | undefined;
|
|
@@ -140756,6 +141007,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
140756
141007
|
} | undefined;
|
|
140757
141008
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
140758
141009
|
} | undefined;
|
|
141010
|
+
pcbSx?: PcbSx | undefined;
|
|
140759
141011
|
pcbRelative?: boolean | undefined;
|
|
140760
141012
|
relative?: boolean | undefined;
|
|
140761
141013
|
schMarginTop?: string | number | undefined;
|
|
@@ -141265,6 +141517,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
141265
141517
|
} | undefined;
|
|
141266
141518
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
141267
141519
|
} | undefined;
|
|
141520
|
+
pcbSx?: PcbSx | undefined;
|
|
141268
141521
|
pcbRelative?: boolean | undefined;
|
|
141269
141522
|
relative?: boolean | undefined;
|
|
141270
141523
|
schMarginTop?: string | number | undefined;
|
|
@@ -141809,6 +142062,7 @@ declare const fabricationNoteTextProps: z.ZodObject<{
|
|
|
141809
142062
|
} | undefined;
|
|
141810
142063
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
141811
142064
|
}>>;
|
|
142065
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
141812
142066
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
141813
142067
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
141814
142068
|
} & {
|
|
@@ -141822,6 +142076,7 @@ declare const fabricationNoteTextProps: z.ZodObject<{
|
|
|
141822
142076
|
text: string;
|
|
141823
142077
|
font?: "tscircuit2024" | undefined;
|
|
141824
142078
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
142079
|
+
fontSize?: number | undefined;
|
|
141825
142080
|
pcbX?: string | number | undefined;
|
|
141826
142081
|
pcbY?: string | number | undefined;
|
|
141827
142082
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -141849,16 +142104,17 @@ declare const fabricationNoteTextProps: z.ZodObject<{
|
|
|
141849
142104
|
} | undefined;
|
|
141850
142105
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
141851
142106
|
} | undefined;
|
|
142107
|
+
pcbSx?: PcbSx | undefined;
|
|
141852
142108
|
pcbRelative?: boolean | undefined;
|
|
141853
142109
|
relative?: boolean | undefined;
|
|
141854
142110
|
color?: string | undefined;
|
|
141855
|
-
fontSize?: number | undefined;
|
|
141856
142111
|
}, {
|
|
141857
142112
|
text: string;
|
|
141858
142113
|
font?: "tscircuit2024" | undefined;
|
|
141859
142114
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
141860
142115
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
141861
142116
|
} | undefined;
|
|
142117
|
+
fontSize?: string | number | undefined;
|
|
141862
142118
|
pcbX?: string | number | undefined;
|
|
141863
142119
|
pcbY?: string | number | undefined;
|
|
141864
142120
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -141886,11 +142142,11 @@ declare const fabricationNoteTextProps: z.ZodObject<{
|
|
|
141886
142142
|
} | undefined;
|
|
141887
142143
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
141888
142144
|
} | undefined;
|
|
142145
|
+
pcbSx?: PcbSx | undefined;
|
|
141889
142146
|
pcbRelative?: boolean | undefined;
|
|
141890
142147
|
relative?: boolean | undefined;
|
|
141891
142148
|
anchorAlignment?: "top_left" | "top_right" | "center" | "bottom_left" | "bottom_right" | undefined;
|
|
141892
142149
|
color?: string | undefined;
|
|
141893
|
-
fontSize?: string | number | undefined;
|
|
141894
142150
|
}>;
|
|
141895
142151
|
type FabricationNoteTextPropsInput = z.input<typeof fabricationNoteTextProps>;
|
|
141896
142152
|
|
|
@@ -141955,6 +142211,7 @@ declare const fabricationNoteRectProps: z.ZodObject<Omit<{
|
|
|
141955
142211
|
} | undefined;
|
|
141956
142212
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
141957
142213
|
}>>;
|
|
142214
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
141958
142215
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
141959
142216
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
141960
142217
|
}, "pcbRotation"> & {
|
|
@@ -141996,6 +142253,7 @@ declare const fabricationNoteRectProps: z.ZodObject<Omit<{
|
|
|
141996
142253
|
} | undefined;
|
|
141997
142254
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
141998
142255
|
} | undefined;
|
|
142256
|
+
pcbSx?: PcbSx | undefined;
|
|
141999
142257
|
pcbRelative?: boolean | undefined;
|
|
142000
142258
|
relative?: boolean | undefined;
|
|
142001
142259
|
strokeWidth?: number | undefined;
|
|
@@ -142036,6 +142294,7 @@ declare const fabricationNoteRectProps: z.ZodObject<Omit<{
|
|
|
142036
142294
|
} | undefined;
|
|
142037
142295
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
142038
142296
|
} | undefined;
|
|
142297
|
+
pcbSx?: PcbSx | undefined;
|
|
142039
142298
|
pcbRelative?: boolean | undefined;
|
|
142040
142299
|
relative?: boolean | undefined;
|
|
142041
142300
|
strokeWidth?: string | number | undefined;
|
|
@@ -142108,6 +142367,7 @@ declare const fabricationNotePathProps: z.ZodObject<Omit<{
|
|
|
142108
142367
|
} | undefined;
|
|
142109
142368
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
142110
142369
|
}>>;
|
|
142370
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
142111
142371
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
142112
142372
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
142113
142373
|
}, "pcbX" | "pcbY" | "pcbLeftEdgeX" | "pcbRightEdgeX" | "pcbTopEdgeY" | "pcbBottomEdgeY" | "pcbOffsetX" | "pcbOffsetY" | "pcbRotation"> & {
|
|
@@ -142169,6 +142429,7 @@ declare const fabricationNotePathProps: z.ZodObject<Omit<{
|
|
|
142169
142429
|
} | undefined;
|
|
142170
142430
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
142171
142431
|
} | undefined;
|
|
142432
|
+
pcbSx?: PcbSx | undefined;
|
|
142172
142433
|
pcbRelative?: boolean | undefined;
|
|
142173
142434
|
relative?: boolean | undefined;
|
|
142174
142435
|
strokeWidth?: number | undefined;
|
|
@@ -142204,6 +142465,7 @@ declare const fabricationNotePathProps: z.ZodObject<Omit<{
|
|
|
142204
142465
|
} | undefined;
|
|
142205
142466
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
142206
142467
|
} | undefined;
|
|
142468
|
+
pcbSx?: PcbSx | undefined;
|
|
142207
142469
|
pcbRelative?: boolean | undefined;
|
|
142208
142470
|
relative?: boolean | undefined;
|
|
142209
142471
|
strokeWidth?: string | number | undefined;
|
|
@@ -142286,6 +142548,7 @@ declare const fabricationNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
142286
142548
|
} | undefined;
|
|
142287
142549
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
142288
142550
|
}>>;
|
|
142551
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
142289
142552
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
142290
142553
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
142291
142554
|
}, "pcbX" | "pcbY" | "pcbLeftEdgeX" | "pcbRightEdgeX" | "pcbTopEdgeY" | "pcbBottomEdgeY" | "pcbOffsetX" | "pcbOffsetY" | "pcbRotation"> & {
|
|
@@ -142331,6 +142594,7 @@ declare const fabricationNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
142331
142594
|
font?: "tscircuit2024" | undefined;
|
|
142332
142595
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
142333
142596
|
offset?: number | undefined;
|
|
142597
|
+
fontSize?: number | undefined;
|
|
142334
142598
|
pcbPositionAnchor?: string | undefined;
|
|
142335
142599
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
142336
142600
|
pcbMarginTop?: number | undefined;
|
|
@@ -142349,12 +142613,12 @@ declare const fabricationNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
142349
142613
|
} | undefined;
|
|
142350
142614
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
142351
142615
|
} | undefined;
|
|
142616
|
+
pcbSx?: PcbSx | undefined;
|
|
142352
142617
|
pcbRelative?: boolean | undefined;
|
|
142353
142618
|
relative?: boolean | undefined;
|
|
142354
142619
|
centerToCenter?: true | undefined;
|
|
142355
142620
|
color?: string | undefined;
|
|
142356
142621
|
text?: string | undefined;
|
|
142357
|
-
fontSize?: number | undefined;
|
|
142358
142622
|
arrowSize?: number | undefined;
|
|
142359
142623
|
units?: "in" | "mm" | undefined;
|
|
142360
142624
|
outerEdgeToEdge?: true | undefined;
|
|
@@ -142373,6 +142637,7 @@ declare const fabricationNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
142373
142637
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
142374
142638
|
} | undefined;
|
|
142375
142639
|
offset?: string | number | undefined;
|
|
142640
|
+
fontSize?: string | number | undefined;
|
|
142376
142641
|
pcbPositionAnchor?: string | undefined;
|
|
142377
142642
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
142378
142643
|
pcbMarginTop?: string | number | undefined;
|
|
@@ -142391,12 +142656,12 @@ declare const fabricationNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
142391
142656
|
} | undefined;
|
|
142392
142657
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
142393
142658
|
} | undefined;
|
|
142659
|
+
pcbSx?: PcbSx | undefined;
|
|
142394
142660
|
pcbRelative?: boolean | undefined;
|
|
142395
142661
|
relative?: boolean | undefined;
|
|
142396
142662
|
centerToCenter?: true | undefined;
|
|
142397
142663
|
color?: string | undefined;
|
|
142398
142664
|
text?: string | undefined;
|
|
142399
|
-
fontSize?: string | number | undefined;
|
|
142400
142665
|
arrowSize?: string | number | undefined;
|
|
142401
142666
|
units?: "in" | "mm" | undefined;
|
|
142402
142667
|
outerEdgeToEdge?: true | undefined;
|
|
@@ -142522,6 +142787,7 @@ declare const viaProps: z.ZodObject<{
|
|
|
142522
142787
|
} | undefined;
|
|
142523
142788
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
142524
142789
|
}>>;
|
|
142790
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
142525
142791
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
142526
142792
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
142527
142793
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -142612,6 +142878,7 @@ declare const viaProps: z.ZodObject<{
|
|
|
142612
142878
|
} | undefined;
|
|
142613
142879
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
142614
142880
|
} | undefined;
|
|
142881
|
+
pcbSx?: PcbSx | undefined;
|
|
142615
142882
|
pcbRelative?: boolean | undefined;
|
|
142616
142883
|
relative?: boolean | undefined;
|
|
142617
142884
|
schMarginTop?: number | undefined;
|
|
@@ -142672,6 +142939,7 @@ declare const viaProps: z.ZodObject<{
|
|
|
142672
142939
|
} | undefined;
|
|
142673
142940
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
142674
142941
|
} | undefined;
|
|
142942
|
+
pcbSx?: PcbSx | undefined;
|
|
142675
142943
|
pcbRelative?: boolean | undefined;
|
|
142676
142944
|
relative?: boolean | undefined;
|
|
142677
142945
|
schMarginTop?: string | number | undefined;
|
|
@@ -142785,6 +143053,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
142785
143053
|
} | undefined;
|
|
142786
143054
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
142787
143055
|
}>>;
|
|
143056
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
142788
143057
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
142789
143058
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
142790
143059
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -145845,6 +146114,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
145845
146114
|
} | undefined;
|
|
145846
146115
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
145847
146116
|
} | undefined;
|
|
146117
|
+
pcbSx?: PcbSx | undefined;
|
|
145848
146118
|
pcbRelative?: boolean | undefined;
|
|
145849
146119
|
relative?: boolean | undefined;
|
|
145850
146120
|
schMarginTop?: number | undefined;
|
|
@@ -146350,6 +146620,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
146350
146620
|
} | undefined;
|
|
146351
146621
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
146352
146622
|
} | undefined;
|
|
146623
|
+
pcbSx?: PcbSx | undefined;
|
|
146353
146624
|
pcbRelative?: boolean | undefined;
|
|
146354
146625
|
relative?: boolean | undefined;
|
|
146355
146626
|
schMarginTop?: string | number | undefined;
|
|
@@ -146855,6 +147126,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
146855
147126
|
} | undefined;
|
|
146856
147127
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
146857
147128
|
} | undefined;
|
|
147129
|
+
pcbSx?: PcbSx | undefined;
|
|
146858
147130
|
pcbRelative?: boolean | undefined;
|
|
146859
147131
|
relative?: boolean | undefined;
|
|
146860
147132
|
schMarginTop?: number | undefined;
|
|
@@ -147360,6 +147632,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
147360
147632
|
} | undefined;
|
|
147361
147633
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
147362
147634
|
} | undefined;
|
|
147635
|
+
pcbSx?: PcbSx | undefined;
|
|
147363
147636
|
pcbRelative?: boolean | undefined;
|
|
147364
147637
|
relative?: boolean | undefined;
|
|
147365
147638
|
schMarginTop?: string | number | undefined;
|
|
@@ -147898,6 +148171,7 @@ declare const breakoutPointProps: z.ZodObject<Omit<{
|
|
|
147898
148171
|
} | undefined;
|
|
147899
148172
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
147900
148173
|
}>>;
|
|
148174
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
147901
148175
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
147902
148176
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
147903
148177
|
}, "layer" | "pcbRotation"> & {
|
|
@@ -147930,6 +148204,7 @@ declare const breakoutPointProps: z.ZodObject<Omit<{
|
|
|
147930
148204
|
} | undefined;
|
|
147931
148205
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
147932
148206
|
} | undefined;
|
|
148207
|
+
pcbSx?: PcbSx | undefined;
|
|
147933
148208
|
pcbRelative?: boolean | undefined;
|
|
147934
148209
|
relative?: boolean | undefined;
|
|
147935
148210
|
}, {
|
|
@@ -147960,6 +148235,7 @@ declare const breakoutPointProps: z.ZodObject<Omit<{
|
|
|
147960
148235
|
} | undefined;
|
|
147961
148236
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
147962
148237
|
} | undefined;
|
|
148238
|
+
pcbSx?: PcbSx | undefined;
|
|
147963
148239
|
pcbRelative?: boolean | undefined;
|
|
147964
148240
|
relative?: boolean | undefined;
|
|
147965
148241
|
}>;
|
|
@@ -148025,6 +148301,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
148025
148301
|
} | undefined;
|
|
148026
148302
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148027
148303
|
}>>;
|
|
148304
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
148028
148305
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
148029
148306
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
148030
148307
|
}, "pcbRotation"> & {
|
|
@@ -148060,6 +148337,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
148060
148337
|
} | undefined;
|
|
148061
148338
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148062
148339
|
} | undefined;
|
|
148340
|
+
pcbSx?: PcbSx | undefined;
|
|
148063
148341
|
pcbRelative?: boolean | undefined;
|
|
148064
148342
|
relative?: boolean | undefined;
|
|
148065
148343
|
}, {
|
|
@@ -148094,6 +148372,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
148094
148372
|
} | undefined;
|
|
148095
148373
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148096
148374
|
} | undefined;
|
|
148375
|
+
pcbSx?: PcbSx | undefined;
|
|
148097
148376
|
pcbRelative?: boolean | undefined;
|
|
148098
148377
|
relative?: boolean | undefined;
|
|
148099
148378
|
}>, z.ZodObject<{
|
|
@@ -148157,6 +148436,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
148157
148436
|
} | undefined;
|
|
148158
148437
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148159
148438
|
}>>;
|
|
148439
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
148160
148440
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
148161
148441
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
148162
148442
|
} & {
|
|
@@ -148195,6 +148475,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
148195
148475
|
} | undefined;
|
|
148196
148476
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148197
148477
|
} | undefined;
|
|
148478
|
+
pcbSx?: PcbSx | undefined;
|
|
148198
148479
|
pcbRelative?: boolean | undefined;
|
|
148199
148480
|
relative?: boolean | undefined;
|
|
148200
148481
|
}, {
|
|
@@ -148231,6 +148512,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
148231
148512
|
} | undefined;
|
|
148232
148513
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148233
148514
|
} | undefined;
|
|
148515
|
+
pcbSx?: PcbSx | undefined;
|
|
148234
148516
|
pcbRelative?: boolean | undefined;
|
|
148235
148517
|
relative?: boolean | undefined;
|
|
148236
148518
|
}>]>;
|
|
@@ -148297,6 +148579,7 @@ declare const courtyardRectProps: z.ZodObject<Omit<{
|
|
|
148297
148579
|
} | undefined;
|
|
148298
148580
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148299
148581
|
}>>;
|
|
148582
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
148300
148583
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
148301
148584
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
148302
148585
|
}, "pcbRotation"> & {
|
|
@@ -148337,6 +148620,7 @@ declare const courtyardRectProps: z.ZodObject<Omit<{
|
|
|
148337
148620
|
} | undefined;
|
|
148338
148621
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148339
148622
|
} | undefined;
|
|
148623
|
+
pcbSx?: PcbSx | undefined;
|
|
148340
148624
|
pcbRelative?: boolean | undefined;
|
|
148341
148625
|
relative?: boolean | undefined;
|
|
148342
148626
|
strokeWidth?: number | undefined;
|
|
@@ -148376,6 +148660,7 @@ declare const courtyardRectProps: z.ZodObject<Omit<{
|
|
|
148376
148660
|
} | undefined;
|
|
148377
148661
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148378
148662
|
} | undefined;
|
|
148663
|
+
pcbSx?: PcbSx | undefined;
|
|
148379
148664
|
pcbRelative?: boolean | undefined;
|
|
148380
148665
|
relative?: boolean | undefined;
|
|
148381
148666
|
strokeWidth?: string | number | undefined;
|
|
@@ -148447,6 +148732,7 @@ declare const courtyardOutlineProps: z.ZodObject<Omit<{
|
|
|
148447
148732
|
} | undefined;
|
|
148448
148733
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148449
148734
|
}>>;
|
|
148735
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
148450
148736
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
148451
148737
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
148452
148738
|
}, "pcbX" | "pcbY" | "pcbLeftEdgeX" | "pcbRightEdgeX" | "pcbTopEdgeY" | "pcbBottomEdgeY" | "pcbOffsetX" | "pcbOffsetY" | "pcbRotation"> & {
|
|
@@ -148488,6 +148774,7 @@ declare const courtyardOutlineProps: z.ZodObject<Omit<{
|
|
|
148488
148774
|
} | undefined;
|
|
148489
148775
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148490
148776
|
} | undefined;
|
|
148777
|
+
pcbSx?: PcbSx | undefined;
|
|
148491
148778
|
pcbRelative?: boolean | undefined;
|
|
148492
148779
|
relative?: boolean | undefined;
|
|
148493
148780
|
strokeWidth?: number | undefined;
|
|
@@ -148520,6 +148807,7 @@ declare const courtyardOutlineProps: z.ZodObject<Omit<{
|
|
|
148520
148807
|
} | undefined;
|
|
148521
148808
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148522
148809
|
} | undefined;
|
|
148810
|
+
pcbSx?: PcbSx | undefined;
|
|
148523
148811
|
pcbRelative?: boolean | undefined;
|
|
148524
148812
|
relative?: boolean | undefined;
|
|
148525
148813
|
strokeWidth?: string | number | undefined;
|
|
@@ -148590,6 +148878,7 @@ declare const courtyardCircleProps: z.ZodObject<Omit<{
|
|
|
148590
148878
|
} | undefined;
|
|
148591
148879
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148592
148880
|
}>>;
|
|
148881
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
148593
148882
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
148594
148883
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
148595
148884
|
}, "pcbRotation"> & {
|
|
@@ -148623,6 +148912,7 @@ declare const courtyardCircleProps: z.ZodObject<Omit<{
|
|
|
148623
148912
|
} | undefined;
|
|
148624
148913
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148625
148914
|
} | undefined;
|
|
148915
|
+
pcbSx?: PcbSx | undefined;
|
|
148626
148916
|
pcbRelative?: boolean | undefined;
|
|
148627
148917
|
relative?: boolean | undefined;
|
|
148628
148918
|
}, {
|
|
@@ -148656,6 +148946,7 @@ declare const courtyardCircleProps: z.ZodObject<Omit<{
|
|
|
148656
148946
|
} | undefined;
|
|
148657
148947
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148658
148948
|
} | undefined;
|
|
148949
|
+
pcbSx?: PcbSx | undefined;
|
|
148659
148950
|
pcbRelative?: boolean | undefined;
|
|
148660
148951
|
relative?: boolean | undefined;
|
|
148661
148952
|
}>;
|
|
@@ -148722,6 +149013,7 @@ declare const courtyardPillProps: z.ZodObject<Omit<{
|
|
|
148722
149013
|
} | undefined;
|
|
148723
149014
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148724
149015
|
}>>;
|
|
149016
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
148725
149017
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
148726
149018
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
148727
149019
|
}, "pcbRotation"> & {
|
|
@@ -148759,6 +149051,7 @@ declare const courtyardPillProps: z.ZodObject<Omit<{
|
|
|
148759
149051
|
} | undefined;
|
|
148760
149052
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148761
149053
|
} | undefined;
|
|
149054
|
+
pcbSx?: PcbSx | undefined;
|
|
148762
149055
|
pcbRelative?: boolean | undefined;
|
|
148763
149056
|
relative?: boolean | undefined;
|
|
148764
149057
|
}, {
|
|
@@ -148794,6 +149087,7 @@ declare const courtyardPillProps: z.ZodObject<Omit<{
|
|
|
148794
149087
|
} | undefined;
|
|
148795
149088
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
148796
149089
|
} | undefined;
|
|
149090
|
+
pcbSx?: PcbSx | undefined;
|
|
148797
149091
|
pcbRelative?: boolean | undefined;
|
|
148798
149092
|
relative?: boolean | undefined;
|
|
148799
149093
|
}>;
|
|
@@ -149089,6 +149383,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
149089
149383
|
} | undefined;
|
|
149090
149384
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
149091
149385
|
}>>;
|
|
149386
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
149092
149387
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
149093
149388
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
149094
149389
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -152137,6 +152432,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
152137
152432
|
} | undefined;
|
|
152138
152433
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
152139
152434
|
} | undefined;
|
|
152435
|
+
pcbSx?: PcbSx | undefined;
|
|
152140
152436
|
pcbRelative?: boolean | undefined;
|
|
152141
152437
|
relative?: boolean | undefined;
|
|
152142
152438
|
schMarginTop?: number | undefined;
|
|
@@ -152635,6 +152931,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
152635
152931
|
} | undefined;
|
|
152636
152932
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
152637
152933
|
} | undefined;
|
|
152934
|
+
pcbSx?: PcbSx | undefined;
|
|
152638
152935
|
pcbRelative?: boolean | undefined;
|
|
152639
152936
|
relative?: boolean | undefined;
|
|
152640
152937
|
schMarginTop?: string | number | undefined;
|
|
@@ -153164,6 +153461,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
153164
153461
|
} | undefined;
|
|
153165
153462
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
153166
153463
|
}>>;
|
|
153464
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
153167
153465
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
153168
153466
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
153169
153467
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -156217,6 +156515,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
156217
156515
|
} | undefined;
|
|
156218
156516
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
156219
156517
|
} | undefined;
|
|
156518
|
+
pcbSx?: PcbSx | undefined;
|
|
156220
156519
|
pcbRelative?: boolean | undefined;
|
|
156221
156520
|
relative?: boolean | undefined;
|
|
156222
156521
|
schMarginTop?: number | undefined;
|
|
@@ -156721,6 +157020,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
156721
157020
|
} | undefined;
|
|
156722
157021
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
156723
157022
|
} | undefined;
|
|
157023
|
+
pcbSx?: PcbSx | undefined;
|
|
156724
157024
|
pcbRelative?: boolean | undefined;
|
|
156725
157025
|
relative?: boolean | undefined;
|
|
156726
157026
|
schMarginTop?: string | number | undefined;
|
|
@@ -157256,6 +157556,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
157256
157556
|
} | undefined;
|
|
157257
157557
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
157258
157558
|
}>>;
|
|
157559
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
157259
157560
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
157260
157561
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
157261
157562
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -160309,6 +160610,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
160309
160610
|
} | undefined;
|
|
160310
160611
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
160311
160612
|
} | undefined;
|
|
160613
|
+
pcbSx?: PcbSx | undefined;
|
|
160312
160614
|
pcbRelative?: boolean | undefined;
|
|
160313
160615
|
relative?: boolean | undefined;
|
|
160314
160616
|
schMarginTop?: number | undefined;
|
|
@@ -160813,6 +161115,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
160813
161115
|
} | undefined;
|
|
160814
161116
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
160815
161117
|
} | undefined;
|
|
161118
|
+
pcbSx?: PcbSx | undefined;
|
|
160816
161119
|
pcbRelative?: boolean | undefined;
|
|
160817
161120
|
relative?: boolean | undefined;
|
|
160818
161121
|
schMarginTop?: string | number | undefined;
|
|
@@ -161343,6 +161646,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
161343
161646
|
} | undefined;
|
|
161344
161647
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
161345
161648
|
}>>;
|
|
161649
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
161346
161650
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
161347
161651
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
161348
161652
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -164394,6 +164698,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
164394
164698
|
} | undefined;
|
|
164395
164699
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
164396
164700
|
} | undefined;
|
|
164701
|
+
pcbSx?: PcbSx | undefined;
|
|
164397
164702
|
pcbRelative?: boolean | undefined;
|
|
164398
164703
|
relative?: boolean | undefined;
|
|
164399
164704
|
schMarginTop?: number | undefined;
|
|
@@ -164894,6 +165199,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
164894
165199
|
} | undefined;
|
|
164895
165200
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
164896
165201
|
} | undefined;
|
|
165202
|
+
pcbSx?: PcbSx | undefined;
|
|
164897
165203
|
pcbRelative?: boolean | undefined;
|
|
164898
165204
|
relative?: boolean | undefined;
|
|
164899
165205
|
schMarginTop?: string | number | undefined;
|
|
@@ -165717,20 +166023,20 @@ declare const schematicTextProps: z.ZodObject<{
|
|
|
165717
166023
|
schRotation: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
165718
166024
|
}, "strip", z.ZodTypeAny, {
|
|
165719
166025
|
anchor: "left" | "right" | "top" | "bottom" | "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
166026
|
+
fontSize: number;
|
|
165720
166027
|
schRotation: number;
|
|
165721
166028
|
color: string;
|
|
165722
166029
|
text: string;
|
|
165723
|
-
fontSize: number;
|
|
165724
166030
|
schX?: number | undefined;
|
|
165725
166031
|
schY?: number | undefined;
|
|
165726
166032
|
}, {
|
|
165727
166033
|
text: string;
|
|
165728
166034
|
anchor?: "left" | "right" | "top" | "bottom" | "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
166035
|
+
fontSize?: number | undefined;
|
|
165729
166036
|
schX?: string | number | undefined;
|
|
165730
166037
|
schY?: string | number | undefined;
|
|
165731
166038
|
schRotation?: string | number | undefined;
|
|
165732
166039
|
color?: string | undefined;
|
|
165733
|
-
fontSize?: number | undefined;
|
|
165734
166040
|
}>;
|
|
165735
166041
|
interface SchematicTextProps {
|
|
165736
166042
|
schX?: Distance;
|
|
@@ -165800,18 +166106,18 @@ declare const schematicTableProps: z.ZodObject<{
|
|
|
165800
166106
|
fontSize: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
165801
166107
|
}, "strip", z.ZodTypeAny, {
|
|
165802
166108
|
anchor?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
166109
|
+
fontSize?: number | undefined;
|
|
165803
166110
|
schX?: number | undefined;
|
|
165804
166111
|
schY?: number | undefined;
|
|
165805
166112
|
children?: any;
|
|
165806
|
-
fontSize?: number | undefined;
|
|
165807
166113
|
cellPadding?: number | undefined;
|
|
165808
166114
|
borderWidth?: number | undefined;
|
|
165809
166115
|
}, {
|
|
165810
166116
|
anchor?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
166117
|
+
fontSize?: string | number | undefined;
|
|
165811
166118
|
schX?: string | number | undefined;
|
|
165812
166119
|
schY?: string | number | undefined;
|
|
165813
166120
|
children?: any;
|
|
165814
|
-
fontSize?: string | number | undefined;
|
|
165815
166121
|
cellPadding?: string | number | undefined;
|
|
165816
166122
|
borderWidth?: string | number | undefined;
|
|
165817
166123
|
}>;
|
|
@@ -165850,19 +166156,19 @@ declare const schematicCellProps: z.ZodObject<{
|
|
|
165850
166156
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
165851
166157
|
text: z.ZodOptional<z.ZodString>;
|
|
165852
166158
|
}, "strip", z.ZodTypeAny, {
|
|
166159
|
+
fontSize?: number | undefined;
|
|
165853
166160
|
children?: string | undefined;
|
|
165854
166161
|
width?: number | undefined;
|
|
165855
166162
|
text?: string | undefined;
|
|
165856
|
-
fontSize?: number | undefined;
|
|
165857
166163
|
horizontalAlign?: "left" | "right" | "center" | undefined;
|
|
165858
166164
|
verticalAlign?: "top" | "bottom" | "middle" | undefined;
|
|
165859
166165
|
rowSpan?: number | undefined;
|
|
165860
166166
|
colSpan?: number | undefined;
|
|
165861
166167
|
}, {
|
|
166168
|
+
fontSize?: string | number | undefined;
|
|
165862
166169
|
children?: string | undefined;
|
|
165863
166170
|
width?: string | number | undefined;
|
|
165864
166171
|
text?: string | undefined;
|
|
165865
|
-
fontSize?: string | number | undefined;
|
|
165866
166172
|
horizontalAlign?: "left" | "right" | "center" | undefined;
|
|
165867
166173
|
verticalAlign?: "top" | "bottom" | "middle" | undefined;
|
|
165868
166174
|
rowSpan?: number | undefined;
|
|
@@ -165940,6 +166246,7 @@ declare const copperTextProps: z.ZodObject<{
|
|
|
165940
166246
|
} | undefined;
|
|
165941
166247
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
165942
166248
|
}>>;
|
|
166249
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
165943
166250
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
165944
166251
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
165945
166252
|
} & {
|
|
@@ -165964,6 +166271,7 @@ declare const copperTextProps: z.ZodObject<{
|
|
|
165964
166271
|
font?: "tscircuit2024" | undefined;
|
|
165965
166272
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
165966
166273
|
layers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[] | undefined;
|
|
166274
|
+
fontSize?: number | undefined;
|
|
165967
166275
|
pcbX?: string | number | undefined;
|
|
165968
166276
|
pcbY?: string | number | undefined;
|
|
165969
166277
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -165991,9 +166299,9 @@ declare const copperTextProps: z.ZodObject<{
|
|
|
165991
166299
|
} | undefined;
|
|
165992
166300
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
165993
166301
|
} | undefined;
|
|
166302
|
+
pcbSx?: PcbSx | undefined;
|
|
165994
166303
|
pcbRelative?: boolean | undefined;
|
|
165995
166304
|
relative?: boolean | undefined;
|
|
165996
|
-
fontSize?: number | undefined;
|
|
165997
166305
|
knockout?: boolean | undefined;
|
|
165998
166306
|
mirrored?: boolean | undefined;
|
|
165999
166307
|
}, {
|
|
@@ -166005,6 +166313,7 @@ declare const copperTextProps: z.ZodObject<{
|
|
|
166005
166313
|
layers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
166006
166314
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
166007
166315
|
})[] | undefined;
|
|
166316
|
+
fontSize?: string | number | undefined;
|
|
166008
166317
|
pcbX?: string | number | undefined;
|
|
166009
166318
|
pcbY?: string | number | undefined;
|
|
166010
166319
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -166032,10 +166341,10 @@ declare const copperTextProps: z.ZodObject<{
|
|
|
166032
166341
|
} | undefined;
|
|
166033
166342
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
166034
166343
|
} | undefined;
|
|
166344
|
+
pcbSx?: PcbSx | undefined;
|
|
166035
166345
|
pcbRelative?: boolean | undefined;
|
|
166036
166346
|
relative?: boolean | undefined;
|
|
166037
166347
|
anchorAlignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
166038
|
-
fontSize?: string | number | undefined;
|
|
166039
166348
|
knockout?: boolean | undefined;
|
|
166040
166349
|
mirrored?: boolean | undefined;
|
|
166041
166350
|
}>;
|
|
@@ -166102,6 +166411,7 @@ declare const silkscreenTextProps: z.ZodObject<{
|
|
|
166102
166411
|
} | undefined;
|
|
166103
166412
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
166104
166413
|
}>>;
|
|
166414
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
166105
166415
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
166106
166416
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
166107
166417
|
} & {
|
|
@@ -166133,6 +166443,7 @@ declare const silkscreenTextProps: z.ZodObject<{
|
|
|
166133
166443
|
font?: "tscircuit2024" | undefined;
|
|
166134
166444
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
166135
166445
|
layers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[] | undefined;
|
|
166446
|
+
fontSize?: number | undefined;
|
|
166136
166447
|
pcbX?: string | number | undefined;
|
|
166137
166448
|
pcbY?: string | number | undefined;
|
|
166138
166449
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -166160,9 +166471,9 @@ declare const silkscreenTextProps: z.ZodObject<{
|
|
|
166160
166471
|
} | undefined;
|
|
166161
166472
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
166162
166473
|
} | undefined;
|
|
166474
|
+
pcbSx?: PcbSx | undefined;
|
|
166163
166475
|
pcbRelative?: boolean | undefined;
|
|
166164
166476
|
relative?: boolean | undefined;
|
|
166165
|
-
fontSize?: number | undefined;
|
|
166166
166477
|
isKnockout?: boolean | undefined;
|
|
166167
166478
|
knockoutPadding?: number | undefined;
|
|
166168
166479
|
knockoutPaddingLeft?: number | undefined;
|
|
@@ -166178,6 +166489,7 @@ declare const silkscreenTextProps: z.ZodObject<{
|
|
|
166178
166489
|
layers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
166179
166490
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
166180
166491
|
})[] | undefined;
|
|
166492
|
+
fontSize?: string | number | undefined;
|
|
166181
166493
|
pcbX?: string | number | undefined;
|
|
166182
166494
|
pcbY?: string | number | undefined;
|
|
166183
166495
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -166205,10 +166517,10 @@ declare const silkscreenTextProps: z.ZodObject<{
|
|
|
166205
166517
|
} | undefined;
|
|
166206
166518
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
166207
166519
|
} | undefined;
|
|
166520
|
+
pcbSx?: PcbSx | undefined;
|
|
166208
166521
|
pcbRelative?: boolean | undefined;
|
|
166209
166522
|
relative?: boolean | undefined;
|
|
166210
166523
|
anchorAlignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
166211
|
-
fontSize?: string | number | undefined;
|
|
166212
166524
|
isKnockout?: boolean | undefined;
|
|
166213
166525
|
knockoutPadding?: string | number | undefined;
|
|
166214
166526
|
knockoutPaddingLeft?: string | number | undefined;
|
|
@@ -166279,6 +166591,7 @@ declare const silkscreenPathProps: z.ZodObject<Omit<{
|
|
|
166279
166591
|
} | undefined;
|
|
166280
166592
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
166281
166593
|
}>>;
|
|
166594
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
166282
166595
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
166283
166596
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
166284
166597
|
}, "pcbX" | "pcbY" | "pcbLeftEdgeX" | "pcbRightEdgeX" | "pcbTopEdgeY" | "pcbBottomEdgeY" | "pcbOffsetX" | "pcbOffsetY" | "pcbRotation"> & {
|
|
@@ -166339,6 +166652,7 @@ declare const silkscreenPathProps: z.ZodObject<Omit<{
|
|
|
166339
166652
|
} | undefined;
|
|
166340
166653
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
166341
166654
|
} | undefined;
|
|
166655
|
+
pcbSx?: PcbSx | undefined;
|
|
166342
166656
|
pcbRelative?: boolean | undefined;
|
|
166343
166657
|
relative?: boolean | undefined;
|
|
166344
166658
|
strokeWidth?: number | undefined;
|
|
@@ -166373,6 +166687,7 @@ declare const silkscreenPathProps: z.ZodObject<Omit<{
|
|
|
166373
166687
|
} | undefined;
|
|
166374
166688
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
166375
166689
|
} | undefined;
|
|
166690
|
+
pcbSx?: PcbSx | undefined;
|
|
166376
166691
|
pcbRelative?: boolean | undefined;
|
|
166377
166692
|
relative?: boolean | undefined;
|
|
166378
166693
|
strokeWidth?: string | number | undefined;
|
|
@@ -166440,6 +166755,7 @@ declare const silkscreenLineProps: z.ZodObject<Omit<{
|
|
|
166440
166755
|
} | undefined;
|
|
166441
166756
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
166442
166757
|
}>>;
|
|
166758
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
166443
166759
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
166444
166760
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
166445
166761
|
}, "pcbX" | "pcbY" | "pcbOffsetX" | "pcbOffsetY" | "pcbRotation"> & {
|
|
@@ -166477,6 +166793,7 @@ declare const silkscreenLineProps: z.ZodObject<Omit<{
|
|
|
166477
166793
|
} | undefined;
|
|
166478
166794
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
166479
166795
|
} | undefined;
|
|
166796
|
+
pcbSx?: PcbSx | undefined;
|
|
166480
166797
|
pcbRelative?: boolean | undefined;
|
|
166481
166798
|
relative?: boolean | undefined;
|
|
166482
166799
|
}, {
|
|
@@ -166510,6 +166827,7 @@ declare const silkscreenLineProps: z.ZodObject<Omit<{
|
|
|
166510
166827
|
} | undefined;
|
|
166511
166828
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
166512
166829
|
} | undefined;
|
|
166830
|
+
pcbSx?: PcbSx | undefined;
|
|
166513
166831
|
pcbRelative?: boolean | undefined;
|
|
166514
166832
|
relative?: boolean | undefined;
|
|
166515
166833
|
}>;
|
|
@@ -166576,6 +166894,7 @@ declare const silkscreenRectProps: z.ZodObject<Omit<{
|
|
|
166576
166894
|
} | undefined;
|
|
166577
166895
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
166578
166896
|
}>>;
|
|
166897
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
166579
166898
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
166580
166899
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
166581
166900
|
}, "pcbRotation"> & {
|
|
@@ -166615,6 +166934,7 @@ declare const silkscreenRectProps: z.ZodObject<Omit<{
|
|
|
166615
166934
|
} | undefined;
|
|
166616
166935
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
166617
166936
|
} | undefined;
|
|
166937
|
+
pcbSx?: PcbSx | undefined;
|
|
166618
166938
|
pcbRelative?: boolean | undefined;
|
|
166619
166939
|
relative?: boolean | undefined;
|
|
166620
166940
|
strokeWidth?: number | undefined;
|
|
@@ -166653,6 +166973,7 @@ declare const silkscreenRectProps: z.ZodObject<Omit<{
|
|
|
166653
166973
|
} | undefined;
|
|
166654
166974
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
166655
166975
|
} | undefined;
|
|
166976
|
+
pcbSx?: PcbSx | undefined;
|
|
166656
166977
|
pcbRelative?: boolean | undefined;
|
|
166657
166978
|
relative?: boolean | undefined;
|
|
166658
166979
|
strokeWidth?: string | number | undefined;
|
|
@@ -166723,6 +167044,7 @@ declare const silkscreenCircleProps: z.ZodObject<Omit<{
|
|
|
166723
167044
|
} | undefined;
|
|
166724
167045
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
166725
167046
|
}>>;
|
|
167047
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
166726
167048
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
166727
167049
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
166728
167050
|
}, "pcbRotation"> & {
|
|
@@ -166759,6 +167081,7 @@ declare const silkscreenCircleProps: z.ZodObject<Omit<{
|
|
|
166759
167081
|
} | undefined;
|
|
166760
167082
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
166761
167083
|
} | undefined;
|
|
167084
|
+
pcbSx?: PcbSx | undefined;
|
|
166762
167085
|
pcbRelative?: boolean | undefined;
|
|
166763
167086
|
relative?: boolean | undefined;
|
|
166764
167087
|
strokeWidth?: number | undefined;
|
|
@@ -166795,6 +167118,7 @@ declare const silkscreenCircleProps: z.ZodObject<Omit<{
|
|
|
166795
167118
|
} | undefined;
|
|
166796
167119
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
166797
167120
|
} | undefined;
|
|
167121
|
+
pcbSx?: PcbSx | undefined;
|
|
166798
167122
|
pcbRelative?: boolean | undefined;
|
|
166799
167123
|
relative?: boolean | undefined;
|
|
166800
167124
|
strokeWidth?: string | number | undefined;
|
|
@@ -167060,6 +167384,7 @@ declare const portProps: z.ZodObject<{
|
|
|
167060
167384
|
} | undefined;
|
|
167061
167385
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
167062
167386
|
}>>;
|
|
167387
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
167063
167388
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
167064
167389
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
167065
167390
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -167150,6 +167475,7 @@ declare const portProps: z.ZodObject<{
|
|
|
167150
167475
|
} | undefined;
|
|
167151
167476
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
167152
167477
|
} | undefined;
|
|
167478
|
+
pcbSx?: PcbSx | undefined;
|
|
167153
167479
|
pcbRelative?: boolean | undefined;
|
|
167154
167480
|
relative?: boolean | undefined;
|
|
167155
167481
|
schMarginTop?: number | undefined;
|
|
@@ -167211,6 +167537,7 @@ declare const portProps: z.ZodObject<{
|
|
|
167211
167537
|
} | undefined;
|
|
167212
167538
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
167213
167539
|
} | undefined;
|
|
167540
|
+
pcbSx?: PcbSx | undefined;
|
|
167214
167541
|
pcbRelative?: boolean | undefined;
|
|
167215
167542
|
relative?: boolean | undefined;
|
|
167216
167543
|
schMarginTop?: string | number | undefined;
|
|
@@ -167309,6 +167636,7 @@ declare const pcbNoteTextProps: z.ZodObject<{
|
|
|
167309
167636
|
} | undefined;
|
|
167310
167637
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
167311
167638
|
}>>;
|
|
167639
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
167312
167640
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
167313
167641
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
167314
167642
|
} & {
|
|
@@ -167322,6 +167650,7 @@ declare const pcbNoteTextProps: z.ZodObject<{
|
|
|
167322
167650
|
text: string;
|
|
167323
167651
|
font?: "tscircuit2024" | undefined;
|
|
167324
167652
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
167653
|
+
fontSize?: number | undefined;
|
|
167325
167654
|
pcbX?: string | number | undefined;
|
|
167326
167655
|
pcbY?: string | number | undefined;
|
|
167327
167656
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -167349,16 +167678,17 @@ declare const pcbNoteTextProps: z.ZodObject<{
|
|
|
167349
167678
|
} | undefined;
|
|
167350
167679
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
167351
167680
|
} | undefined;
|
|
167681
|
+
pcbSx?: PcbSx | undefined;
|
|
167352
167682
|
pcbRelative?: boolean | undefined;
|
|
167353
167683
|
relative?: boolean | undefined;
|
|
167354
167684
|
color?: string | undefined;
|
|
167355
|
-
fontSize?: number | undefined;
|
|
167356
167685
|
}, {
|
|
167357
167686
|
text: string;
|
|
167358
167687
|
font?: "tscircuit2024" | undefined;
|
|
167359
167688
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
167360
167689
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
167361
167690
|
} | undefined;
|
|
167691
|
+
fontSize?: string | number | undefined;
|
|
167362
167692
|
pcbX?: string | number | undefined;
|
|
167363
167693
|
pcbY?: string | number | undefined;
|
|
167364
167694
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -167386,11 +167716,11 @@ declare const pcbNoteTextProps: z.ZodObject<{
|
|
|
167386
167716
|
} | undefined;
|
|
167387
167717
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
167388
167718
|
} | undefined;
|
|
167719
|
+
pcbSx?: PcbSx | undefined;
|
|
167389
167720
|
pcbRelative?: boolean | undefined;
|
|
167390
167721
|
relative?: boolean | undefined;
|
|
167391
167722
|
anchorAlignment?: "top_left" | "top_right" | "center" | "bottom_left" | "bottom_right" | undefined;
|
|
167392
167723
|
color?: string | undefined;
|
|
167393
|
-
fontSize?: string | number | undefined;
|
|
167394
167724
|
}>;
|
|
167395
167725
|
type PcbNoteTextPropsInput = z.input<typeof pcbNoteTextProps>;
|
|
167396
167726
|
|
|
@@ -167465,6 +167795,7 @@ declare const pcbNoteRectProps: z.ZodObject<Omit<{
|
|
|
167465
167795
|
} | undefined;
|
|
167466
167796
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
167467
167797
|
}>>;
|
|
167798
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
167468
167799
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
167469
167800
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
167470
167801
|
}, "pcbRotation"> & {
|
|
@@ -167506,6 +167837,7 @@ declare const pcbNoteRectProps: z.ZodObject<Omit<{
|
|
|
167506
167837
|
} | undefined;
|
|
167507
167838
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
167508
167839
|
} | undefined;
|
|
167840
|
+
pcbSx?: PcbSx | undefined;
|
|
167509
167841
|
pcbRelative?: boolean | undefined;
|
|
167510
167842
|
relative?: boolean | undefined;
|
|
167511
167843
|
strokeWidth?: number | undefined;
|
|
@@ -167546,6 +167878,7 @@ declare const pcbNoteRectProps: z.ZodObject<Omit<{
|
|
|
167546
167878
|
} | undefined;
|
|
167547
167879
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
167548
167880
|
} | undefined;
|
|
167881
|
+
pcbSx?: PcbSx | undefined;
|
|
167549
167882
|
pcbRelative?: boolean | undefined;
|
|
167550
167883
|
relative?: boolean | undefined;
|
|
167551
167884
|
strokeWidth?: string | number | undefined;
|
|
@@ -167623,6 +167956,7 @@ declare const pcbNotePathProps: z.ZodObject<Omit<{
|
|
|
167623
167956
|
} | undefined;
|
|
167624
167957
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
167625
167958
|
}>>;
|
|
167959
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
167626
167960
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
167627
167961
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
167628
167962
|
}, "pcbX" | "pcbY" | "pcbLeftEdgeX" | "pcbRightEdgeX" | "pcbTopEdgeY" | "pcbBottomEdgeY" | "pcbOffsetX" | "pcbOffsetY" | "pcbRotation"> & {
|
|
@@ -167684,6 +168018,7 @@ declare const pcbNotePathProps: z.ZodObject<Omit<{
|
|
|
167684
168018
|
} | undefined;
|
|
167685
168019
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
167686
168020
|
} | undefined;
|
|
168021
|
+
pcbSx?: PcbSx | undefined;
|
|
167687
168022
|
pcbRelative?: boolean | undefined;
|
|
167688
168023
|
relative?: boolean | undefined;
|
|
167689
168024
|
strokeWidth?: number | undefined;
|
|
@@ -167719,6 +168054,7 @@ declare const pcbNotePathProps: z.ZodObject<Omit<{
|
|
|
167719
168054
|
} | undefined;
|
|
167720
168055
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
167721
168056
|
} | undefined;
|
|
168057
|
+
pcbSx?: PcbSx | undefined;
|
|
167722
168058
|
pcbRelative?: boolean | undefined;
|
|
167723
168059
|
relative?: boolean | undefined;
|
|
167724
168060
|
strokeWidth?: string | number | undefined;
|
|
@@ -167796,6 +168132,7 @@ declare const pcbNoteLineProps: z.ZodObject<Omit<{
|
|
|
167796
168132
|
} | undefined;
|
|
167797
168133
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
167798
168134
|
}>>;
|
|
168135
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
167799
168136
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
167800
168137
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
167801
168138
|
}, "pcbX" | "pcbY" | "pcbLeftEdgeX" | "pcbRightEdgeX" | "pcbTopEdgeY" | "pcbBottomEdgeY" | "pcbOffsetX" | "pcbOffsetY" | "pcbRotation"> & {
|
|
@@ -167830,6 +168167,7 @@ declare const pcbNoteLineProps: z.ZodObject<Omit<{
|
|
|
167830
168167
|
} | undefined;
|
|
167831
168168
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
167832
168169
|
} | undefined;
|
|
168170
|
+
pcbSx?: PcbSx | undefined;
|
|
167833
168171
|
pcbRelative?: boolean | undefined;
|
|
167834
168172
|
relative?: boolean | undefined;
|
|
167835
168173
|
strokeWidth?: number | undefined;
|
|
@@ -167861,6 +168199,7 @@ declare const pcbNoteLineProps: z.ZodObject<Omit<{
|
|
|
167861
168199
|
} | undefined;
|
|
167862
168200
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
167863
168201
|
} | undefined;
|
|
168202
|
+
pcbSx?: PcbSx | undefined;
|
|
167864
168203
|
pcbRelative?: boolean | undefined;
|
|
167865
168204
|
relative?: boolean | undefined;
|
|
167866
168205
|
strokeWidth?: string | number | undefined;
|
|
@@ -167944,6 +168283,7 @@ declare const pcbNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
167944
168283
|
} | undefined;
|
|
167945
168284
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
167946
168285
|
}>>;
|
|
168286
|
+
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
167947
168287
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
167948
168288
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
167949
168289
|
}, "pcbX" | "pcbY" | "pcbLeftEdgeX" | "pcbRightEdgeX" | "pcbTopEdgeY" | "pcbBottomEdgeY" | "pcbOffsetX" | "pcbOffsetY" | "pcbRotation"> & {
|
|
@@ -167989,6 +168329,7 @@ declare const pcbNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
167989
168329
|
font?: "tscircuit2024" | undefined;
|
|
167990
168330
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
167991
168331
|
offset?: number | undefined;
|
|
168332
|
+
fontSize?: number | undefined;
|
|
167992
168333
|
pcbPositionAnchor?: string | undefined;
|
|
167993
168334
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
167994
168335
|
pcbMarginTop?: number | undefined;
|
|
@@ -168007,12 +168348,12 @@ declare const pcbNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
168007
168348
|
} | undefined;
|
|
168008
168349
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
168009
168350
|
} | undefined;
|
|
168351
|
+
pcbSx?: PcbSx | undefined;
|
|
168010
168352
|
pcbRelative?: boolean | undefined;
|
|
168011
168353
|
relative?: boolean | undefined;
|
|
168012
168354
|
centerToCenter?: true | undefined;
|
|
168013
168355
|
color?: string | undefined;
|
|
168014
168356
|
text?: string | undefined;
|
|
168015
|
-
fontSize?: number | undefined;
|
|
168016
168357
|
arrowSize?: number | undefined;
|
|
168017
168358
|
units?: "in" | "mm" | undefined;
|
|
168018
168359
|
outerEdgeToEdge?: true | undefined;
|
|
@@ -168031,6 +168372,7 @@ declare const pcbNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
168031
168372
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
168032
168373
|
} | undefined;
|
|
168033
168374
|
offset?: string | number | undefined;
|
|
168375
|
+
fontSize?: string | number | undefined;
|
|
168034
168376
|
pcbPositionAnchor?: string | undefined;
|
|
168035
168377
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
168036
168378
|
pcbMarginTop?: string | number | undefined;
|
|
@@ -168049,12 +168391,12 @@ declare const pcbNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
168049
168391
|
} | undefined;
|
|
168050
168392
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
168051
168393
|
} | undefined;
|
|
168394
|
+
pcbSx?: PcbSx | undefined;
|
|
168052
168395
|
pcbRelative?: boolean | undefined;
|
|
168053
168396
|
relative?: boolean | undefined;
|
|
168054
168397
|
centerToCenter?: true | undefined;
|
|
168055
168398
|
color?: string | undefined;
|
|
168056
168399
|
text?: string | undefined;
|
|
168057
|
-
fontSize?: string | number | undefined;
|
|
168058
168400
|
arrowSize?: string | number | undefined;
|
|
168059
168401
|
units?: "in" | "mm" | undefined;
|
|
168060
168402
|
outerEdgeToEdge?: true | undefined;
|
|
@@ -168120,4 +168462,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
168120
168462
|
}
|
|
168121
168463
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
168122
168464
|
|
|
168123
|
-
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 CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, 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 FiducialProps, type FootprintFileParserEntry, 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 InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, 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 OvalPlatedHoleProps, type PanelProps, 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 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 PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, 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 SchematicSymbolSize, 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 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, analogSimulationProps, autorouterConfig, autorouterEffortLevel, 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, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, 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, fiducialProps, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, 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, 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, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
168465
|
+
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 CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, 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 FiducialProps, type FootprintFileParserEntry, 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 InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, 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 OvalPlatedHoleProps, type PanelProps, 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 PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, 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 PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, 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 SchematicSymbolSize, 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 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, analogSimulationProps, autorouterConfig, autorouterEffortLevel, 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, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, 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, fiducialProps, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, 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, 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, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|