@tscircuit/props 0.0.481 → 0.0.482
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 +317 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6065,6 +6065,7 @@ interface PcbLayoutProps {
|
|
|
6065
6065
|
pcbRotation?: string | number;
|
|
6066
6066
|
pcbPositionAnchor?: string;
|
|
6067
6067
|
pcbPositionMode?: PcbPositionMode;
|
|
6068
|
+
shouldBeOnEdgeOfBoard?: boolean;
|
|
6068
6069
|
layer?: LayerRefInput;
|
|
6069
6070
|
pcbMarginTop?: string | number;
|
|
6070
6071
|
pcbMarginRight?: string | number;
|
|
@@ -6099,6 +6100,7 @@ interface CommonLayoutProps {
|
|
|
6099
6100
|
pcbRotation?: string | number;
|
|
6100
6101
|
pcbPositionAnchor?: string;
|
|
6101
6102
|
pcbPositionMode?: PcbPositionMode;
|
|
6103
|
+
shouldBeOnEdgeOfBoard?: boolean;
|
|
6102
6104
|
pcbMarginTop?: string | number;
|
|
6103
6105
|
pcbMarginRight?: string | number;
|
|
6104
6106
|
pcbMarginBottom?: string | number;
|
|
@@ -6145,6 +6147,7 @@ declare const pcbLayoutProps: z.ZodObject<{
|
|
|
6145
6147
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6146
6148
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
6147
6149
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
6150
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
6148
6151
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
6149
6152
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
6150
6153
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6210,6 +6213,7 @@ declare const pcbLayoutProps: z.ZodObject<{
|
|
|
6210
6213
|
pcbRotation?: number | undefined;
|
|
6211
6214
|
pcbPositionAnchor?: string | undefined;
|
|
6212
6215
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
6216
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
6213
6217
|
pcbMarginTop?: number | undefined;
|
|
6214
6218
|
pcbMarginRight?: number | undefined;
|
|
6215
6219
|
pcbMarginBottom?: number | undefined;
|
|
@@ -6244,6 +6248,7 @@ declare const pcbLayoutProps: z.ZodObject<{
|
|
|
6244
6248
|
pcbRotation?: string | number | undefined;
|
|
6245
6249
|
pcbPositionAnchor?: string | undefined;
|
|
6246
6250
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
6251
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
6247
6252
|
pcbMarginTop?: string | number | undefined;
|
|
6248
6253
|
pcbMarginRight?: string | number | undefined;
|
|
6249
6254
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -6276,6 +6281,7 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
6276
6281
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6277
6282
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
6278
6283
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
6284
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
6279
6285
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6280
6286
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6281
6287
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6364,6 +6370,7 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
6364
6370
|
pcbRotation?: number | undefined;
|
|
6365
6371
|
pcbPositionAnchor?: string | undefined;
|
|
6366
6372
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
6373
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
6367
6374
|
pcbMarginTop?: number | undefined;
|
|
6368
6375
|
pcbMarginRight?: number | undefined;
|
|
6369
6376
|
pcbMarginBottom?: number | undefined;
|
|
@@ -6414,6 +6421,7 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
6414
6421
|
pcbRotation?: string | number | undefined;
|
|
6415
6422
|
pcbPositionAnchor?: string | undefined;
|
|
6416
6423
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
6424
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
6417
6425
|
pcbMarginTop?: string | number | undefined;
|
|
6418
6426
|
pcbMarginRight?: string | number | undefined;
|
|
6419
6427
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -6603,6 +6611,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
6603
6611
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6604
6612
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
6605
6613
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
6614
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
6606
6615
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6607
6616
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6608
6617
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -9735,6 +9744,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9735
9744
|
pcbRotation?: number | undefined;
|
|
9736
9745
|
pcbPositionAnchor?: string | undefined;
|
|
9737
9746
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
9747
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
9738
9748
|
pcbMarginTop?: number | undefined;
|
|
9739
9749
|
pcbMarginRight?: number | undefined;
|
|
9740
9750
|
pcbMarginBottom?: number | undefined;
|
|
@@ -10254,6 +10264,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
10254
10264
|
pcbRotation?: string | number | undefined;
|
|
10255
10265
|
pcbPositionAnchor?: string | undefined;
|
|
10256
10266
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
10267
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
10257
10268
|
pcbMarginTop?: string | number | undefined;
|
|
10258
10269
|
pcbMarginRight?: string | number | undefined;
|
|
10259
10270
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -10766,6 +10777,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
10766
10777
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
10767
10778
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
10768
10779
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
10780
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
10769
10781
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
10770
10782
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
10771
10783
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -13898,6 +13910,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
13898
13910
|
pcbRotation?: number | undefined;
|
|
13899
13911
|
pcbPositionAnchor?: string | undefined;
|
|
13900
13912
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
13913
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
13901
13914
|
pcbMarginTop?: number | undefined;
|
|
13902
13915
|
pcbMarginRight?: number | undefined;
|
|
13903
13916
|
pcbMarginBottom?: number | undefined;
|
|
@@ -14417,6 +14430,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
14417
14430
|
pcbRotation?: string | number | undefined;
|
|
14418
14431
|
pcbPositionAnchor?: string | undefined;
|
|
14419
14432
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
14433
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
14420
14434
|
pcbMarginTop?: string | number | undefined;
|
|
14421
14435
|
pcbMarginRight?: string | number | undefined;
|
|
14422
14436
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -16666,6 +16680,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
16666
16680
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16667
16681
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
16668
16682
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
16683
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
16669
16684
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16670
16685
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16671
16686
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -17229,6 +17244,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
17229
17244
|
pcbRotation?: number | undefined;
|
|
17230
17245
|
pcbPositionAnchor?: string | undefined;
|
|
17231
17246
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
17247
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
17232
17248
|
pcbMarginTop?: number | undefined;
|
|
17233
17249
|
pcbMarginRight?: number | undefined;
|
|
17234
17250
|
pcbMarginBottom?: number | undefined;
|
|
@@ -17487,6 +17503,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
17487
17503
|
pcbRotation?: string | number | undefined;
|
|
17488
17504
|
pcbPositionAnchor?: string | undefined;
|
|
17489
17505
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
17506
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
17490
17507
|
pcbMarginTop?: string | number | undefined;
|
|
17491
17508
|
pcbMarginRight?: string | number | undefined;
|
|
17492
17509
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -17741,6 +17758,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
17741
17758
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
17742
17759
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
17743
17760
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
17761
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
17744
17762
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
17745
17763
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
17746
17764
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -18498,6 +18516,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
18498
18516
|
pcbRotation?: number | undefined;
|
|
18499
18517
|
pcbPositionAnchor?: string | undefined;
|
|
18500
18518
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
18519
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
18501
18520
|
pcbMarginTop?: number | undefined;
|
|
18502
18521
|
pcbMarginRight?: number | undefined;
|
|
18503
18522
|
pcbMarginBottom?: number | undefined;
|
|
@@ -18806,6 +18825,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
18806
18825
|
pcbRotation?: string | number | undefined;
|
|
18807
18826
|
pcbPositionAnchor?: string | undefined;
|
|
18808
18827
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
18828
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
18809
18829
|
pcbMarginTop?: string | number | undefined;
|
|
18810
18830
|
pcbMarginRight?: string | number | undefined;
|
|
18811
18831
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -19111,6 +19131,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
19111
19131
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19112
19132
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
19113
19133
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
19134
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
19114
19135
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19115
19136
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19116
19137
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -19871,6 +19892,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
19871
19892
|
pcbRotation?: number | undefined;
|
|
19872
19893
|
pcbPositionAnchor?: string | undefined;
|
|
19873
19894
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
19895
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
19874
19896
|
pcbMarginTop?: number | undefined;
|
|
19875
19897
|
pcbMarginRight?: number | undefined;
|
|
19876
19898
|
pcbMarginBottom?: number | undefined;
|
|
@@ -20180,6 +20202,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
20180
20202
|
pcbRotation?: string | number | undefined;
|
|
20181
20203
|
pcbPositionAnchor?: string | undefined;
|
|
20182
20204
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
20205
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
20183
20206
|
pcbMarginTop?: string | number | undefined;
|
|
20184
20207
|
pcbMarginRight?: string | number | undefined;
|
|
20185
20208
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -20485,6 +20508,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
20485
20508
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20486
20509
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
20487
20510
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
20511
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
20488
20512
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20489
20513
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20490
20514
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -21050,6 +21074,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
21050
21074
|
pcbRotation?: number | undefined;
|
|
21051
21075
|
pcbPositionAnchor?: string | undefined;
|
|
21052
21076
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
21077
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
21053
21078
|
pcbMarginTop?: number | undefined;
|
|
21054
21079
|
pcbMarginRight?: number | undefined;
|
|
21055
21080
|
pcbMarginBottom?: number | undefined;
|
|
@@ -21309,6 +21334,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
21309
21334
|
pcbRotation?: string | number | undefined;
|
|
21310
21335
|
pcbPositionAnchor?: string | undefined;
|
|
21311
21336
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
21337
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
21312
21338
|
pcbMarginTop?: string | number | undefined;
|
|
21313
21339
|
pcbMarginRight?: string | number | undefined;
|
|
21314
21340
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -21562,6 +21588,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
21562
21588
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21563
21589
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
21564
21590
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
21591
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
21565
21592
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21566
21593
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21567
21594
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -22322,6 +22349,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22322
22349
|
pcbRotation?: number | undefined;
|
|
22323
22350
|
pcbPositionAnchor?: string | undefined;
|
|
22324
22351
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
22352
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
22325
22353
|
pcbMarginTop?: number | undefined;
|
|
22326
22354
|
pcbMarginRight?: number | undefined;
|
|
22327
22355
|
pcbMarginBottom?: number | undefined;
|
|
@@ -22631,6 +22659,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22631
22659
|
pcbRotation?: string | number | undefined;
|
|
22632
22660
|
pcbPositionAnchor?: string | undefined;
|
|
22633
22661
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
22662
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
22634
22663
|
pcbMarginTop?: string | number | undefined;
|
|
22635
22664
|
pcbMarginRight?: string | number | undefined;
|
|
22636
22665
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -22967,6 +22996,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
22967
22996
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
22968
22997
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
22969
22998
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
22999
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
22970
23000
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
22971
23001
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
22972
23002
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -23754,6 +23784,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
23754
23784
|
pcbRotation?: number | undefined;
|
|
23755
23785
|
pcbPositionAnchor?: string | undefined;
|
|
23756
23786
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
23787
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
23757
23788
|
pcbMarginTop?: number | undefined;
|
|
23758
23789
|
pcbMarginRight?: number | undefined;
|
|
23759
23790
|
pcbMarginBottom?: number | undefined;
|
|
@@ -24078,6 +24109,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
24078
24109
|
pcbRotation?: string | number | undefined;
|
|
24079
24110
|
pcbPositionAnchor?: string | undefined;
|
|
24080
24111
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
24112
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
24081
24113
|
pcbMarginTop?: string | number | undefined;
|
|
24082
24114
|
pcbMarginRight?: string | number | undefined;
|
|
24083
24115
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -24427,6 +24459,7 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
24427
24459
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24428
24460
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
24429
24461
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
24462
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
24430
24463
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24431
24464
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24432
24465
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -25011,6 +25044,7 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
25011
25044
|
pcbRotation?: number | undefined;
|
|
25012
25045
|
pcbPositionAnchor?: string | undefined;
|
|
25013
25046
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
25047
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
25014
25048
|
pcbMarginTop?: number | undefined;
|
|
25015
25049
|
pcbMarginRight?: number | undefined;
|
|
25016
25050
|
pcbMarginBottom?: number | undefined;
|
|
@@ -25285,6 +25319,7 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
25285
25319
|
pcbRotation?: string | number | undefined;
|
|
25286
25320
|
pcbPositionAnchor?: string | undefined;
|
|
25287
25321
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
25322
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
25288
25323
|
pcbMarginTop?: string | number | undefined;
|
|
25289
25324
|
pcbMarginRight?: string | number | undefined;
|
|
25290
25325
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -25557,6 +25592,7 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
25557
25592
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25558
25593
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
25559
25594
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
25595
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
25560
25596
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25561
25597
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25562
25598
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -26141,6 +26177,7 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
26141
26177
|
pcbRotation?: number | undefined;
|
|
26142
26178
|
pcbPositionAnchor?: string | undefined;
|
|
26143
26179
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
26180
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
26144
26181
|
pcbMarginTop?: number | undefined;
|
|
26145
26182
|
pcbMarginRight?: number | undefined;
|
|
26146
26183
|
pcbMarginBottom?: number | undefined;
|
|
@@ -26415,6 +26452,7 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
26415
26452
|
pcbRotation?: string | number | undefined;
|
|
26416
26453
|
pcbPositionAnchor?: string | undefined;
|
|
26417
26454
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
26455
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
26418
26456
|
pcbMarginTop?: string | number | undefined;
|
|
26419
26457
|
pcbMarginRight?: string | number | undefined;
|
|
26420
26458
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -26692,6 +26730,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
26692
26730
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26693
26731
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
26694
26732
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
26733
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
26695
26734
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26696
26735
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26697
26736
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -27449,6 +27488,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
27449
27488
|
pcbRotation?: number | undefined;
|
|
27450
27489
|
pcbPositionAnchor?: string | undefined;
|
|
27451
27490
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
27491
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
27452
27492
|
pcbMarginTop?: number | undefined;
|
|
27453
27493
|
pcbMarginRight?: number | undefined;
|
|
27454
27494
|
pcbMarginBottom?: number | undefined;
|
|
@@ -27757,6 +27797,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
27757
27797
|
pcbRotation?: string | number | undefined;
|
|
27758
27798
|
pcbPositionAnchor?: string | undefined;
|
|
27759
27799
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
27800
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
27760
27801
|
pcbMarginTop?: string | number | undefined;
|
|
27761
27802
|
pcbMarginRight?: string | number | undefined;
|
|
27762
27803
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -28134,6 +28175,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
28134
28175
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28135
28176
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
28136
28177
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
28178
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
28137
28179
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28138
28180
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28139
28181
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -31561,6 +31603,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
31561
31603
|
pcbRotation?: number | undefined;
|
|
31562
31604
|
pcbPositionAnchor?: string | undefined;
|
|
31563
31605
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
31606
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
31564
31607
|
pcbMarginTop?: number | undefined;
|
|
31565
31608
|
pcbMarginRight?: number | undefined;
|
|
31566
31609
|
pcbMarginBottom?: number | undefined;
|
|
@@ -32156,6 +32199,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
32156
32199
|
pcbRotation?: string | number | undefined;
|
|
32157
32200
|
pcbPositionAnchor?: string | undefined;
|
|
32158
32201
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
32202
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
32159
32203
|
pcbMarginTop?: string | number | undefined;
|
|
32160
32204
|
pcbMarginRight?: string | number | undefined;
|
|
32161
32205
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -32747,6 +32791,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
32747
32791
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
32748
32792
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
32749
32793
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
32794
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
32750
32795
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
32751
32796
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
32752
32797
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -36174,6 +36219,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
36174
36219
|
pcbRotation?: number | undefined;
|
|
36175
36220
|
pcbPositionAnchor?: string | undefined;
|
|
36176
36221
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
36222
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
36177
36223
|
pcbMarginTop?: number | undefined;
|
|
36178
36224
|
pcbMarginRight?: number | undefined;
|
|
36179
36225
|
pcbMarginBottom?: number | undefined;
|
|
@@ -36769,6 +36815,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
36769
36815
|
pcbRotation?: string | number | undefined;
|
|
36770
36816
|
pcbPositionAnchor?: string | undefined;
|
|
36771
36817
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
36818
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
36772
36819
|
pcbMarginTop?: string | number | undefined;
|
|
36773
36820
|
pcbMarginRight?: string | number | undefined;
|
|
36774
36821
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -37359,6 +37406,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
37359
37406
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
37360
37407
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
37361
37408
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
37409
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
37362
37410
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
37363
37411
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
37364
37412
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -40786,6 +40834,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40786
40834
|
pcbRotation?: number | undefined;
|
|
40787
40835
|
pcbPositionAnchor?: string | undefined;
|
|
40788
40836
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
40837
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
40789
40838
|
pcbMarginTop?: number | undefined;
|
|
40790
40839
|
pcbMarginRight?: number | undefined;
|
|
40791
40840
|
pcbMarginBottom?: number | undefined;
|
|
@@ -41381,6 +41430,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
41381
41430
|
pcbRotation?: string | number | undefined;
|
|
41382
41431
|
pcbPositionAnchor?: string | undefined;
|
|
41383
41432
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
41433
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
41384
41434
|
pcbMarginTop?: string | number | undefined;
|
|
41385
41435
|
pcbMarginRight?: string | number | undefined;
|
|
41386
41436
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -42003,6 +42053,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
42003
42053
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
42004
42054
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
42005
42055
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
42056
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
42006
42057
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
42007
42058
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
42008
42059
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -45419,6 +45470,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45419
45470
|
pcbRotation?: number | undefined;
|
|
45420
45471
|
pcbPositionAnchor?: string | undefined;
|
|
45421
45472
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
45473
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
45422
45474
|
pcbMarginTop?: number | undefined;
|
|
45423
45475
|
pcbMarginRight?: number | undefined;
|
|
45424
45476
|
pcbMarginBottom?: number | undefined;
|
|
@@ -46009,6 +46061,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
46009
46061
|
pcbRotation?: string | number | undefined;
|
|
46010
46062
|
pcbPositionAnchor?: string | undefined;
|
|
46011
46063
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
46064
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
46012
46065
|
pcbMarginTop?: string | number | undefined;
|
|
46013
46066
|
pcbMarginRight?: string | number | undefined;
|
|
46014
46067
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -46603,6 +46656,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
46603
46656
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
46604
46657
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
46605
46658
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
46659
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
46606
46660
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
46607
46661
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
46608
46662
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -50022,6 +50076,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50022
50076
|
pcbRotation?: number | undefined;
|
|
50023
50077
|
pcbPositionAnchor?: string | undefined;
|
|
50024
50078
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
50079
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
50025
50080
|
pcbMarginTop?: number | undefined;
|
|
50026
50081
|
pcbMarginRight?: number | undefined;
|
|
50027
50082
|
pcbMarginBottom?: number | undefined;
|
|
@@ -50614,6 +50669,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50614
50669
|
pcbRotation?: string | number | undefined;
|
|
50615
50670
|
pcbPositionAnchor?: string | undefined;
|
|
50616
50671
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
50672
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
50617
50673
|
pcbMarginTop?: string | number | undefined;
|
|
50618
50674
|
pcbMarginRight?: string | number | undefined;
|
|
50619
50675
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -51219,6 +51275,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
51219
51275
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51220
51276
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
51221
51277
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
51278
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
51222
51279
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51223
51280
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51224
51281
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -54509,6 +54566,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54509
54566
|
pcbRotation?: number | undefined;
|
|
54510
54567
|
pcbPositionAnchor?: string | undefined;
|
|
54511
54568
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
54569
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
54512
54570
|
pcbMarginTop?: number | undefined;
|
|
54513
54571
|
pcbMarginRight?: number | undefined;
|
|
54514
54572
|
pcbMarginBottom?: number | undefined;
|
|
@@ -55071,6 +55129,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
55071
55129
|
pcbRotation?: string | number | undefined;
|
|
55072
55130
|
pcbPositionAnchor?: string | undefined;
|
|
55073
55131
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
55132
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
55074
55133
|
pcbMarginTop?: string | number | undefined;
|
|
55075
55134
|
pcbMarginRight?: string | number | undefined;
|
|
55076
55135
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -55636,6 +55695,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
55636
55695
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
55637
55696
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
55638
55697
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
55698
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
55639
55699
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
55640
55700
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
55641
55701
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -58772,6 +58832,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58772
58832
|
pcbRotation?: number | undefined;
|
|
58773
58833
|
pcbPositionAnchor?: string | undefined;
|
|
58774
58834
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
58835
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
58775
58836
|
pcbMarginTop?: number | undefined;
|
|
58776
58837
|
pcbMarginRight?: number | undefined;
|
|
58777
58838
|
pcbMarginBottom?: number | undefined;
|
|
@@ -59294,6 +59355,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59294
59355
|
pcbRotation?: string | number | undefined;
|
|
59295
59356
|
pcbPositionAnchor?: string | undefined;
|
|
59296
59357
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
59358
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
59297
59359
|
pcbMarginTop?: string | number | undefined;
|
|
59298
59360
|
pcbMarginRight?: string | number | undefined;
|
|
59299
59361
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -59837,6 +59899,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
59837
59899
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
59838
59900
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
59839
59901
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
59902
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
59840
59903
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
59841
59904
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
59842
59905
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -62976,6 +63039,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62976
63039
|
pcbRotation?: number | undefined;
|
|
62977
63040
|
pcbPositionAnchor?: string | undefined;
|
|
62978
63041
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
63042
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
62979
63043
|
pcbMarginTop?: number | undefined;
|
|
62980
63044
|
pcbMarginRight?: number | undefined;
|
|
62981
63045
|
pcbMarginBottom?: number | undefined;
|
|
@@ -63500,6 +63564,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63500
63564
|
pcbRotation?: string | number | undefined;
|
|
63501
63565
|
pcbPositionAnchor?: string | undefined;
|
|
63502
63566
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
63567
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
63503
63568
|
pcbMarginTop?: string | number | undefined;
|
|
63504
63569
|
pcbMarginRight?: string | number | undefined;
|
|
63505
63570
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -64112,6 +64177,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64112
64177
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
64113
64178
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
64114
64179
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
64180
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
64115
64181
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
64116
64182
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
64117
64183
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -64189,6 +64255,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64189
64255
|
pcbOffsetY?: number | undefined;
|
|
64190
64256
|
pcbPositionAnchor?: string | undefined;
|
|
64191
64257
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64258
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64192
64259
|
pcbMarginTop?: number | undefined;
|
|
64193
64260
|
pcbMarginRight?: number | undefined;
|
|
64194
64261
|
pcbMarginBottom?: number | undefined;
|
|
@@ -64228,6 +64295,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64228
64295
|
pcbOffsetY?: string | number | undefined;
|
|
64229
64296
|
pcbPositionAnchor?: string | undefined;
|
|
64230
64297
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64298
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64231
64299
|
pcbMarginTop?: string | number | undefined;
|
|
64232
64300
|
pcbMarginRight?: string | number | undefined;
|
|
64233
64301
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -64264,6 +64332,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64264
64332
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
64265
64333
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
64266
64334
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
64335
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
64267
64336
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
64268
64337
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
64269
64338
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -64345,6 +64414,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64345
64414
|
pcbRotation?: number | undefined;
|
|
64346
64415
|
pcbPositionAnchor?: string | undefined;
|
|
64347
64416
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64417
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64348
64418
|
pcbMarginTop?: number | undefined;
|
|
64349
64419
|
pcbMarginRight?: number | undefined;
|
|
64350
64420
|
pcbMarginBottom?: number | undefined;
|
|
@@ -64390,6 +64460,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64390
64460
|
pcbRotation?: string | number | undefined;
|
|
64391
64461
|
pcbPositionAnchor?: string | undefined;
|
|
64392
64462
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64463
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64393
64464
|
pcbMarginTop?: string | number | undefined;
|
|
64394
64465
|
pcbMarginRight?: string | number | undefined;
|
|
64395
64466
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -64427,6 +64498,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64427
64498
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
64428
64499
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
64429
64500
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
64501
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
64430
64502
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
64431
64503
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
64432
64504
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -64511,6 +64583,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64511
64583
|
pcbRotation?: number | undefined;
|
|
64512
64584
|
pcbPositionAnchor?: string | undefined;
|
|
64513
64585
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64586
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64514
64587
|
pcbMarginTop?: number | undefined;
|
|
64515
64588
|
pcbMarginRight?: number | undefined;
|
|
64516
64589
|
pcbMarginBottom?: number | undefined;
|
|
@@ -64559,6 +64632,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64559
64632
|
pcbRotation?: string | number | undefined;
|
|
64560
64633
|
pcbPositionAnchor?: string | undefined;
|
|
64561
64634
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64635
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64562
64636
|
pcbMarginTop?: string | number | undefined;
|
|
64563
64637
|
pcbMarginRight?: string | number | undefined;
|
|
64564
64638
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -64599,6 +64673,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64599
64673
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
64600
64674
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
64601
64675
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
64676
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
64602
64677
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
64603
64678
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
64604
64679
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -64683,6 +64758,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64683
64758
|
pcbRotation?: number | undefined;
|
|
64684
64759
|
pcbPositionAnchor?: string | undefined;
|
|
64685
64760
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64761
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64686
64762
|
pcbMarginTop?: number | undefined;
|
|
64687
64763
|
pcbMarginRight?: number | undefined;
|
|
64688
64764
|
pcbMarginBottom?: number | undefined;
|
|
@@ -64728,6 +64804,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64728
64804
|
pcbRotation?: string | number | undefined;
|
|
64729
64805
|
pcbPositionAnchor?: string | undefined;
|
|
64730
64806
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64807
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64731
64808
|
pcbMarginTop?: string | number | undefined;
|
|
64732
64809
|
pcbMarginRight?: string | number | undefined;
|
|
64733
64810
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -64768,6 +64845,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64768
64845
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
64769
64846
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
64770
64847
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
64848
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
64771
64849
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
64772
64850
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
64773
64851
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -64853,6 +64931,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64853
64931
|
pcbRotation?: number | undefined;
|
|
64854
64932
|
pcbPositionAnchor?: string | undefined;
|
|
64855
64933
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64934
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64856
64935
|
pcbMarginTop?: number | undefined;
|
|
64857
64936
|
pcbMarginRight?: number | undefined;
|
|
64858
64937
|
pcbMarginBottom?: number | undefined;
|
|
@@ -64898,6 +64977,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64898
64977
|
pcbRotation?: string | number | undefined;
|
|
64899
64978
|
pcbPositionAnchor?: string | undefined;
|
|
64900
64979
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64980
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64901
64981
|
pcbMarginTop?: string | number | undefined;
|
|
64902
64982
|
pcbMarginRight?: string | number | undefined;
|
|
64903
64983
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -64937,6 +65017,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64937
65017
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
64938
65018
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
64939
65019
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
65020
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
64940
65021
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
64941
65022
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
64942
65023
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -65032,6 +65113,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65032
65113
|
pcbOffsetY?: number | undefined;
|
|
65033
65114
|
pcbPositionAnchor?: string | undefined;
|
|
65034
65115
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65116
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65035
65117
|
pcbMarginTop?: number | undefined;
|
|
65036
65118
|
pcbMarginRight?: number | undefined;
|
|
65037
65119
|
pcbMarginBottom?: number | undefined;
|
|
@@ -65078,6 +65160,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65078
65160
|
pcbOffsetY?: string | number | undefined;
|
|
65079
65161
|
pcbPositionAnchor?: string | undefined;
|
|
65080
65162
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65163
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65081
65164
|
pcbMarginTop?: string | number | undefined;
|
|
65082
65165
|
pcbMarginRight?: string | number | undefined;
|
|
65083
65166
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -65119,6 +65202,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65119
65202
|
pcbOffsetY?: number | undefined;
|
|
65120
65203
|
pcbPositionAnchor?: string | undefined;
|
|
65121
65204
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65205
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65122
65206
|
pcbMarginTop?: number | undefined;
|
|
65123
65207
|
pcbMarginRight?: number | undefined;
|
|
65124
65208
|
pcbMarginBottom?: number | undefined;
|
|
@@ -65159,6 +65243,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65159
65243
|
pcbRotation?: number | undefined;
|
|
65160
65244
|
pcbPositionAnchor?: string | undefined;
|
|
65161
65245
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65246
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65162
65247
|
pcbMarginTop?: number | undefined;
|
|
65163
65248
|
pcbMarginRight?: number | undefined;
|
|
65164
65249
|
pcbMarginBottom?: number | undefined;
|
|
@@ -65202,6 +65287,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65202
65287
|
pcbRotation?: number | undefined;
|
|
65203
65288
|
pcbPositionAnchor?: string | undefined;
|
|
65204
65289
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65290
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65205
65291
|
pcbMarginTop?: number | undefined;
|
|
65206
65292
|
pcbMarginRight?: number | undefined;
|
|
65207
65293
|
pcbMarginBottom?: number | undefined;
|
|
@@ -65249,6 +65335,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65249
65335
|
pcbRotation?: number | undefined;
|
|
65250
65336
|
pcbPositionAnchor?: string | undefined;
|
|
65251
65337
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65338
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65252
65339
|
pcbMarginTop?: number | undefined;
|
|
65253
65340
|
pcbMarginRight?: number | undefined;
|
|
65254
65341
|
pcbMarginBottom?: number | undefined;
|
|
@@ -65295,6 +65382,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65295
65382
|
pcbRotation?: number | undefined;
|
|
65296
65383
|
pcbPositionAnchor?: string | undefined;
|
|
65297
65384
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65385
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65298
65386
|
pcbMarginTop?: number | undefined;
|
|
65299
65387
|
pcbMarginRight?: number | undefined;
|
|
65300
65388
|
pcbMarginBottom?: number | undefined;
|
|
@@ -65342,6 +65430,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65342
65430
|
pcbOffsetY?: number | undefined;
|
|
65343
65431
|
pcbPositionAnchor?: string | undefined;
|
|
65344
65432
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65433
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65345
65434
|
pcbMarginTop?: number | undefined;
|
|
65346
65435
|
pcbMarginRight?: number | undefined;
|
|
65347
65436
|
pcbMarginBottom?: number | undefined;
|
|
@@ -65383,6 +65472,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65383
65472
|
pcbOffsetY?: string | number | undefined;
|
|
65384
65473
|
pcbPositionAnchor?: string | undefined;
|
|
65385
65474
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65475
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65386
65476
|
pcbMarginTop?: string | number | undefined;
|
|
65387
65477
|
pcbMarginRight?: string | number | undefined;
|
|
65388
65478
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -65425,6 +65515,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65425
65515
|
pcbRotation?: string | number | undefined;
|
|
65426
65516
|
pcbPositionAnchor?: string | undefined;
|
|
65427
65517
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65518
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65428
65519
|
pcbMarginTop?: string | number | undefined;
|
|
65429
65520
|
pcbMarginRight?: string | number | undefined;
|
|
65430
65521
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -65468,6 +65559,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65468
65559
|
pcbRotation?: string | number | undefined;
|
|
65469
65560
|
pcbPositionAnchor?: string | undefined;
|
|
65470
65561
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65562
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65471
65563
|
pcbMarginTop?: string | number | undefined;
|
|
65472
65564
|
pcbMarginRight?: string | number | undefined;
|
|
65473
65565
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -65513,6 +65605,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65513
65605
|
pcbRotation?: string | number | undefined;
|
|
65514
65606
|
pcbPositionAnchor?: string | undefined;
|
|
65515
65607
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65608
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65516
65609
|
pcbMarginTop?: string | number | undefined;
|
|
65517
65610
|
pcbMarginRight?: string | number | undefined;
|
|
65518
65611
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -65559,6 +65652,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65559
65652
|
pcbRotation?: string | number | undefined;
|
|
65560
65653
|
pcbPositionAnchor?: string | undefined;
|
|
65561
65654
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65655
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65562
65656
|
pcbMarginTop?: string | number | undefined;
|
|
65563
65657
|
pcbMarginRight?: string | number | undefined;
|
|
65564
65658
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -65606,6 +65700,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65606
65700
|
pcbOffsetY?: string | number | undefined;
|
|
65607
65701
|
pcbPositionAnchor?: string | undefined;
|
|
65608
65702
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65703
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65609
65704
|
pcbMarginTop?: string | number | undefined;
|
|
65610
65705
|
pcbMarginRight?: string | number | undefined;
|
|
65611
65706
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -65659,6 +65754,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
65659
65754
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
65660
65755
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
65661
65756
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
65757
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
65662
65758
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
65663
65759
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
65664
65760
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -68802,6 +68898,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68802
68898
|
pcbRotation?: number | undefined;
|
|
68803
68899
|
pcbPositionAnchor?: string | undefined;
|
|
68804
68900
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
68901
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
68805
68902
|
pcbMarginTop?: number | undefined;
|
|
68806
68903
|
pcbMarginRight?: number | undefined;
|
|
68807
68904
|
pcbMarginBottom?: number | undefined;
|
|
@@ -69330,6 +69427,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69330
69427
|
pcbRotation?: string | number | undefined;
|
|
69331
69428
|
pcbPositionAnchor?: string | undefined;
|
|
69332
69429
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
69430
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
69333
69431
|
pcbMarginTop?: string | number | undefined;
|
|
69334
69432
|
pcbMarginRight?: string | number | undefined;
|
|
69335
69433
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -69860,6 +69958,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
69860
69958
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
69861
69959
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
69862
69960
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
69961
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
69863
69962
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
69864
69963
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
69865
69964
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -72997,6 +73096,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
72997
73096
|
pcbRotation?: number | undefined;
|
|
72998
73097
|
pcbPositionAnchor?: string | undefined;
|
|
72999
73098
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
73099
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
73000
73100
|
pcbMarginTop?: number | undefined;
|
|
73001
73101
|
pcbMarginRight?: number | undefined;
|
|
73002
73102
|
pcbMarginBottom?: number | undefined;
|
|
@@ -73519,6 +73619,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73519
73619
|
pcbRotation?: string | number | undefined;
|
|
73520
73620
|
pcbPositionAnchor?: string | undefined;
|
|
73521
73621
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
73622
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
73522
73623
|
pcbMarginTop?: string | number | undefined;
|
|
73523
73624
|
pcbMarginRight?: string | number | undefined;
|
|
73524
73625
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -74046,6 +74147,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
74046
74147
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
74047
74148
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
74048
74149
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
74150
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
74049
74151
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
74050
74152
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
74051
74153
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -77185,6 +77287,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77185
77287
|
pcbRotation?: number | undefined;
|
|
77186
77288
|
pcbPositionAnchor?: string | undefined;
|
|
77187
77289
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
77290
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
77188
77291
|
pcbMarginTop?: number | undefined;
|
|
77189
77292
|
pcbMarginRight?: number | undefined;
|
|
77190
77293
|
pcbMarginBottom?: number | undefined;
|
|
@@ -77710,6 +77813,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77710
77813
|
pcbRotation?: string | number | undefined;
|
|
77711
77814
|
pcbPositionAnchor?: string | undefined;
|
|
77712
77815
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
77816
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
77713
77817
|
pcbMarginTop?: string | number | undefined;
|
|
77714
77818
|
pcbMarginRight?: string | number | undefined;
|
|
77715
77819
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -78233,6 +78337,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
78233
78337
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
78234
78338
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
78235
78339
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
78340
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
78236
78341
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
78237
78342
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
78238
78343
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -81371,6 +81476,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81371
81476
|
pcbRotation?: number | undefined;
|
|
81372
81477
|
pcbPositionAnchor?: string | undefined;
|
|
81373
81478
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
81479
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
81374
81480
|
pcbMarginTop?: number | undefined;
|
|
81375
81481
|
pcbMarginRight?: number | undefined;
|
|
81376
81482
|
pcbMarginBottom?: number | undefined;
|
|
@@ -81893,6 +81999,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81893
81999
|
pcbRotation?: string | number | undefined;
|
|
81894
82000
|
pcbPositionAnchor?: string | undefined;
|
|
81895
82001
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
82002
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
81896
82003
|
pcbMarginTop?: string | number | undefined;
|
|
81897
82004
|
pcbMarginRight?: string | number | undefined;
|
|
81898
82005
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -82419,6 +82526,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
82419
82526
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
82420
82527
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
82421
82528
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
82529
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
82422
82530
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
82423
82531
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
82424
82532
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -83217,6 +83325,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
83217
83325
|
pcbRotation?: number | undefined;
|
|
83218
83326
|
pcbPositionAnchor?: string | undefined;
|
|
83219
83327
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
83328
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
83220
83329
|
pcbMarginTop?: number | undefined;
|
|
83221
83330
|
pcbMarginRight?: number | undefined;
|
|
83222
83331
|
pcbMarginBottom?: number | undefined;
|
|
@@ -83551,6 +83660,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
83551
83660
|
pcbRotation?: string | number | undefined;
|
|
83552
83661
|
pcbPositionAnchor?: string | undefined;
|
|
83553
83662
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
83663
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
83554
83664
|
pcbMarginTop?: string | number | undefined;
|
|
83555
83665
|
pcbMarginRight?: string | number | undefined;
|
|
83556
83666
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -83899,6 +84009,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
83899
84009
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
83900
84010
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
83901
84011
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
84012
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
83902
84013
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
83903
84014
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
83904
84015
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -87047,6 +87158,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87047
87158
|
pcbRotation?: number | undefined;
|
|
87048
87159
|
pcbPositionAnchor?: string | undefined;
|
|
87049
87160
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
87161
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
87050
87162
|
pcbMarginTop?: number | undefined;
|
|
87051
87163
|
pcbMarginRight?: number | undefined;
|
|
87052
87164
|
pcbMarginBottom?: number | undefined;
|
|
@@ -87576,6 +87688,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87576
87688
|
pcbRotation?: string | number | undefined;
|
|
87577
87689
|
pcbPositionAnchor?: string | undefined;
|
|
87578
87690
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
87691
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
87579
87692
|
pcbMarginTop?: string | number | undefined;
|
|
87580
87693
|
pcbMarginRight?: string | number | undefined;
|
|
87581
87694
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -88132,6 +88245,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
88132
88245
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
88133
88246
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
88134
88247
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
88248
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
88135
88249
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
88136
88250
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
88137
88251
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -91267,6 +91381,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91267
91381
|
pcbRotation?: number | undefined;
|
|
91268
91382
|
pcbPositionAnchor?: string | undefined;
|
|
91269
91383
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
91384
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
91270
91385
|
pcbMarginTop?: number | undefined;
|
|
91271
91386
|
pcbMarginRight?: number | undefined;
|
|
91272
91387
|
pcbMarginBottom?: number | undefined;
|
|
@@ -91788,6 +91903,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91788
91903
|
pcbRotation?: string | number | undefined;
|
|
91789
91904
|
pcbPositionAnchor?: string | undefined;
|
|
91790
91905
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
91906
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
91791
91907
|
pcbMarginTop?: string | number | undefined;
|
|
91792
91908
|
pcbMarginRight?: string | number | undefined;
|
|
91793
91909
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -92526,6 +92642,7 @@ declare const rectCutoutProps: z.ZodObject<Omit<{
|
|
|
92526
92642
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
92527
92643
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
92528
92644
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
92645
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
92529
92646
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
92530
92647
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
92531
92648
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -92598,6 +92715,7 @@ declare const rectCutoutProps: z.ZodObject<Omit<{
|
|
|
92598
92715
|
pcbOffsetY?: number | undefined;
|
|
92599
92716
|
pcbPositionAnchor?: string | undefined;
|
|
92600
92717
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
92718
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
92601
92719
|
pcbMarginTop?: number | undefined;
|
|
92602
92720
|
pcbMarginRight?: number | undefined;
|
|
92603
92721
|
pcbMarginBottom?: number | undefined;
|
|
@@ -92632,6 +92750,7 @@ declare const rectCutoutProps: z.ZodObject<Omit<{
|
|
|
92632
92750
|
pcbOffsetY?: string | number | undefined;
|
|
92633
92751
|
pcbPositionAnchor?: string | undefined;
|
|
92634
92752
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
92753
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
92635
92754
|
pcbMarginTop?: string | number | undefined;
|
|
92636
92755
|
pcbMarginRight?: string | number | undefined;
|
|
92637
92756
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -92669,6 +92788,7 @@ declare const circleCutoutProps: z.ZodObject<Omit<{
|
|
|
92669
92788
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
92670
92789
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
92671
92790
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
92791
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
92672
92792
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
92673
92793
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
92674
92794
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -92739,6 +92859,7 @@ declare const circleCutoutProps: z.ZodObject<Omit<{
|
|
|
92739
92859
|
pcbOffsetY?: number | undefined;
|
|
92740
92860
|
pcbPositionAnchor?: string | undefined;
|
|
92741
92861
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
92862
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
92742
92863
|
pcbMarginTop?: number | undefined;
|
|
92743
92864
|
pcbMarginRight?: number | undefined;
|
|
92744
92865
|
pcbMarginBottom?: number | undefined;
|
|
@@ -92772,6 +92893,7 @@ declare const circleCutoutProps: z.ZodObject<Omit<{
|
|
|
92772
92893
|
pcbOffsetY?: string | number | undefined;
|
|
92773
92894
|
pcbPositionAnchor?: string | undefined;
|
|
92774
92895
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
92896
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
92775
92897
|
pcbMarginTop?: string | number | undefined;
|
|
92776
92898
|
pcbMarginRight?: string | number | undefined;
|
|
92777
92899
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -92809,6 +92931,7 @@ declare const polygonCutoutProps: z.ZodObject<Omit<{
|
|
|
92809
92931
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
92810
92932
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
92811
92933
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
92934
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
92812
92935
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
92813
92936
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
92814
92937
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -92891,6 +93014,7 @@ declare const polygonCutoutProps: z.ZodObject<Omit<{
|
|
|
92891
93014
|
pcbOffsetY?: number | undefined;
|
|
92892
93015
|
pcbPositionAnchor?: string | undefined;
|
|
92893
93016
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93017
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
92894
93018
|
pcbMarginTop?: number | undefined;
|
|
92895
93019
|
pcbMarginRight?: number | undefined;
|
|
92896
93020
|
pcbMarginBottom?: number | undefined;
|
|
@@ -92927,6 +93051,7 @@ declare const polygonCutoutProps: z.ZodObject<Omit<{
|
|
|
92927
93051
|
pcbOffsetY?: string | number | undefined;
|
|
92928
93052
|
pcbPositionAnchor?: string | undefined;
|
|
92929
93053
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93054
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
92930
93055
|
pcbMarginTop?: string | number | undefined;
|
|
92931
93056
|
pcbMarginRight?: string | number | undefined;
|
|
92932
93057
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -92960,6 +93085,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
92960
93085
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
92961
93086
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
92962
93087
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
93088
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
92963
93089
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
92964
93090
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
92965
93091
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -93032,6 +93158,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93032
93158
|
pcbOffsetY?: number | undefined;
|
|
93033
93159
|
pcbPositionAnchor?: string | undefined;
|
|
93034
93160
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93161
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93035
93162
|
pcbMarginTop?: number | undefined;
|
|
93036
93163
|
pcbMarginRight?: number | undefined;
|
|
93037
93164
|
pcbMarginBottom?: number | undefined;
|
|
@@ -93066,6 +93193,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93066
93193
|
pcbOffsetY?: string | number | undefined;
|
|
93067
93194
|
pcbPositionAnchor?: string | undefined;
|
|
93068
93195
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93196
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93069
93197
|
pcbMarginTop?: string | number | undefined;
|
|
93070
93198
|
pcbMarginRight?: string | number | undefined;
|
|
93071
93199
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -93097,6 +93225,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93097
93225
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
93098
93226
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
93099
93227
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
93228
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
93100
93229
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
93101
93230
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
93102
93231
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -93167,6 +93296,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93167
93296
|
pcbOffsetY?: number | undefined;
|
|
93168
93297
|
pcbPositionAnchor?: string | undefined;
|
|
93169
93298
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93299
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93170
93300
|
pcbMarginTop?: number | undefined;
|
|
93171
93301
|
pcbMarginRight?: number | undefined;
|
|
93172
93302
|
pcbMarginBottom?: number | undefined;
|
|
@@ -93200,6 +93330,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93200
93330
|
pcbOffsetY?: string | number | undefined;
|
|
93201
93331
|
pcbPositionAnchor?: string | undefined;
|
|
93202
93332
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93333
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93203
93334
|
pcbMarginTop?: string | number | undefined;
|
|
93204
93335
|
pcbMarginRight?: string | number | undefined;
|
|
93205
93336
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -93231,6 +93362,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93231
93362
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
93232
93363
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
93233
93364
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
93365
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
93234
93366
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
93235
93367
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
93236
93368
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -93313,6 +93445,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93313
93445
|
pcbOffsetY?: number | undefined;
|
|
93314
93446
|
pcbPositionAnchor?: string | undefined;
|
|
93315
93447
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93448
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93316
93449
|
pcbMarginTop?: number | undefined;
|
|
93317
93450
|
pcbMarginRight?: number | undefined;
|
|
93318
93451
|
pcbMarginBottom?: number | undefined;
|
|
@@ -93349,6 +93482,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93349
93482
|
pcbOffsetY?: string | number | undefined;
|
|
93350
93483
|
pcbPositionAnchor?: string | undefined;
|
|
93351
93484
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93485
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93352
93486
|
pcbMarginTop?: string | number | undefined;
|
|
93353
93487
|
pcbMarginRight?: string | number | undefined;
|
|
93354
93488
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -93440,6 +93574,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
93440
93574
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
93441
93575
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
93442
93576
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
93577
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
93443
93578
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
93444
93579
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
93445
93580
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -93522,6 +93657,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
93522
93657
|
pcbOffsetY?: number | undefined;
|
|
93523
93658
|
pcbPositionAnchor?: string | undefined;
|
|
93524
93659
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93660
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93525
93661
|
pcbMarginTop?: number | undefined;
|
|
93526
93662
|
pcbMarginRight?: number | undefined;
|
|
93527
93663
|
pcbMarginBottom?: number | undefined;
|
|
@@ -93568,6 +93704,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
93568
93704
|
pcbOffsetY?: string | number | undefined;
|
|
93569
93705
|
pcbPositionAnchor?: string | undefined;
|
|
93570
93706
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93707
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93571
93708
|
pcbMarginTop?: string | number | undefined;
|
|
93572
93709
|
pcbMarginRight?: string | number | undefined;
|
|
93573
93710
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -93609,6 +93746,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
93609
93746
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
93610
93747
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
93611
93748
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
93749
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
93612
93750
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
93613
93751
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
93614
93752
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -93692,6 +93830,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
93692
93830
|
pcbOffsetY?: number | undefined;
|
|
93693
93831
|
pcbPositionAnchor?: string | undefined;
|
|
93694
93832
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93833
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93695
93834
|
pcbMarginTop?: number | undefined;
|
|
93696
93835
|
pcbMarginRight?: number | undefined;
|
|
93697
93836
|
pcbMarginBottom?: number | undefined;
|
|
@@ -93738,6 +93877,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
93738
93877
|
pcbOffsetY?: string | number | undefined;
|
|
93739
93878
|
pcbPositionAnchor?: string | undefined;
|
|
93740
93879
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93880
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93741
93881
|
pcbMarginTop?: string | number | undefined;
|
|
93742
93882
|
pcbMarginRight?: string | number | undefined;
|
|
93743
93883
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -93778,6 +93918,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
93778
93918
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
93779
93919
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
93780
93920
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
93921
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
93781
93922
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
93782
93923
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
93783
93924
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -93852,6 +93993,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
93852
93993
|
pcbOffsetY?: number | undefined;
|
|
93853
93994
|
pcbPositionAnchor?: string | undefined;
|
|
93854
93995
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93996
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93855
93997
|
pcbMarginTop?: number | undefined;
|
|
93856
93998
|
pcbMarginRight?: number | undefined;
|
|
93857
93999
|
pcbMarginBottom?: number | undefined;
|
|
@@ -93891,6 +94033,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
93891
94033
|
pcbOffsetY?: string | number | undefined;
|
|
93892
94034
|
pcbPositionAnchor?: string | undefined;
|
|
93893
94035
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94036
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93894
94037
|
pcbMarginTop?: string | number | undefined;
|
|
93895
94038
|
pcbMarginRight?: string | number | undefined;
|
|
93896
94039
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -93926,6 +94069,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
93926
94069
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
93927
94070
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
93928
94071
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
94072
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
93929
94073
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
93930
94074
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
93931
94075
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -94004,6 +94148,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
94004
94148
|
pcbOffsetY?: number | undefined;
|
|
94005
94149
|
pcbPositionAnchor?: string | undefined;
|
|
94006
94150
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94151
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94007
94152
|
pcbMarginTop?: number | undefined;
|
|
94008
94153
|
pcbMarginRight?: number | undefined;
|
|
94009
94154
|
pcbMarginBottom?: number | undefined;
|
|
@@ -94045,6 +94190,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
94045
94190
|
pcbOffsetY?: string | number | undefined;
|
|
94046
94191
|
pcbPositionAnchor?: string | undefined;
|
|
94047
94192
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94193
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94048
94194
|
pcbMarginTop?: string | number | undefined;
|
|
94049
94195
|
pcbMarginRight?: string | number | undefined;
|
|
94050
94196
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -94080,6 +94226,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
94080
94226
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
94081
94227
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
94082
94228
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
94229
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
94083
94230
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
94084
94231
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
94085
94232
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -94166,6 +94313,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
94166
94313
|
pcbOffsetY?: number | undefined;
|
|
94167
94314
|
pcbPositionAnchor?: string | undefined;
|
|
94168
94315
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94316
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94169
94317
|
pcbMarginTop?: number | undefined;
|
|
94170
94318
|
pcbMarginRight?: number | undefined;
|
|
94171
94319
|
pcbMarginBottom?: number | undefined;
|
|
@@ -94208,6 +94356,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
94208
94356
|
pcbOffsetY?: string | number | undefined;
|
|
94209
94357
|
pcbPositionAnchor?: string | undefined;
|
|
94210
94358
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94359
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94211
94360
|
pcbMarginTop?: string | number | undefined;
|
|
94212
94361
|
pcbMarginRight?: string | number | undefined;
|
|
94213
94362
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -94243,6 +94392,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94243
94392
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
94244
94393
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
94245
94394
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
94395
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
94246
94396
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
94247
94397
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
94248
94398
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -94317,6 +94467,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94317
94467
|
pcbOffsetY?: number | undefined;
|
|
94318
94468
|
pcbPositionAnchor?: string | undefined;
|
|
94319
94469
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94470
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94320
94471
|
pcbMarginTop?: number | undefined;
|
|
94321
94472
|
pcbMarginRight?: number | undefined;
|
|
94322
94473
|
pcbMarginBottom?: number | undefined;
|
|
@@ -94356,6 +94507,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94356
94507
|
pcbOffsetY?: string | number | undefined;
|
|
94357
94508
|
pcbPositionAnchor?: string | undefined;
|
|
94358
94509
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94510
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94359
94511
|
pcbMarginTop?: string | number | undefined;
|
|
94360
94512
|
pcbMarginRight?: string | number | undefined;
|
|
94361
94513
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -94390,6 +94542,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94390
94542
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
94391
94543
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
94392
94544
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
94545
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
94393
94546
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
94394
94547
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
94395
94548
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -94472,6 +94625,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94472
94625
|
pcbOffsetY?: number | undefined;
|
|
94473
94626
|
pcbPositionAnchor?: string | undefined;
|
|
94474
94627
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94628
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94475
94629
|
pcbMarginTop?: number | undefined;
|
|
94476
94630
|
pcbMarginRight?: number | undefined;
|
|
94477
94631
|
pcbMarginBottom?: number | undefined;
|
|
@@ -94518,6 +94672,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94518
94672
|
pcbOffsetY?: string | number | undefined;
|
|
94519
94673
|
pcbPositionAnchor?: string | undefined;
|
|
94520
94674
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94675
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94521
94676
|
pcbMarginTop?: string | number | undefined;
|
|
94522
94677
|
pcbMarginRight?: string | number | undefined;
|
|
94523
94678
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -94558,6 +94713,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94558
94713
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
94559
94714
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
94560
94715
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
94716
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
94561
94717
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
94562
94718
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
94563
94719
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -94641,6 +94797,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94641
94797
|
pcbOffsetY?: number | undefined;
|
|
94642
94798
|
pcbPositionAnchor?: string | undefined;
|
|
94643
94799
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94800
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94644
94801
|
pcbMarginTop?: number | undefined;
|
|
94645
94802
|
pcbMarginRight?: number | undefined;
|
|
94646
94803
|
pcbMarginBottom?: number | undefined;
|
|
@@ -94687,6 +94844,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94687
94844
|
pcbOffsetY?: string | number | undefined;
|
|
94688
94845
|
pcbPositionAnchor?: string | undefined;
|
|
94689
94846
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94847
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94690
94848
|
pcbMarginTop?: string | number | undefined;
|
|
94691
94849
|
pcbMarginRight?: string | number | undefined;
|
|
94692
94850
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -94726,6 +94884,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94726
94884
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
94727
94885
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
94728
94886
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
94887
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
94729
94888
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
94730
94889
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
94731
94890
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -94804,6 +94963,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94804
94963
|
pcbOffsetY?: number | undefined;
|
|
94805
94964
|
pcbPositionAnchor?: string | undefined;
|
|
94806
94965
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94966
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94807
94967
|
pcbMarginTop?: number | undefined;
|
|
94808
94968
|
pcbMarginRight?: number | undefined;
|
|
94809
94969
|
pcbMarginBottom?: number | undefined;
|
|
@@ -94845,6 +95005,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94845
95005
|
pcbOffsetY?: string | number | undefined;
|
|
94846
95006
|
pcbPositionAnchor?: string | undefined;
|
|
94847
95007
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95008
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94848
95009
|
pcbMarginTop?: string | number | undefined;
|
|
94849
95010
|
pcbMarginRight?: string | number | undefined;
|
|
94850
95011
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -94879,6 +95040,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94879
95040
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
94880
95041
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
94881
95042
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
95043
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
94882
95044
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
94883
95045
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
94884
95046
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -94965,6 +95127,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94965
95127
|
pcbOffsetY?: number | undefined;
|
|
94966
95128
|
pcbPositionAnchor?: string | undefined;
|
|
94967
95129
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95130
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94968
95131
|
pcbMarginTop?: number | undefined;
|
|
94969
95132
|
pcbMarginRight?: number | undefined;
|
|
94970
95133
|
pcbMarginBottom?: number | undefined;
|
|
@@ -95007,6 +95170,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
95007
95170
|
pcbOffsetY?: string | number | undefined;
|
|
95008
95171
|
pcbPositionAnchor?: string | undefined;
|
|
95009
95172
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95173
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95010
95174
|
pcbMarginTop?: string | number | undefined;
|
|
95011
95175
|
pcbMarginRight?: string | number | undefined;
|
|
95012
95176
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -95054,6 +95218,7 @@ declare const rectSolderPasteProps: z.ZodObject<Omit<{
|
|
|
95054
95218
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
95055
95219
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
95056
95220
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
95221
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
95057
95222
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
95058
95223
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
95059
95224
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -95125,6 +95290,7 @@ declare const rectSolderPasteProps: z.ZodObject<Omit<{
|
|
|
95125
95290
|
pcbOffsetY?: number | undefined;
|
|
95126
95291
|
pcbPositionAnchor?: string | undefined;
|
|
95127
95292
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95293
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95128
95294
|
pcbMarginTop?: number | undefined;
|
|
95129
95295
|
pcbMarginRight?: number | undefined;
|
|
95130
95296
|
pcbMarginBottom?: number | undefined;
|
|
@@ -95161,6 +95327,7 @@ declare const rectSolderPasteProps: z.ZodObject<Omit<{
|
|
|
95161
95327
|
pcbOffsetY?: string | number | undefined;
|
|
95162
95328
|
pcbPositionAnchor?: string | undefined;
|
|
95163
95329
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95330
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95164
95331
|
pcbMarginTop?: string | number | undefined;
|
|
95165
95332
|
pcbMarginRight?: string | number | undefined;
|
|
95166
95333
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -95193,6 +95360,7 @@ declare const circleSolderPasteProps: z.ZodObject<Omit<{
|
|
|
95193
95360
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
95194
95361
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
95195
95362
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
95363
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
95196
95364
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
95197
95365
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
95198
95366
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -95262,6 +95430,7 @@ declare const circleSolderPasteProps: z.ZodObject<Omit<{
|
|
|
95262
95430
|
pcbOffsetY?: number | undefined;
|
|
95263
95431
|
pcbPositionAnchor?: string | undefined;
|
|
95264
95432
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95433
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95265
95434
|
pcbMarginTop?: number | undefined;
|
|
95266
95435
|
pcbMarginRight?: number | undefined;
|
|
95267
95436
|
pcbMarginBottom?: number | undefined;
|
|
@@ -95297,6 +95466,7 @@ declare const circleSolderPasteProps: z.ZodObject<Omit<{
|
|
|
95297
95466
|
pcbOffsetY?: string | number | undefined;
|
|
95298
95467
|
pcbPositionAnchor?: string | undefined;
|
|
95299
95468
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95469
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95300
95470
|
pcbMarginTop?: string | number | undefined;
|
|
95301
95471
|
pcbMarginRight?: string | number | undefined;
|
|
95302
95472
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -95329,6 +95499,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
95329
95499
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
95330
95500
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
95331
95501
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
95502
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
95332
95503
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
95333
95504
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
95334
95505
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -95398,6 +95569,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
95398
95569
|
pcbOffsetY?: number | undefined;
|
|
95399
95570
|
pcbPositionAnchor?: string | undefined;
|
|
95400
95571
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95572
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95401
95573
|
pcbMarginTop?: number | undefined;
|
|
95402
95574
|
pcbMarginRight?: number | undefined;
|
|
95403
95575
|
pcbMarginBottom?: number | undefined;
|
|
@@ -95433,6 +95605,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
95433
95605
|
pcbOffsetY?: string | number | undefined;
|
|
95434
95606
|
pcbPositionAnchor?: string | undefined;
|
|
95435
95607
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95608
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95436
95609
|
pcbMarginTop?: string | number | undefined;
|
|
95437
95610
|
pcbMarginRight?: string | number | undefined;
|
|
95438
95611
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -95464,6 +95637,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
95464
95637
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
95465
95638
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
95466
95639
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
95640
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
95467
95641
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
95468
95642
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
95469
95643
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -95535,6 +95709,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
95535
95709
|
pcbOffsetY?: number | undefined;
|
|
95536
95710
|
pcbPositionAnchor?: string | undefined;
|
|
95537
95711
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95712
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95538
95713
|
pcbMarginTop?: number | undefined;
|
|
95539
95714
|
pcbMarginRight?: number | undefined;
|
|
95540
95715
|
pcbMarginBottom?: number | undefined;
|
|
@@ -95571,6 +95746,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
95571
95746
|
pcbOffsetY?: string | number | undefined;
|
|
95572
95747
|
pcbPositionAnchor?: string | undefined;
|
|
95573
95748
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95749
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95574
95750
|
pcbMarginTop?: string | number | undefined;
|
|
95575
95751
|
pcbMarginRight?: string | number | undefined;
|
|
95576
95752
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -95630,6 +95806,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
95630
95806
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
95631
95807
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
95632
95808
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
95809
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
95633
95810
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
95634
95811
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
95635
95812
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -95704,6 +95881,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
95704
95881
|
pcbRotation?: number | undefined;
|
|
95705
95882
|
pcbPositionAnchor?: string | undefined;
|
|
95706
95883
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95884
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95707
95885
|
pcbMarginTop?: number | undefined;
|
|
95708
95886
|
pcbMarginRight?: number | undefined;
|
|
95709
95887
|
pcbMarginBottom?: number | undefined;
|
|
@@ -95744,6 +95922,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
95744
95922
|
pcbRotation?: string | number | undefined;
|
|
95745
95923
|
pcbPositionAnchor?: string | undefined;
|
|
95746
95924
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95925
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95747
95926
|
pcbMarginTop?: string | number | undefined;
|
|
95748
95927
|
pcbMarginRight?: string | number | undefined;
|
|
95749
95928
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -95784,6 +95963,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
95784
95963
|
pcbRotation?: number | undefined;
|
|
95785
95964
|
pcbPositionAnchor?: string | undefined;
|
|
95786
95965
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95966
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95787
95967
|
pcbMarginTop?: number | undefined;
|
|
95788
95968
|
pcbMarginRight?: number | undefined;
|
|
95789
95969
|
pcbMarginBottom?: number | undefined;
|
|
@@ -95822,6 +96002,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
95822
96002
|
pcbRotation?: string | number | undefined;
|
|
95823
96003
|
pcbPositionAnchor?: string | undefined;
|
|
95824
96004
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
96005
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95825
96006
|
pcbMarginTop?: string | number | undefined;
|
|
95826
96007
|
pcbMarginRight?: string | number | undefined;
|
|
95827
96008
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -95857,6 +96038,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
95857
96038
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
95858
96039
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
95859
96040
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
96041
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
95860
96042
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
95861
96043
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
95862
96044
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -95933,6 +96115,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
95933
96115
|
pcbRotation?: number | undefined;
|
|
95934
96116
|
pcbPositionAnchor?: string | undefined;
|
|
95935
96117
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
96118
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95936
96119
|
pcbMarginTop?: number | undefined;
|
|
95937
96120
|
pcbMarginRight?: number | undefined;
|
|
95938
96121
|
pcbMarginBottom?: number | undefined;
|
|
@@ -95973,6 +96156,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
95973
96156
|
pcbRotation?: string | number | undefined;
|
|
95974
96157
|
pcbPositionAnchor?: string | undefined;
|
|
95975
96158
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
96159
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95976
96160
|
pcbMarginTop?: string | number | undefined;
|
|
95977
96161
|
pcbMarginRight?: string | number | undefined;
|
|
95978
96162
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -96006,6 +96190,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
96006
96190
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
96007
96191
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
96008
96192
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
96193
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
96009
96194
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
96010
96195
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
96011
96196
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -96082,6 +96267,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
96082
96267
|
pcbRotation?: number | undefined;
|
|
96083
96268
|
pcbPositionAnchor?: string | undefined;
|
|
96084
96269
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
96270
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
96085
96271
|
pcbMarginTop?: number | undefined;
|
|
96086
96272
|
pcbMarginRight?: number | undefined;
|
|
96087
96273
|
pcbMarginBottom?: number | undefined;
|
|
@@ -96122,6 +96308,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
96122
96308
|
pcbRotation?: string | number | undefined;
|
|
96123
96309
|
pcbPositionAnchor?: string | undefined;
|
|
96124
96310
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
96311
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
96125
96312
|
pcbMarginTop?: string | number | undefined;
|
|
96126
96313
|
pcbMarginRight?: string | number | undefined;
|
|
96127
96314
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -96775,6 +96962,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
96775
96962
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
96776
96963
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
96777
96964
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
96965
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
96778
96966
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
96779
96967
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
96780
96968
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -99912,6 +100100,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
99912
100100
|
pcbRotation?: number | undefined;
|
|
99913
100101
|
pcbPositionAnchor?: string | undefined;
|
|
99914
100102
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
100103
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
99915
100104
|
pcbMarginTop?: number | undefined;
|
|
99916
100105
|
pcbMarginRight?: number | undefined;
|
|
99917
100106
|
pcbMarginBottom?: number | undefined;
|
|
@@ -100435,6 +100624,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100435
100624
|
pcbRotation?: string | number | undefined;
|
|
100436
100625
|
pcbPositionAnchor?: string | undefined;
|
|
100437
100626
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
100627
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
100438
100628
|
pcbMarginTop?: string | number | undefined;
|
|
100439
100629
|
pcbMarginRight?: string | number | undefined;
|
|
100440
100630
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -100959,6 +101149,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
100959
101149
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100960
101150
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
100961
101151
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
101152
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
100962
101153
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100963
101154
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100964
101155
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -101860,6 +102051,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
101860
102051
|
pcbRotation?: number | undefined;
|
|
101861
102052
|
pcbPositionAnchor?: string | undefined;
|
|
101862
102053
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
102054
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
101863
102055
|
pcbMarginTop?: number | undefined;
|
|
101864
102056
|
pcbMarginRight?: number | undefined;
|
|
101865
102057
|
pcbMarginBottom?: number | undefined;
|
|
@@ -102207,6 +102399,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
102207
102399
|
pcbRotation?: string | number | undefined;
|
|
102208
102400
|
pcbPositionAnchor?: string | undefined;
|
|
102209
102401
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
102402
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
102210
102403
|
pcbMarginTop?: string | number | undefined;
|
|
102211
102404
|
pcbMarginRight?: string | number | undefined;
|
|
102212
102405
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -102632,6 +102825,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
102632
102825
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102633
102826
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
102634
102827
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
102828
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
102635
102829
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102636
102830
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102637
102831
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -105936,6 +106130,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
105936
106130
|
pcbRotation?: number | undefined;
|
|
105937
106131
|
pcbPositionAnchor?: string | undefined;
|
|
105938
106132
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
106133
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
105939
106134
|
pcbMarginTop?: number | undefined;
|
|
105940
106135
|
pcbMarginRight?: number | undefined;
|
|
105941
106136
|
pcbMarginBottom?: number | undefined;
|
|
@@ -106507,6 +106702,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106507
106702
|
pcbRotation?: string | number | undefined;
|
|
106508
106703
|
pcbPositionAnchor?: string | undefined;
|
|
106509
106704
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
106705
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
106510
106706
|
pcbMarginTop?: string | number | undefined;
|
|
106511
106707
|
pcbMarginRight?: string | number | undefined;
|
|
106512
106708
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -107143,6 +107339,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
107143
107339
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
107144
107340
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
107145
107341
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
107342
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
107146
107343
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
107147
107344
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
107148
107345
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -110570,6 +110767,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110570
110767
|
pcbRotation?: number | undefined;
|
|
110571
110768
|
pcbPositionAnchor?: string | undefined;
|
|
110572
110769
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
110770
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
110573
110771
|
pcbMarginTop?: number | undefined;
|
|
110574
110772
|
pcbMarginRight?: number | undefined;
|
|
110575
110773
|
pcbMarginBottom?: number | undefined;
|
|
@@ -111165,6 +111363,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
111165
111363
|
pcbRotation?: string | number | undefined;
|
|
111166
111364
|
pcbPositionAnchor?: string | undefined;
|
|
111167
111365
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
111366
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
111168
111367
|
pcbMarginTop?: string | number | undefined;
|
|
111169
111368
|
pcbMarginRight?: string | number | undefined;
|
|
111170
111369
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -111755,6 +111954,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
111755
111954
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
111756
111955
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
111757
111956
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
111957
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
111758
111958
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
111759
111959
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
111760
111960
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -112512,6 +112712,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
112512
112712
|
pcbRotation?: number | undefined;
|
|
112513
112713
|
pcbPositionAnchor?: string | undefined;
|
|
112514
112714
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
112715
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
112515
112716
|
pcbMarginTop?: number | undefined;
|
|
112516
112717
|
pcbMarginRight?: number | undefined;
|
|
112517
112718
|
pcbMarginBottom?: number | undefined;
|
|
@@ -112820,6 +113021,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
112820
113021
|
pcbRotation?: string | number | undefined;
|
|
112821
113022
|
pcbPositionAnchor?: string | undefined;
|
|
112822
113023
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
113024
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
112823
113025
|
pcbMarginTop?: string | number | undefined;
|
|
112824
113026
|
pcbMarginRight?: string | number | undefined;
|
|
112825
113027
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -113155,6 +113357,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
113155
113357
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
113156
113358
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
113157
113359
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
113360
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
113158
113361
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
113159
113362
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
113160
113363
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -116291,6 +116494,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116291
116494
|
pcbRotation?: number | undefined;
|
|
116292
116495
|
pcbPositionAnchor?: string | undefined;
|
|
116293
116496
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
116497
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
116294
116498
|
pcbMarginTop?: number | undefined;
|
|
116295
116499
|
pcbMarginRight?: number | undefined;
|
|
116296
116500
|
pcbMarginBottom?: number | undefined;
|
|
@@ -116812,6 +117016,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116812
117016
|
pcbRotation?: string | number | undefined;
|
|
116813
117017
|
pcbPositionAnchor?: string | undefined;
|
|
116814
117018
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
117019
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
116815
117020
|
pcbMarginTop?: string | number | undefined;
|
|
116816
117021
|
pcbMarginRight?: string | number | undefined;
|
|
116817
117022
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -117332,6 +117537,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
117332
117537
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
117333
117538
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
117334
117539
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
117540
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
117335
117541
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
117336
117542
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
117337
117543
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -120469,6 +120675,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120469
120675
|
pcbRotation?: number | undefined;
|
|
120470
120676
|
pcbPositionAnchor?: string | undefined;
|
|
120471
120677
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
120678
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
120472
120679
|
pcbMarginTop?: number | undefined;
|
|
120473
120680
|
pcbMarginRight?: number | undefined;
|
|
120474
120681
|
pcbMarginBottom?: number | undefined;
|
|
@@ -120990,6 +121197,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120990
121197
|
pcbRotation?: string | number | undefined;
|
|
120991
121198
|
pcbPositionAnchor?: string | undefined;
|
|
120992
121199
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
121200
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
120993
121201
|
pcbMarginTop?: string | number | undefined;
|
|
120994
121202
|
pcbMarginRight?: string | number | undefined;
|
|
120995
121203
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -121516,6 +121724,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
121516
121724
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
121517
121725
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
121518
121726
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
121727
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
121519
121728
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
121520
121729
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
121521
121730
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -124650,6 +124859,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
124650
124859
|
pcbRotation?: number | undefined;
|
|
124651
124860
|
pcbPositionAnchor?: string | undefined;
|
|
124652
124861
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
124862
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
124653
124863
|
pcbMarginTop?: number | undefined;
|
|
124654
124864
|
pcbMarginRight?: number | undefined;
|
|
124655
124865
|
pcbMarginBottom?: number | undefined;
|
|
@@ -125170,6 +125380,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
125170
125380
|
pcbRotation?: string | number | undefined;
|
|
125171
125381
|
pcbPositionAnchor?: string | undefined;
|
|
125172
125382
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
125383
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
125173
125384
|
pcbMarginTop?: string | number | undefined;
|
|
125174
125385
|
pcbMarginRight?: string | number | undefined;
|
|
125175
125386
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -125697,6 +125908,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
125697
125908
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
125698
125909
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
125699
125910
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
125911
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
125700
125912
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
125701
125913
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
125702
125914
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -128835,6 +129047,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
128835
129047
|
pcbRotation?: number | undefined;
|
|
128836
129048
|
pcbPositionAnchor?: string | undefined;
|
|
128837
129049
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
129050
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
128838
129051
|
pcbMarginTop?: number | undefined;
|
|
128839
129052
|
pcbMarginRight?: number | undefined;
|
|
128840
129053
|
pcbMarginBottom?: number | undefined;
|
|
@@ -129358,6 +129571,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129358
129571
|
pcbRotation?: string | number | undefined;
|
|
129359
129572
|
pcbPositionAnchor?: string | undefined;
|
|
129360
129573
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
129574
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
129361
129575
|
pcbMarginTop?: string | number | undefined;
|
|
129362
129576
|
pcbMarginRight?: string | number | undefined;
|
|
129363
129577
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -129874,6 +130088,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
129874
130088
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
129875
130089
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
129876
130090
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
130091
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
129877
130092
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
129878
130093
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
129879
130094
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -133017,6 +133232,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133017
133232
|
pcbRotation?: number | undefined;
|
|
133018
133233
|
pcbPositionAnchor?: string | undefined;
|
|
133019
133234
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
133235
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
133020
133236
|
pcbMarginTop?: number | undefined;
|
|
133021
133237
|
pcbMarginRight?: number | undefined;
|
|
133022
133238
|
pcbMarginBottom?: number | undefined;
|
|
@@ -133544,6 +133760,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133544
133760
|
pcbRotation?: string | number | undefined;
|
|
133545
133761
|
pcbPositionAnchor?: string | undefined;
|
|
133546
133762
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
133763
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
133547
133764
|
pcbMarginTop?: string | number | undefined;
|
|
133548
133765
|
pcbMarginRight?: string | number | undefined;
|
|
133549
133766
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -134071,6 +134288,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134071
134288
|
pcbRotation?: number | undefined;
|
|
134072
134289
|
pcbPositionAnchor?: string | undefined;
|
|
134073
134290
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
134291
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
134074
134292
|
pcbMarginTop?: number | undefined;
|
|
134075
134293
|
pcbMarginRight?: number | undefined;
|
|
134076
134294
|
pcbMarginBottom?: number | undefined;
|
|
@@ -134598,6 +134816,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134598
134816
|
pcbRotation?: string | number | undefined;
|
|
134599
134817
|
pcbPositionAnchor?: string | undefined;
|
|
134600
134818
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
134819
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
134601
134820
|
pcbMarginTop?: string | number | undefined;
|
|
134602
134821
|
pcbMarginRight?: string | number | undefined;
|
|
134603
134822
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -135131,6 +135350,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135131
135350
|
pcbRotation?: number | undefined;
|
|
135132
135351
|
pcbPositionAnchor?: string | undefined;
|
|
135133
135352
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
135353
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
135134
135354
|
pcbMarginTop?: number | undefined;
|
|
135135
135355
|
pcbMarginRight?: number | undefined;
|
|
135136
135356
|
pcbMarginBottom?: number | undefined;
|
|
@@ -135652,6 +135872,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135652
135872
|
pcbRotation?: string | number | undefined;
|
|
135653
135873
|
pcbPositionAnchor?: string | undefined;
|
|
135654
135874
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
135875
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
135655
135876
|
pcbMarginTop?: string | number | undefined;
|
|
135656
135877
|
pcbMarginRight?: string | number | undefined;
|
|
135657
135878
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -136196,6 +136417,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
136196
136417
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
136197
136418
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
136198
136419
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
136420
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
136199
136421
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
136200
136422
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
136201
136423
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -139335,6 +139557,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
139335
139557
|
pcbRotation?: number | undefined;
|
|
139336
139558
|
pcbPositionAnchor?: string | undefined;
|
|
139337
139559
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
139560
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
139338
139561
|
pcbMarginTop?: number | undefined;
|
|
139339
139562
|
pcbMarginRight?: number | undefined;
|
|
139340
139563
|
pcbMarginBottom?: number | undefined;
|
|
@@ -139860,6 +140083,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
139860
140083
|
pcbRotation?: string | number | undefined;
|
|
139861
140084
|
pcbPositionAnchor?: string | undefined;
|
|
139862
140085
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
140086
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
139863
140087
|
pcbMarginTop?: string | number | undefined;
|
|
139864
140088
|
pcbMarginRight?: string | number | undefined;
|
|
139865
140089
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -140395,6 +140619,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
140395
140619
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
140396
140620
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
140397
140621
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
140622
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
140398
140623
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
140399
140624
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
140400
140625
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -143542,6 +143767,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
143542
143767
|
pcbRotation?: number | undefined;
|
|
143543
143768
|
pcbPositionAnchor?: string | undefined;
|
|
143544
143769
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
143770
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
143545
143771
|
pcbMarginTop?: number | undefined;
|
|
143546
143772
|
pcbMarginRight?: number | undefined;
|
|
143547
143773
|
pcbMarginBottom?: number | undefined;
|
|
@@ -144072,6 +144298,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144072
144298
|
pcbRotation?: string | number | undefined;
|
|
144073
144299
|
pcbPositionAnchor?: string | undefined;
|
|
144074
144300
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
144301
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
144075
144302
|
pcbMarginTop?: string | number | undefined;
|
|
144076
144303
|
pcbMarginRight?: string | number | undefined;
|
|
144077
144304
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -144603,6 +144830,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144603
144830
|
pcbRotation?: string | number | undefined;
|
|
144604
144831
|
pcbPositionAnchor?: string | undefined;
|
|
144605
144832
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
144833
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
144606
144834
|
pcbMarginTop?: string | number | undefined;
|
|
144607
144835
|
pcbMarginRight?: string | number | undefined;
|
|
144608
144836
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -145135,6 +145363,7 @@ declare const fabricationNoteTextProps: z.ZodObject<{
|
|
|
145135
145363
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
145136
145364
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
145137
145365
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
145366
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
145138
145367
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
145139
145368
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
145140
145369
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -145210,6 +145439,7 @@ declare const fabricationNoteTextProps: z.ZodObject<{
|
|
|
145210
145439
|
pcbRotation?: number | undefined;
|
|
145211
145440
|
pcbPositionAnchor?: string | undefined;
|
|
145212
145441
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
145442
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145213
145443
|
pcbMarginTop?: number | undefined;
|
|
145214
145444
|
pcbMarginRight?: number | undefined;
|
|
145215
145445
|
pcbMarginBottom?: number | undefined;
|
|
@@ -145248,6 +145478,7 @@ declare const fabricationNoteTextProps: z.ZodObject<{
|
|
|
145248
145478
|
pcbRotation?: string | number | undefined;
|
|
145249
145479
|
pcbPositionAnchor?: string | undefined;
|
|
145250
145480
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
145481
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145251
145482
|
pcbMarginTop?: string | number | undefined;
|
|
145252
145483
|
pcbMarginRight?: string | number | undefined;
|
|
145253
145484
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -145284,6 +145515,7 @@ declare const fabricationNoteRectProps: z.ZodObject<Omit<{
|
|
|
145284
145515
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
145285
145516
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
145286
145517
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
145518
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
145287
145519
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
145288
145520
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
145289
145521
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -145359,6 +145591,7 @@ declare const fabricationNoteRectProps: z.ZodObject<Omit<{
|
|
|
145359
145591
|
pcbOffsetY?: number | undefined;
|
|
145360
145592
|
pcbPositionAnchor?: string | undefined;
|
|
145361
145593
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
145594
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145362
145595
|
pcbMarginTop?: number | undefined;
|
|
145363
145596
|
pcbMarginRight?: number | undefined;
|
|
145364
145597
|
pcbMarginBottom?: number | undefined;
|
|
@@ -145400,6 +145633,7 @@ declare const fabricationNoteRectProps: z.ZodObject<Omit<{
|
|
|
145400
145633
|
pcbOffsetY?: string | number | undefined;
|
|
145401
145634
|
pcbPositionAnchor?: string | undefined;
|
|
145402
145635
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
145636
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145403
145637
|
pcbMarginTop?: string | number | undefined;
|
|
145404
145638
|
pcbMarginRight?: string | number | undefined;
|
|
145405
145639
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -145440,6 +145674,7 @@ declare const fabricationNotePathProps: z.ZodObject<Omit<{
|
|
|
145440
145674
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
145441
145675
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
145442
145676
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
145677
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
145443
145678
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
145444
145679
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
145445
145680
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -145535,6 +145770,7 @@ declare const fabricationNotePathProps: z.ZodObject<Omit<{
|
|
|
145535
145770
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
145536
145771
|
pcbPositionAnchor?: string | undefined;
|
|
145537
145772
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
145773
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145538
145774
|
pcbMarginTop?: number | undefined;
|
|
145539
145775
|
pcbMarginRight?: number | undefined;
|
|
145540
145776
|
pcbMarginBottom?: number | undefined;
|
|
@@ -145571,6 +145807,7 @@ declare const fabricationNotePathProps: z.ZodObject<Omit<{
|
|
|
145571
145807
|
} | undefined;
|
|
145572
145808
|
pcbPositionAnchor?: string | undefined;
|
|
145573
145809
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
145810
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145574
145811
|
pcbMarginTop?: string | number | undefined;
|
|
145575
145812
|
pcbMarginRight?: string | number | undefined;
|
|
145576
145813
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -145621,6 +145858,7 @@ declare const fabricationNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
145621
145858
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
145622
145859
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
145623
145860
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
145861
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
145624
145862
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
145625
145863
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
145626
145864
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -145719,6 +145957,7 @@ declare const fabricationNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
145719
145957
|
fontSize?: number | undefined;
|
|
145720
145958
|
pcbPositionAnchor?: string | undefined;
|
|
145721
145959
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
145960
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145722
145961
|
pcbMarginTop?: number | undefined;
|
|
145723
145962
|
pcbMarginRight?: number | undefined;
|
|
145724
145963
|
pcbMarginBottom?: number | undefined;
|
|
@@ -145762,6 +146001,7 @@ declare const fabricationNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
145762
146001
|
fontSize?: string | number | undefined;
|
|
145763
146002
|
pcbPositionAnchor?: string | undefined;
|
|
145764
146003
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
146004
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145765
146005
|
pcbMarginTop?: string | number | undefined;
|
|
145766
146006
|
pcbMarginRight?: string | number | undefined;
|
|
145767
146007
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -145869,6 +146109,7 @@ declare const viaProps: z.ZodObject<{
|
|
|
145869
146109
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
145870
146110
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
145871
146111
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
146112
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
145872
146113
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
145873
146114
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
145874
146115
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -145984,6 +146225,7 @@ declare const viaProps: z.ZodObject<{
|
|
|
145984
146225
|
pcbRotation?: number | undefined;
|
|
145985
146226
|
pcbPositionAnchor?: string | undefined;
|
|
145986
146227
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
146228
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145987
146229
|
pcbMarginTop?: number | undefined;
|
|
145988
146230
|
pcbMarginRight?: number | undefined;
|
|
145989
146231
|
pcbMarginBottom?: number | undefined;
|
|
@@ -146045,6 +146287,7 @@ declare const viaProps: z.ZodObject<{
|
|
|
146045
146287
|
pcbRotation?: string | number | undefined;
|
|
146046
146288
|
pcbPositionAnchor?: string | undefined;
|
|
146047
146289
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
146290
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
146048
146291
|
pcbMarginTop?: string | number | undefined;
|
|
146049
146292
|
pcbMarginRight?: string | number | undefined;
|
|
146050
146293
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -146135,6 +146378,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
146135
146378
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
146136
146379
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
146137
146380
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
146381
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
146138
146382
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
146139
146383
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
146140
146384
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -149282,6 +149526,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149282
149526
|
pcbRotation?: number | undefined;
|
|
149283
149527
|
pcbPositionAnchor?: string | undefined;
|
|
149284
149528
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
149529
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
149285
149530
|
pcbMarginTop?: number | undefined;
|
|
149286
149531
|
pcbMarginRight?: number | undefined;
|
|
149287
149532
|
pcbMarginBottom?: number | undefined;
|
|
@@ -149809,6 +150054,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149809
150054
|
pcbRotation?: string | number | undefined;
|
|
149810
150055
|
pcbPositionAnchor?: string | undefined;
|
|
149811
150056
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
150057
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
149812
150058
|
pcbMarginTop?: string | number | undefined;
|
|
149813
150059
|
pcbMarginRight?: string | number | undefined;
|
|
149814
150060
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -150336,6 +150582,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150336
150582
|
pcbRotation?: number | undefined;
|
|
150337
150583
|
pcbPositionAnchor?: string | undefined;
|
|
150338
150584
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
150585
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
150339
150586
|
pcbMarginTop?: number | undefined;
|
|
150340
150587
|
pcbMarginRight?: number | undefined;
|
|
150341
150588
|
pcbMarginBottom?: number | undefined;
|
|
@@ -150863,6 +151110,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150863
151110
|
pcbRotation?: string | number | undefined;
|
|
150864
151111
|
pcbPositionAnchor?: string | undefined;
|
|
150865
151112
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
151113
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
150866
151114
|
pcbMarginTop?: string | number | undefined;
|
|
150867
151115
|
pcbMarginRight?: string | number | undefined;
|
|
150868
151116
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -151389,6 +151637,7 @@ declare const breakoutPointProps: z.ZodObject<Omit<{
|
|
|
151389
151637
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
151390
151638
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
151391
151639
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
151640
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
151392
151641
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
151393
151642
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
151394
151643
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -151455,6 +151704,7 @@ declare const breakoutPointProps: z.ZodObject<Omit<{
|
|
|
151455
151704
|
pcbOffsetY?: number | undefined;
|
|
151456
151705
|
pcbPositionAnchor?: string | undefined;
|
|
151457
151706
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
151707
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
151458
151708
|
pcbMarginTop?: number | undefined;
|
|
151459
151709
|
pcbMarginRight?: number | undefined;
|
|
151460
151710
|
pcbMarginBottom?: number | undefined;
|
|
@@ -151486,6 +151736,7 @@ declare const breakoutPointProps: z.ZodObject<Omit<{
|
|
|
151486
151736
|
pcbOffsetY?: string | number | undefined;
|
|
151487
151737
|
pcbPositionAnchor?: string | undefined;
|
|
151488
151738
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
151739
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
151489
151740
|
pcbMarginTop?: string | number | undefined;
|
|
151490
151741
|
pcbMarginRight?: string | number | undefined;
|
|
151491
151742
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -151519,6 +151770,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
151519
151770
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
151520
151771
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
151521
151772
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
151773
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
151522
151774
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
151523
151775
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
151524
151776
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -151588,6 +151840,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
151588
151840
|
pcbOffsetY?: number | undefined;
|
|
151589
151841
|
pcbPositionAnchor?: string | undefined;
|
|
151590
151842
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
151843
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
151591
151844
|
pcbMarginTop?: number | undefined;
|
|
151592
151845
|
pcbMarginRight?: number | undefined;
|
|
151593
151846
|
pcbMarginBottom?: number | undefined;
|
|
@@ -151623,6 +151876,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
151623
151876
|
pcbOffsetY?: string | number | undefined;
|
|
151624
151877
|
pcbPositionAnchor?: string | undefined;
|
|
151625
151878
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
151879
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
151626
151880
|
pcbMarginTop?: string | number | undefined;
|
|
151627
151881
|
pcbMarginRight?: string | number | undefined;
|
|
151628
151882
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -151654,6 +151908,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
151654
151908
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
151655
151909
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
151656
151910
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
151911
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
151657
151912
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
151658
151913
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
151659
151914
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -151726,6 +151981,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
151726
151981
|
pcbRotation?: number | undefined;
|
|
151727
151982
|
pcbPositionAnchor?: string | undefined;
|
|
151728
151983
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
151984
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
151729
151985
|
pcbMarginTop?: number | undefined;
|
|
151730
151986
|
pcbMarginRight?: number | undefined;
|
|
151731
151987
|
pcbMarginBottom?: number | undefined;
|
|
@@ -151763,6 +152019,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
151763
152019
|
pcbRotation?: string | number | undefined;
|
|
151764
152020
|
pcbPositionAnchor?: string | undefined;
|
|
151765
152021
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152022
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
151766
152023
|
pcbMarginTop?: string | number | undefined;
|
|
151767
152024
|
pcbMarginRight?: string | number | undefined;
|
|
151768
152025
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -151797,6 +152054,7 @@ declare const courtyardRectProps: z.ZodObject<Omit<{
|
|
|
151797
152054
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
151798
152055
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
151799
152056
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
152057
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
151800
152058
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
151801
152059
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
151802
152060
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -151871,6 +152129,7 @@ declare const courtyardRectProps: z.ZodObject<Omit<{
|
|
|
151871
152129
|
pcbOffsetY?: number | undefined;
|
|
151872
152130
|
pcbPositionAnchor?: string | undefined;
|
|
151873
152131
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152132
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
151874
152133
|
pcbMarginTop?: number | undefined;
|
|
151875
152134
|
pcbMarginRight?: number | undefined;
|
|
151876
152135
|
pcbMarginBottom?: number | undefined;
|
|
@@ -151911,6 +152170,7 @@ declare const courtyardRectProps: z.ZodObject<Omit<{
|
|
|
151911
152170
|
pcbOffsetY?: string | number | undefined;
|
|
151912
152171
|
pcbPositionAnchor?: string | undefined;
|
|
151913
152172
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152173
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
151914
152174
|
pcbMarginTop?: string | number | undefined;
|
|
151915
152175
|
pcbMarginRight?: string | number | undefined;
|
|
151916
152176
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -151950,6 +152210,7 @@ declare const courtyardOutlineProps: z.ZodObject<Omit<{
|
|
|
151950
152210
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
151951
152211
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
151952
152212
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
152213
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
151953
152214
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
151954
152215
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
151955
152216
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -152025,6 +152286,7 @@ declare const courtyardOutlineProps: z.ZodObject<Omit<{
|
|
|
152025
152286
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
152026
152287
|
pcbPositionAnchor?: string | undefined;
|
|
152027
152288
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152289
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
152028
152290
|
pcbMarginTop?: number | undefined;
|
|
152029
152291
|
pcbMarginRight?: number | undefined;
|
|
152030
152292
|
pcbMarginBottom?: number | undefined;
|
|
@@ -152058,6 +152320,7 @@ declare const courtyardOutlineProps: z.ZodObject<Omit<{
|
|
|
152058
152320
|
} | undefined;
|
|
152059
152321
|
pcbPositionAnchor?: string | undefined;
|
|
152060
152322
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152323
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
152061
152324
|
pcbMarginTop?: string | number | undefined;
|
|
152062
152325
|
pcbMarginRight?: string | number | undefined;
|
|
152063
152326
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -152096,6 +152359,7 @@ declare const courtyardCircleProps: z.ZodObject<Omit<{
|
|
|
152096
152359
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
152097
152360
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
152098
152361
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
152362
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
152099
152363
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
152100
152364
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
152101
152365
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -152163,6 +152427,7 @@ declare const courtyardCircleProps: z.ZodObject<Omit<{
|
|
|
152163
152427
|
pcbOffsetY?: number | undefined;
|
|
152164
152428
|
pcbPositionAnchor?: string | undefined;
|
|
152165
152429
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152430
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
152166
152431
|
pcbMarginTop?: number | undefined;
|
|
152167
152432
|
pcbMarginRight?: number | undefined;
|
|
152168
152433
|
pcbMarginBottom?: number | undefined;
|
|
@@ -152197,6 +152462,7 @@ declare const courtyardCircleProps: z.ZodObject<Omit<{
|
|
|
152197
152462
|
pcbOffsetY?: string | number | undefined;
|
|
152198
152463
|
pcbPositionAnchor?: string | undefined;
|
|
152199
152464
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152465
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
152200
152466
|
pcbMarginTop?: string | number | undefined;
|
|
152201
152467
|
pcbMarginRight?: string | number | undefined;
|
|
152202
152468
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -152231,6 +152497,7 @@ declare const courtyardPillProps: z.ZodObject<Omit<{
|
|
|
152231
152497
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
152232
152498
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
152233
152499
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
152500
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
152234
152501
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
152235
152502
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
152236
152503
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -152302,6 +152569,7 @@ declare const courtyardPillProps: z.ZodObject<Omit<{
|
|
|
152302
152569
|
pcbOffsetY?: number | undefined;
|
|
152303
152570
|
pcbPositionAnchor?: string | undefined;
|
|
152304
152571
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152572
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
152305
152573
|
pcbMarginTop?: number | undefined;
|
|
152306
152574
|
pcbMarginRight?: number | undefined;
|
|
152307
152575
|
pcbMarginBottom?: number | undefined;
|
|
@@ -152338,6 +152606,7 @@ declare const courtyardPillProps: z.ZodObject<Omit<{
|
|
|
152338
152606
|
pcbOffsetY?: string | number | undefined;
|
|
152339
152607
|
pcbPositionAnchor?: string | undefined;
|
|
152340
152608
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152609
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
152341
152610
|
pcbMarginTop?: string | number | undefined;
|
|
152342
152611
|
pcbMarginRight?: string | number | undefined;
|
|
152343
152612
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -152613,6 +152882,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
152613
152882
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
152614
152883
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
152615
152884
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
152885
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
152616
152886
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
152617
152887
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
152618
152888
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -155748,6 +156018,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
155748
156018
|
pcbRotation?: number | undefined;
|
|
155749
156019
|
pcbPositionAnchor?: string | undefined;
|
|
155750
156020
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
156021
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
155751
156022
|
pcbMarginTop?: number | undefined;
|
|
155752
156023
|
pcbMarginRight?: number | undefined;
|
|
155753
156024
|
pcbMarginBottom?: number | undefined;
|
|
@@ -156268,6 +156539,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156268
156539
|
pcbRotation?: string | number | undefined;
|
|
156269
156540
|
pcbPositionAnchor?: string | undefined;
|
|
156270
156541
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
156542
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
156271
156543
|
pcbMarginTop?: string | number | undefined;
|
|
156272
156544
|
pcbMarginRight?: string | number | undefined;
|
|
156273
156545
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -156794,6 +157066,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
156794
157066
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
156795
157067
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
156796
157068
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
157069
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
156797
157070
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
156798
157071
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
156799
157072
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -159934,6 +160207,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
159934
160207
|
pcbRotation?: number | undefined;
|
|
159935
160208
|
pcbPositionAnchor?: string | undefined;
|
|
159936
160209
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
160210
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
159937
160211
|
pcbMarginTop?: number | undefined;
|
|
159938
160212
|
pcbMarginRight?: number | undefined;
|
|
159939
160213
|
pcbMarginBottom?: number | undefined;
|
|
@@ -160460,6 +160734,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160460
160734
|
pcbRotation?: string | number | undefined;
|
|
160461
160735
|
pcbPositionAnchor?: string | undefined;
|
|
160462
160736
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
160737
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
160463
160738
|
pcbMarginTop?: string | number | undefined;
|
|
160464
160739
|
pcbMarginRight?: string | number | undefined;
|
|
160465
160740
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -160992,6 +161267,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
160992
161267
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
160993
161268
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
160994
161269
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
161270
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
160995
161271
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
160996
161272
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
160997
161273
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -164132,6 +164408,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164132
164408
|
pcbRotation?: number | undefined;
|
|
164133
164409
|
pcbPositionAnchor?: string | undefined;
|
|
164134
164410
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
164411
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
164135
164412
|
pcbMarginTop?: number | undefined;
|
|
164136
164413
|
pcbMarginRight?: number | undefined;
|
|
164137
164414
|
pcbMarginBottom?: number | undefined;
|
|
@@ -164658,6 +164935,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164658
164935
|
pcbRotation?: string | number | undefined;
|
|
164659
164936
|
pcbPositionAnchor?: string | undefined;
|
|
164660
164937
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
164938
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
164661
164939
|
pcbMarginTop?: string | number | undefined;
|
|
164662
164940
|
pcbMarginRight?: string | number | undefined;
|
|
164663
164941
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -165185,6 +165463,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
165185
165463
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
165186
165464
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
165187
165465
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
165466
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
165188
165467
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
165189
165468
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
165190
165469
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -168323,6 +168602,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168323
168602
|
pcbRotation?: number | undefined;
|
|
168324
168603
|
pcbPositionAnchor?: string | undefined;
|
|
168325
168604
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
168605
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
168326
168606
|
pcbMarginTop?: number | undefined;
|
|
168327
168607
|
pcbMarginRight?: number | undefined;
|
|
168328
168608
|
pcbMarginBottom?: number | undefined;
|
|
@@ -168845,6 +169125,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168845
169125
|
pcbRotation?: string | number | undefined;
|
|
168846
169126
|
pcbPositionAnchor?: string | undefined;
|
|
168847
169127
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
169128
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
168848
169129
|
pcbMarginTop?: string | number | undefined;
|
|
168849
169130
|
pcbMarginRight?: string | number | undefined;
|
|
168850
169131
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -169879,6 +170160,7 @@ declare const copperTextProps: z.ZodObject<{
|
|
|
169879
170160
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
169880
170161
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
169881
170162
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
170163
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
169882
170164
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
169883
170165
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
169884
170166
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -169965,6 +170247,7 @@ declare const copperTextProps: z.ZodObject<{
|
|
|
169965
170247
|
pcbRotation?: number | undefined;
|
|
169966
170248
|
pcbPositionAnchor?: string | undefined;
|
|
169967
170249
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
170250
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
169968
170251
|
pcbMarginTop?: number | undefined;
|
|
169969
170252
|
pcbMarginRight?: number | undefined;
|
|
169970
170253
|
pcbMarginBottom?: number | undefined;
|
|
@@ -170007,6 +170290,7 @@ declare const copperTextProps: z.ZodObject<{
|
|
|
170007
170290
|
pcbRotation?: string | number | undefined;
|
|
170008
170291
|
pcbPositionAnchor?: string | undefined;
|
|
170009
170292
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
170293
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170010
170294
|
pcbMarginTop?: string | number | undefined;
|
|
170011
170295
|
pcbMarginRight?: string | number | undefined;
|
|
170012
170296
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -170044,6 +170328,7 @@ declare const silkscreenTextProps: z.ZodObject<{
|
|
|
170044
170328
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
170045
170329
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
170046
170330
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
170331
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
170047
170332
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
170048
170333
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
170049
170334
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -170137,6 +170422,7 @@ declare const silkscreenTextProps: z.ZodObject<{
|
|
|
170137
170422
|
pcbRotation?: number | undefined;
|
|
170138
170423
|
pcbPositionAnchor?: string | undefined;
|
|
170139
170424
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
170425
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170140
170426
|
pcbMarginTop?: number | undefined;
|
|
170141
170427
|
pcbMarginRight?: number | undefined;
|
|
170142
170428
|
pcbMarginBottom?: number | undefined;
|
|
@@ -170183,6 +170469,7 @@ declare const silkscreenTextProps: z.ZodObject<{
|
|
|
170183
170469
|
pcbRotation?: string | number | undefined;
|
|
170184
170470
|
pcbPositionAnchor?: string | undefined;
|
|
170185
170471
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
170472
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170186
170473
|
pcbMarginTop?: string | number | undefined;
|
|
170187
170474
|
pcbMarginRight?: string | number | undefined;
|
|
170188
170475
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -170224,6 +170511,7 @@ declare const silkscreenPathProps: z.ZodObject<Omit<{
|
|
|
170224
170511
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
170225
170512
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
170226
170513
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
170514
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
170227
170515
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
170228
170516
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
170229
170517
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -170318,6 +170606,7 @@ declare const silkscreenPathProps: z.ZodObject<Omit<{
|
|
|
170318
170606
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
170319
170607
|
pcbPositionAnchor?: string | undefined;
|
|
170320
170608
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
170609
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170321
170610
|
pcbMarginTop?: number | undefined;
|
|
170322
170611
|
pcbMarginRight?: number | undefined;
|
|
170323
170612
|
pcbMarginBottom?: number | undefined;
|
|
@@ -170353,6 +170642,7 @@ declare const silkscreenPathProps: z.ZodObject<Omit<{
|
|
|
170353
170642
|
} | undefined;
|
|
170354
170643
|
pcbPositionAnchor?: string | undefined;
|
|
170355
170644
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
170645
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170356
170646
|
pcbMarginTop?: string | number | undefined;
|
|
170357
170647
|
pcbMarginRight?: string | number | undefined;
|
|
170358
170648
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -170388,6 +170678,7 @@ declare const silkscreenLineProps: z.ZodObject<Omit<{
|
|
|
170388
170678
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
170389
170679
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
170390
170680
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
170681
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
170391
170682
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
170392
170683
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
170393
170684
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -170459,6 +170750,7 @@ declare const silkscreenLineProps: z.ZodObject<Omit<{
|
|
|
170459
170750
|
pcbBottomEdgeY?: string | number | undefined;
|
|
170460
170751
|
pcbPositionAnchor?: string | undefined;
|
|
170461
170752
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
170753
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170462
170754
|
pcbMarginTop?: number | undefined;
|
|
170463
170755
|
pcbMarginRight?: number | undefined;
|
|
170464
170756
|
pcbMarginBottom?: number | undefined;
|
|
@@ -170493,6 +170785,7 @@ declare const silkscreenLineProps: z.ZodObject<Omit<{
|
|
|
170493
170785
|
pcbBottomEdgeY?: string | number | undefined;
|
|
170494
170786
|
pcbPositionAnchor?: string | undefined;
|
|
170495
170787
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
170788
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170496
170789
|
pcbMarginTop?: string | number | undefined;
|
|
170497
170790
|
pcbMarginRight?: string | number | undefined;
|
|
170498
170791
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -170527,6 +170820,7 @@ declare const silkscreenRectProps: z.ZodObject<Omit<{
|
|
|
170527
170820
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
170528
170821
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
170529
170822
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
170823
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
170530
170824
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
170531
170825
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
170532
170826
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -170600,6 +170894,7 @@ declare const silkscreenRectProps: z.ZodObject<Omit<{
|
|
|
170600
170894
|
pcbOffsetY?: number | undefined;
|
|
170601
170895
|
pcbPositionAnchor?: string | undefined;
|
|
170602
170896
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
170897
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170603
170898
|
pcbMarginTop?: number | undefined;
|
|
170604
170899
|
pcbMarginRight?: number | undefined;
|
|
170605
170900
|
pcbMarginBottom?: number | undefined;
|
|
@@ -170639,6 +170934,7 @@ declare const silkscreenRectProps: z.ZodObject<Omit<{
|
|
|
170639
170934
|
pcbOffsetY?: string | number | undefined;
|
|
170640
170935
|
pcbPositionAnchor?: string | undefined;
|
|
170641
170936
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
170937
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170642
170938
|
pcbMarginTop?: string | number | undefined;
|
|
170643
170939
|
pcbMarginRight?: string | number | undefined;
|
|
170644
170940
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -170677,6 +170973,7 @@ declare const silkscreenCircleProps: z.ZodObject<Omit<{
|
|
|
170677
170973
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
170678
170974
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
170679
170975
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
170976
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
170680
170977
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
170681
170978
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
170682
170979
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -170747,6 +171044,7 @@ declare const silkscreenCircleProps: z.ZodObject<Omit<{
|
|
|
170747
171044
|
pcbOffsetY?: number | undefined;
|
|
170748
171045
|
pcbPositionAnchor?: string | undefined;
|
|
170749
171046
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171047
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170750
171048
|
pcbMarginTop?: number | undefined;
|
|
170751
171049
|
pcbMarginRight?: number | undefined;
|
|
170752
171050
|
pcbMarginBottom?: number | undefined;
|
|
@@ -170784,6 +171082,7 @@ declare const silkscreenCircleProps: z.ZodObject<Omit<{
|
|
|
170784
171082
|
pcbOffsetY?: string | number | undefined;
|
|
170785
171083
|
pcbPositionAnchor?: string | undefined;
|
|
170786
171084
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171085
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170787
171086
|
pcbMarginTop?: string | number | undefined;
|
|
170788
171087
|
pcbMarginRight?: string | number | undefined;
|
|
170789
171088
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -171026,6 +171325,7 @@ declare const portProps: z.ZodObject<{
|
|
|
171026
171325
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
171027
171326
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
171028
171327
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
171328
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
171029
171329
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
171030
171330
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
171031
171331
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -171137,6 +171437,7 @@ declare const portProps: z.ZodObject<{
|
|
|
171137
171437
|
pcbRotation?: number | undefined;
|
|
171138
171438
|
pcbPositionAnchor?: string | undefined;
|
|
171139
171439
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171440
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171140
171441
|
pcbMarginTop?: number | undefined;
|
|
171141
171442
|
pcbMarginRight?: number | undefined;
|
|
171142
171443
|
pcbMarginBottom?: number | undefined;
|
|
@@ -171200,6 +171501,7 @@ declare const portProps: z.ZodObject<{
|
|
|
171200
171501
|
pcbRotation?: string | number | undefined;
|
|
171201
171502
|
pcbPositionAnchor?: string | undefined;
|
|
171202
171503
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171504
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171203
171505
|
pcbMarginTop?: string | number | undefined;
|
|
171204
171506
|
pcbMarginRight?: string | number | undefined;
|
|
171205
171507
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -171268,6 +171570,7 @@ declare const pcbNoteTextProps: z.ZodObject<{
|
|
|
171268
171570
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
171269
171571
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
171270
171572
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
171573
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
171271
171574
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
171272
171575
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
171273
171576
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -171343,6 +171646,7 @@ declare const pcbNoteTextProps: z.ZodObject<{
|
|
|
171343
171646
|
pcbRotation?: number | undefined;
|
|
171344
171647
|
pcbPositionAnchor?: string | undefined;
|
|
171345
171648
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171649
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171346
171650
|
pcbMarginTop?: number | undefined;
|
|
171347
171651
|
pcbMarginRight?: number | undefined;
|
|
171348
171652
|
pcbMarginBottom?: number | undefined;
|
|
@@ -171381,6 +171685,7 @@ declare const pcbNoteTextProps: z.ZodObject<{
|
|
|
171381
171685
|
pcbRotation?: string | number | undefined;
|
|
171382
171686
|
pcbPositionAnchor?: string | undefined;
|
|
171383
171687
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171688
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171384
171689
|
pcbMarginTop?: string | number | undefined;
|
|
171385
171690
|
pcbMarginRight?: string | number | undefined;
|
|
171386
171691
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -171427,6 +171732,7 @@ declare const pcbNoteRectProps: z.ZodObject<Omit<{
|
|
|
171427
171732
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
171428
171733
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
171429
171734
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
171735
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
171430
171736
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
171431
171737
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
171432
171738
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -171502,6 +171808,7 @@ declare const pcbNoteRectProps: z.ZodObject<Omit<{
|
|
|
171502
171808
|
pcbOffsetY?: number | undefined;
|
|
171503
171809
|
pcbPositionAnchor?: string | undefined;
|
|
171504
171810
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171811
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171505
171812
|
pcbMarginTop?: number | undefined;
|
|
171506
171813
|
pcbMarginRight?: number | undefined;
|
|
171507
171814
|
pcbMarginBottom?: number | undefined;
|
|
@@ -171543,6 +171850,7 @@ declare const pcbNoteRectProps: z.ZodObject<Omit<{
|
|
|
171543
171850
|
pcbOffsetY?: string | number | undefined;
|
|
171544
171851
|
pcbPositionAnchor?: string | undefined;
|
|
171545
171852
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171853
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171546
171854
|
pcbMarginTop?: string | number | undefined;
|
|
171547
171855
|
pcbMarginRight?: string | number | undefined;
|
|
171548
171856
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -171588,6 +171896,7 @@ declare const pcbNotePathProps: z.ZodObject<Omit<{
|
|
|
171588
171896
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
171589
171897
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
171590
171898
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
171899
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
171591
171900
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
171592
171901
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
171593
171902
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -171683,6 +171992,7 @@ declare const pcbNotePathProps: z.ZodObject<Omit<{
|
|
|
171683
171992
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
171684
171993
|
pcbPositionAnchor?: string | undefined;
|
|
171685
171994
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171995
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171686
171996
|
pcbMarginTop?: number | undefined;
|
|
171687
171997
|
pcbMarginRight?: number | undefined;
|
|
171688
171998
|
pcbMarginBottom?: number | undefined;
|
|
@@ -171719,6 +172029,7 @@ declare const pcbNotePathProps: z.ZodObject<Omit<{
|
|
|
171719
172029
|
} | undefined;
|
|
171720
172030
|
pcbPositionAnchor?: string | undefined;
|
|
171721
172031
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
172032
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171722
172033
|
pcbMarginTop?: string | number | undefined;
|
|
171723
172034
|
pcbMarginRight?: string | number | undefined;
|
|
171724
172035
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -171764,6 +172075,7 @@ declare const pcbNoteLineProps: z.ZodObject<Omit<{
|
|
|
171764
172075
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
171765
172076
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
171766
172077
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
172078
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
171767
172079
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
171768
172080
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
171769
172081
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -171832,6 +172144,7 @@ declare const pcbNoteLineProps: z.ZodObject<Omit<{
|
|
|
171832
172144
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
171833
172145
|
pcbPositionAnchor?: string | undefined;
|
|
171834
172146
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
172147
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171835
172148
|
pcbMarginTop?: number | undefined;
|
|
171836
172149
|
pcbMarginRight?: number | undefined;
|
|
171837
172150
|
pcbMarginBottom?: number | undefined;
|
|
@@ -171864,6 +172177,7 @@ declare const pcbNoteLineProps: z.ZodObject<Omit<{
|
|
|
171864
172177
|
} | undefined;
|
|
171865
172178
|
pcbPositionAnchor?: string | undefined;
|
|
171866
172179
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
172180
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171867
172181
|
pcbMarginTop?: string | number | undefined;
|
|
171868
172182
|
pcbMarginRight?: string | number | undefined;
|
|
171869
172183
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -171915,6 +172229,7 @@ declare const pcbNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
171915
172229
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
171916
172230
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
171917
172231
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
172232
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
171918
172233
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
171919
172234
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
171920
172235
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -172013,6 +172328,7 @@ declare const pcbNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
172013
172328
|
fontSize?: number | undefined;
|
|
172014
172329
|
pcbPositionAnchor?: string | undefined;
|
|
172015
172330
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
172331
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
172016
172332
|
pcbMarginTop?: number | undefined;
|
|
172017
172333
|
pcbMarginRight?: number | undefined;
|
|
172018
172334
|
pcbMarginBottom?: number | undefined;
|
|
@@ -172056,6 +172372,7 @@ declare const pcbNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
172056
172372
|
fontSize?: string | number | undefined;
|
|
172057
172373
|
pcbPositionAnchor?: string | undefined;
|
|
172058
172374
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
172375
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
172059
172376
|
pcbMarginTop?: string | number | undefined;
|
|
172060
172377
|
pcbMarginRight?: string | number | undefined;
|
|
172061
172378
|
pcbMarginBottom?: string | number | undefined;
|