@tscircuit/core 0.0.837 → 0.0.839
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 +1966 -20
- package/dist/index.js +90 -10
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1359,10 +1359,31 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1359
1359
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
1360
1360
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
1361
1361
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
1362
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
1363
|
+
offsetX: zod.ZodNumber;
|
|
1364
|
+
offsetY: zod.ZodNumber;
|
|
1365
|
+
}, "strip", zod.ZodTypeAny, {
|
|
1366
|
+
offsetX: number;
|
|
1367
|
+
offsetY: number;
|
|
1368
|
+
}, {
|
|
1369
|
+
offsetX: number;
|
|
1370
|
+
offsetY: number;
|
|
1371
|
+
}>]>>;
|
|
1372
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
1362
1373
|
}, "strip", zod.ZodTypeAny, {
|
|
1363
1374
|
silkscreenFontSize?: number | undefined;
|
|
1375
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
1376
|
+
offsetX: number;
|
|
1377
|
+
offsetY: number;
|
|
1378
|
+
} | undefined;
|
|
1379
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
1364
1380
|
}, {
|
|
1365
1381
|
silkscreenFontSize?: string | number | undefined;
|
|
1382
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
1383
|
+
offsetX: number;
|
|
1384
|
+
offsetY: number;
|
|
1385
|
+
} | undefined;
|
|
1386
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
1366
1387
|
}>>;
|
|
1367
1388
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
1368
1389
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -1467,7 +1488,7 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1467
1488
|
}, "strip", zod.ZodTypeAny, {
|
|
1468
1489
|
grid?: boolean | undefined;
|
|
1469
1490
|
flex?: string | boolean | undefined;
|
|
1470
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
1491
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
1471
1492
|
position?: "relative" | "absolute" | undefined;
|
|
1472
1493
|
gridCols?: string | number | undefined;
|
|
1473
1494
|
gridRows?: string | number | undefined;
|
|
@@ -1500,7 +1521,7 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1500
1521
|
}, {
|
|
1501
1522
|
grid?: boolean | undefined;
|
|
1502
1523
|
flex?: string | boolean | undefined;
|
|
1503
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
1524
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
1504
1525
|
position?: "relative" | "absolute" | undefined;
|
|
1505
1526
|
gridCols?: string | number | undefined;
|
|
1506
1527
|
gridRows?: string | number | undefined;
|
|
@@ -1567,7 +1588,7 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1567
1588
|
}, "strip", zod.ZodTypeAny, {
|
|
1568
1589
|
grid?: boolean | undefined;
|
|
1569
1590
|
flex?: string | boolean | undefined;
|
|
1570
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
1591
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
1571
1592
|
position?: "relative" | "absolute" | undefined;
|
|
1572
1593
|
gridCols?: string | number | undefined;
|
|
1573
1594
|
gridRows?: string | number | undefined;
|
|
@@ -1600,7 +1621,7 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1600
1621
|
}, {
|
|
1601
1622
|
grid?: boolean | undefined;
|
|
1602
1623
|
flex?: string | boolean | undefined;
|
|
1603
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
1624
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
1604
1625
|
position?: "relative" | "absolute" | undefined;
|
|
1605
1626
|
gridCols?: string | number | undefined;
|
|
1606
1627
|
gridRows?: string | number | undefined;
|
|
@@ -2071,6 +2092,11 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
2071
2092
|
pcbMarginY?: number | undefined;
|
|
2072
2093
|
pcbStyle?: {
|
|
2073
2094
|
silkscreenFontSize?: number | undefined;
|
|
2095
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
2096
|
+
offsetX: number;
|
|
2097
|
+
offsetY: number;
|
|
2098
|
+
} | undefined;
|
|
2099
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
2074
2100
|
} | undefined;
|
|
2075
2101
|
pcbRelative?: boolean | undefined;
|
|
2076
2102
|
relative?: boolean | undefined;
|
|
@@ -2089,7 +2115,7 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
2089
2115
|
children?: any;
|
|
2090
2116
|
grid?: boolean | undefined;
|
|
2091
2117
|
flex?: string | boolean | undefined;
|
|
2092
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
2118
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
2093
2119
|
position?: "relative" | "absolute" | undefined;
|
|
2094
2120
|
gridCols?: string | number | undefined;
|
|
2095
2121
|
gridRows?: string | number | undefined;
|
|
@@ -2165,7 +2191,7 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
2165
2191
|
pcbLayout?: {
|
|
2166
2192
|
grid?: boolean | undefined;
|
|
2167
2193
|
flex?: string | boolean | undefined;
|
|
2168
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
2194
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
2169
2195
|
position?: "relative" | "absolute" | undefined;
|
|
2170
2196
|
gridCols?: string | number | undefined;
|
|
2171
2197
|
gridRows?: string | number | undefined;
|
|
@@ -2199,7 +2225,7 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
2199
2225
|
schLayout?: {
|
|
2200
2226
|
grid?: boolean | undefined;
|
|
2201
2227
|
flex?: string | boolean | undefined;
|
|
2202
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
2228
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
2203
2229
|
position?: "relative" | "absolute" | undefined;
|
|
2204
2230
|
gridCols?: string | number | undefined;
|
|
2205
2231
|
gridRows?: string | number | undefined;
|
|
@@ -2370,6 +2396,11 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
2370
2396
|
pcbMarginY?: string | number | undefined;
|
|
2371
2397
|
pcbStyle?: {
|
|
2372
2398
|
silkscreenFontSize?: string | number | undefined;
|
|
2399
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
2400
|
+
offsetX: number;
|
|
2401
|
+
offsetY: number;
|
|
2402
|
+
} | undefined;
|
|
2403
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
2373
2404
|
} | undefined;
|
|
2374
2405
|
pcbRelative?: boolean | undefined;
|
|
2375
2406
|
relative?: boolean | undefined;
|
|
@@ -2388,7 +2419,7 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
2388
2419
|
children?: any;
|
|
2389
2420
|
grid?: boolean | undefined;
|
|
2390
2421
|
flex?: string | boolean | undefined;
|
|
2391
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
2422
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
2392
2423
|
position?: "relative" | "absolute" | undefined;
|
|
2393
2424
|
gridCols?: string | number | undefined;
|
|
2394
2425
|
gridRows?: string | number | undefined;
|
|
@@ -2464,7 +2495,7 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
2464
2495
|
pcbLayout?: {
|
|
2465
2496
|
grid?: boolean | undefined;
|
|
2466
2497
|
flex?: string | boolean | undefined;
|
|
2467
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
2498
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
2468
2499
|
position?: "relative" | "absolute" | undefined;
|
|
2469
2500
|
gridCols?: string | number | undefined;
|
|
2470
2501
|
gridRows?: string | number | undefined;
|
|
@@ -2498,7 +2529,7 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
2498
2529
|
schLayout?: {
|
|
2499
2530
|
grid?: boolean | undefined;
|
|
2500
2531
|
flex?: string | boolean | undefined;
|
|
2501
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
2532
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
2502
2533
|
position?: "relative" | "absolute" | undefined;
|
|
2503
2534
|
gridCols?: string | number | undefined;
|
|
2504
2535
|
gridRows?: string | number | undefined;
|
|
@@ -2695,10 +2726,31 @@ declare class Panel extends Group<typeof panelProps> {
|
|
|
2695
2726
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
2696
2727
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
2697
2728
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
2729
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
2730
|
+
offsetX: zod.ZodNumber;
|
|
2731
|
+
offsetY: zod.ZodNumber;
|
|
2732
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2733
|
+
offsetX: number;
|
|
2734
|
+
offsetY: number;
|
|
2735
|
+
}, {
|
|
2736
|
+
offsetX: number;
|
|
2737
|
+
offsetY: number;
|
|
2738
|
+
}>]>>;
|
|
2739
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
2698
2740
|
}, "strip", zod.ZodTypeAny, {
|
|
2699
2741
|
silkscreenFontSize?: number | undefined;
|
|
2742
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
2743
|
+
offsetX: number;
|
|
2744
|
+
offsetY: number;
|
|
2745
|
+
} | undefined;
|
|
2746
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
2700
2747
|
}, {
|
|
2701
2748
|
silkscreenFontSize?: string | number | undefined;
|
|
2749
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
2750
|
+
offsetX: number;
|
|
2751
|
+
offsetY: number;
|
|
2752
|
+
} | undefined;
|
|
2753
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
2702
2754
|
}>>;
|
|
2703
2755
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
2704
2756
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -2804,7 +2856,7 @@ declare class Panel extends Group<typeof panelProps> {
|
|
|
2804
2856
|
}, "strip", zod.ZodTypeAny, {
|
|
2805
2857
|
grid?: boolean | undefined;
|
|
2806
2858
|
flex?: string | boolean | undefined;
|
|
2807
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
2859
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
2808
2860
|
position?: "relative" | "absolute" | undefined;
|
|
2809
2861
|
gridCols?: string | number | undefined;
|
|
2810
2862
|
gridRows?: string | number | undefined;
|
|
@@ -2837,7 +2889,7 @@ declare class Panel extends Group<typeof panelProps> {
|
|
|
2837
2889
|
}, {
|
|
2838
2890
|
grid?: boolean | undefined;
|
|
2839
2891
|
flex?: string | boolean | undefined;
|
|
2840
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
2892
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
2841
2893
|
position?: "relative" | "absolute" | undefined;
|
|
2842
2894
|
gridCols?: string | number | undefined;
|
|
2843
2895
|
gridRows?: string | number | undefined;
|
|
@@ -2904,7 +2956,7 @@ declare class Panel extends Group<typeof panelProps> {
|
|
|
2904
2956
|
}, "strip", zod.ZodTypeAny, {
|
|
2905
2957
|
grid?: boolean | undefined;
|
|
2906
2958
|
flex?: string | boolean | undefined;
|
|
2907
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
2959
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
2908
2960
|
position?: "relative" | "absolute" | undefined;
|
|
2909
2961
|
gridCols?: string | number | undefined;
|
|
2910
2962
|
gridRows?: string | number | undefined;
|
|
@@ -2937,7 +2989,7 @@ declare class Panel extends Group<typeof panelProps> {
|
|
|
2937
2989
|
}, {
|
|
2938
2990
|
grid?: boolean | undefined;
|
|
2939
2991
|
flex?: string | boolean | undefined;
|
|
2940
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
2992
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
2941
2993
|
position?: "relative" | "absolute" | undefined;
|
|
2942
2994
|
gridCols?: string | number | undefined;
|
|
2943
2995
|
gridRows?: string | number | undefined;
|
|
@@ -3196,6 +3248,11 @@ declare class Panel extends Group<typeof panelProps> {
|
|
|
3196
3248
|
pcbMarginY?: number | undefined;
|
|
3197
3249
|
pcbStyle?: {
|
|
3198
3250
|
silkscreenFontSize?: number | undefined;
|
|
3251
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
3252
|
+
offsetX: number;
|
|
3253
|
+
offsetY: number;
|
|
3254
|
+
} | undefined;
|
|
3255
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
3199
3256
|
} | undefined;
|
|
3200
3257
|
pcbRelative?: boolean | undefined;
|
|
3201
3258
|
relative?: boolean | undefined;
|
|
@@ -3214,7 +3271,7 @@ declare class Panel extends Group<typeof panelProps> {
|
|
|
3214
3271
|
children?: any;
|
|
3215
3272
|
grid?: boolean | undefined;
|
|
3216
3273
|
flex?: string | boolean | undefined;
|
|
3217
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
3274
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
3218
3275
|
position?: "relative" | "absolute" | undefined;
|
|
3219
3276
|
gridCols?: string | number | undefined;
|
|
3220
3277
|
gridRows?: string | number | undefined;
|
|
@@ -3289,7 +3346,7 @@ declare class Panel extends Group<typeof panelProps> {
|
|
|
3289
3346
|
pcbLayout?: {
|
|
3290
3347
|
grid?: boolean | undefined;
|
|
3291
3348
|
flex?: string | boolean | undefined;
|
|
3292
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
3349
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
3293
3350
|
position?: "relative" | "absolute" | undefined;
|
|
3294
3351
|
gridCols?: string | number | undefined;
|
|
3295
3352
|
gridRows?: string | number | undefined;
|
|
@@ -3323,7 +3380,7 @@ declare class Panel extends Group<typeof panelProps> {
|
|
|
3323
3380
|
schLayout?: {
|
|
3324
3381
|
grid?: boolean | undefined;
|
|
3325
3382
|
flex?: string | boolean | undefined;
|
|
3326
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
3383
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
3327
3384
|
position?: "relative" | "absolute" | undefined;
|
|
3328
3385
|
gridCols?: string | number | undefined;
|
|
3329
3386
|
gridRows?: string | number | undefined;
|
|
@@ -3436,6 +3493,11 @@ declare class Panel extends Group<typeof panelProps> {
|
|
|
3436
3493
|
pcbMarginY?: string | number | undefined;
|
|
3437
3494
|
pcbStyle?: {
|
|
3438
3495
|
silkscreenFontSize?: string | number | undefined;
|
|
3496
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
3497
|
+
offsetX: number;
|
|
3498
|
+
offsetY: number;
|
|
3499
|
+
} | undefined;
|
|
3500
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
3439
3501
|
} | undefined;
|
|
3440
3502
|
pcbRelative?: boolean | undefined;
|
|
3441
3503
|
relative?: boolean | undefined;
|
|
@@ -3454,7 +3516,7 @@ declare class Panel extends Group<typeof panelProps> {
|
|
|
3454
3516
|
children?: any;
|
|
3455
3517
|
grid?: boolean | undefined;
|
|
3456
3518
|
flex?: string | boolean | undefined;
|
|
3457
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
3519
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
3458
3520
|
position?: "relative" | "absolute" | undefined;
|
|
3459
3521
|
gridCols?: string | number | undefined;
|
|
3460
3522
|
gridRows?: string | number | undefined;
|
|
@@ -3529,7 +3591,7 @@ declare class Panel extends Group<typeof panelProps> {
|
|
|
3529
3591
|
pcbLayout?: {
|
|
3530
3592
|
grid?: boolean | undefined;
|
|
3531
3593
|
flex?: string | boolean | undefined;
|
|
3532
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
3594
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
3533
3595
|
position?: "relative" | "absolute" | undefined;
|
|
3534
3596
|
gridCols?: string | number | undefined;
|
|
3535
3597
|
gridRows?: string | number | undefined;
|
|
@@ -3563,7 +3625,7 @@ declare class Panel extends Group<typeof panelProps> {
|
|
|
3563
3625
|
schLayout?: {
|
|
3564
3626
|
grid?: boolean | undefined;
|
|
3565
3627
|
flex?: string | boolean | undefined;
|
|
3566
|
-
layoutMode?: "relative" | "grid" | "flex" | "match-adapt" |
|
|
3628
|
+
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
3567
3629
|
position?: "relative" | "absolute" | undefined;
|
|
3568
3630
|
gridCols?: string | number | undefined;
|
|
3569
3631
|
gridRows?: string | number | undefined;
|
|
@@ -3681,10 +3743,31 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
3681
3743
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
3682
3744
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
3683
3745
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
3746
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
3747
|
+
offsetX: zod.ZodNumber;
|
|
3748
|
+
offsetY: zod.ZodNumber;
|
|
3749
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3750
|
+
offsetX: number;
|
|
3751
|
+
offsetY: number;
|
|
3752
|
+
}, {
|
|
3753
|
+
offsetX: number;
|
|
3754
|
+
offsetY: number;
|
|
3755
|
+
}>]>>;
|
|
3756
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
3684
3757
|
}, "strip", zod.ZodTypeAny, {
|
|
3685
3758
|
silkscreenFontSize?: number | undefined;
|
|
3759
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
3760
|
+
offsetX: number;
|
|
3761
|
+
offsetY: number;
|
|
3762
|
+
} | undefined;
|
|
3763
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
3686
3764
|
}, {
|
|
3687
3765
|
silkscreenFontSize?: string | number | undefined;
|
|
3766
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
3767
|
+
offsetX: number;
|
|
3768
|
+
offsetY: number;
|
|
3769
|
+
} | undefined;
|
|
3770
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
3688
3771
|
}>>;
|
|
3689
3772
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
3690
3773
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -4362,6 +4445,11 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
4362
4445
|
pcbMarginY?: number | undefined;
|
|
4363
4446
|
pcbStyle?: {
|
|
4364
4447
|
silkscreenFontSize?: number | undefined;
|
|
4448
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
4449
|
+
offsetX: number;
|
|
4450
|
+
offsetY: number;
|
|
4451
|
+
} | undefined;
|
|
4452
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
4365
4453
|
} | undefined;
|
|
4366
4454
|
pcbRelative?: boolean | undefined;
|
|
4367
4455
|
relative?: boolean | undefined;
|
|
@@ -4558,6 +4646,11 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
4558
4646
|
pcbMarginY?: string | number | undefined;
|
|
4559
4647
|
pcbStyle?: {
|
|
4560
4648
|
silkscreenFontSize?: string | number | undefined;
|
|
4649
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
4650
|
+
offsetX: number;
|
|
4651
|
+
offsetY: number;
|
|
4652
|
+
} | undefined;
|
|
4653
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
4561
4654
|
} | undefined;
|
|
4562
4655
|
pcbRelative?: boolean | undefined;
|
|
4563
4656
|
relative?: boolean | undefined;
|
|
@@ -4764,10 +4857,31 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
4764
4857
|
pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4765
4858
|
pcbStyle: z.ZodOptional<z.ZodObject<{
|
|
4766
4859
|
silkscreenFontSize: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4860
|
+
silkscreenTextPosition: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["centered", "outside", "none"]>, z.ZodObject<{
|
|
4861
|
+
offsetX: z.ZodNumber;
|
|
4862
|
+
offsetY: z.ZodNumber;
|
|
4863
|
+
}, "strip", z.ZodTypeAny, {
|
|
4864
|
+
offsetX: number;
|
|
4865
|
+
offsetY: number;
|
|
4866
|
+
}, {
|
|
4867
|
+
offsetX: number;
|
|
4868
|
+
offsetY: number;
|
|
4869
|
+
}>]>>;
|
|
4870
|
+
silkscreenTextVisibility: z.ZodOptional<z.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
4767
4871
|
}, "strip", z.ZodTypeAny, {
|
|
4768
4872
|
silkscreenFontSize?: number | undefined;
|
|
4873
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
4874
|
+
offsetX: number;
|
|
4875
|
+
offsetY: number;
|
|
4876
|
+
} | undefined;
|
|
4877
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
4769
4878
|
}, {
|
|
4770
4879
|
silkscreenFontSize?: string | number | undefined;
|
|
4880
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
4881
|
+
offsetX: number;
|
|
4882
|
+
offsetY: number;
|
|
4883
|
+
} | undefined;
|
|
4884
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
4771
4885
|
}>>;
|
|
4772
4886
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4773
4887
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5680,6 +5794,11 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
5680
5794
|
pcbMarginY?: number | undefined;
|
|
5681
5795
|
pcbStyle?: {
|
|
5682
5796
|
silkscreenFontSize?: number | undefined;
|
|
5797
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
5798
|
+
offsetX: number;
|
|
5799
|
+
offsetY: number;
|
|
5800
|
+
} | undefined;
|
|
5801
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
5683
5802
|
} | undefined;
|
|
5684
5803
|
pcbRelative?: boolean | undefined;
|
|
5685
5804
|
relative?: boolean | undefined;
|
|
@@ -5944,6 +6063,11 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
5944
6063
|
pcbMarginY?: string | number | undefined;
|
|
5945
6064
|
pcbStyle?: {
|
|
5946
6065
|
silkscreenFontSize?: string | number | undefined;
|
|
6066
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
6067
|
+
offsetX: number;
|
|
6068
|
+
offsetY: number;
|
|
6069
|
+
} | undefined;
|
|
6070
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
5947
6071
|
} | undefined;
|
|
5948
6072
|
pcbRelative?: boolean | undefined;
|
|
5949
6073
|
relative?: boolean | undefined;
|
|
@@ -6217,10 +6341,31 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
6217
6341
|
pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6218
6342
|
pcbStyle: z.ZodOptional<z.ZodObject<{
|
|
6219
6343
|
silkscreenFontSize: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6344
|
+
silkscreenTextPosition: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["centered", "outside", "none"]>, z.ZodObject<{
|
|
6345
|
+
offsetX: z.ZodNumber;
|
|
6346
|
+
offsetY: z.ZodNumber;
|
|
6347
|
+
}, "strip", z.ZodTypeAny, {
|
|
6348
|
+
offsetX: number;
|
|
6349
|
+
offsetY: number;
|
|
6350
|
+
}, {
|
|
6351
|
+
offsetX: number;
|
|
6352
|
+
offsetY: number;
|
|
6353
|
+
}>]>>;
|
|
6354
|
+
silkscreenTextVisibility: z.ZodOptional<z.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
6220
6355
|
}, "strip", z.ZodTypeAny, {
|
|
6221
6356
|
silkscreenFontSize?: number | undefined;
|
|
6357
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
6358
|
+
offsetX: number;
|
|
6359
|
+
offsetY: number;
|
|
6360
|
+
} | undefined;
|
|
6361
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
6222
6362
|
}, {
|
|
6223
6363
|
silkscreenFontSize?: string | number | undefined;
|
|
6364
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
6365
|
+
offsetX: number;
|
|
6366
|
+
offsetY: number;
|
|
6367
|
+
} | undefined;
|
|
6368
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
6224
6369
|
}>>;
|
|
6225
6370
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6226
6371
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7133,6 +7278,11 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
7133
7278
|
pcbMarginY?: number | undefined;
|
|
7134
7279
|
pcbStyle?: {
|
|
7135
7280
|
silkscreenFontSize?: number | undefined;
|
|
7281
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
7282
|
+
offsetX: number;
|
|
7283
|
+
offsetY: number;
|
|
7284
|
+
} | undefined;
|
|
7285
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
7136
7286
|
} | undefined;
|
|
7137
7287
|
pcbRelative?: boolean | undefined;
|
|
7138
7288
|
relative?: boolean | undefined;
|
|
@@ -7397,6 +7547,11 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
7397
7547
|
pcbMarginY?: string | number | undefined;
|
|
7398
7548
|
pcbStyle?: {
|
|
7399
7549
|
silkscreenFontSize?: string | number | undefined;
|
|
7550
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
7551
|
+
offsetX: number;
|
|
7552
|
+
offsetY: number;
|
|
7553
|
+
} | undefined;
|
|
7554
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
7400
7555
|
} | undefined;
|
|
7401
7556
|
pcbRelative?: boolean | undefined;
|
|
7402
7557
|
relative?: boolean | undefined;
|
|
@@ -7665,10 +7820,31 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
7665
7820
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
7666
7821
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
7667
7822
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
7823
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
7824
|
+
offsetX: zod.ZodNumber;
|
|
7825
|
+
offsetY: zod.ZodNumber;
|
|
7826
|
+
}, "strip", zod.ZodTypeAny, {
|
|
7827
|
+
offsetX: number;
|
|
7828
|
+
offsetY: number;
|
|
7829
|
+
}, {
|
|
7830
|
+
offsetX: number;
|
|
7831
|
+
offsetY: number;
|
|
7832
|
+
}>]>>;
|
|
7833
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
7668
7834
|
}, "strip", zod.ZodTypeAny, {
|
|
7669
7835
|
silkscreenFontSize?: number | undefined;
|
|
7836
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
7837
|
+
offsetX: number;
|
|
7838
|
+
offsetY: number;
|
|
7839
|
+
} | undefined;
|
|
7840
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
7670
7841
|
}, {
|
|
7671
7842
|
silkscreenFontSize?: string | number | undefined;
|
|
7843
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
7844
|
+
offsetX: number;
|
|
7845
|
+
offsetY: number;
|
|
7846
|
+
} | undefined;
|
|
7847
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
7672
7848
|
}>>;
|
|
7673
7849
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
7674
7850
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -8342,6 +8518,11 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
8342
8518
|
pcbMarginY?: number | undefined;
|
|
8343
8519
|
pcbStyle?: {
|
|
8344
8520
|
silkscreenFontSize?: number | undefined;
|
|
8521
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
8522
|
+
offsetX: number;
|
|
8523
|
+
offsetY: number;
|
|
8524
|
+
} | undefined;
|
|
8525
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
8345
8526
|
} | undefined;
|
|
8346
8527
|
pcbRelative?: boolean | undefined;
|
|
8347
8528
|
relative?: boolean | undefined;
|
|
@@ -8537,6 +8718,11 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
8537
8718
|
pcbMarginY?: string | number | undefined;
|
|
8538
8719
|
pcbStyle?: {
|
|
8539
8720
|
silkscreenFontSize?: string | number | undefined;
|
|
8721
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
8722
|
+
offsetX: number;
|
|
8723
|
+
offsetY: number;
|
|
8724
|
+
} | undefined;
|
|
8725
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
8540
8726
|
} | undefined;
|
|
8541
8727
|
pcbRelative?: boolean | undefined;
|
|
8542
8728
|
relative?: boolean | undefined;
|
|
@@ -8732,6 +8918,11 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
8732
8918
|
pcbMarginY?: number | undefined;
|
|
8733
8919
|
pcbStyle?: {
|
|
8734
8920
|
silkscreenFontSize?: number | undefined;
|
|
8921
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
8922
|
+
offsetX: number;
|
|
8923
|
+
offsetY: number;
|
|
8924
|
+
} | undefined;
|
|
8925
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
8735
8926
|
} | undefined;
|
|
8736
8927
|
pcbRelative?: boolean | undefined;
|
|
8737
8928
|
relative?: boolean | undefined;
|
|
@@ -8927,6 +9118,11 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
8927
9118
|
pcbMarginY?: string | number | undefined;
|
|
8928
9119
|
pcbStyle?: {
|
|
8929
9120
|
silkscreenFontSize?: string | number | undefined;
|
|
9121
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
9122
|
+
offsetX: number;
|
|
9123
|
+
offsetY: number;
|
|
9124
|
+
} | undefined;
|
|
9125
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
8930
9126
|
} | undefined;
|
|
8931
9127
|
pcbRelative?: boolean | undefined;
|
|
8932
9128
|
relative?: boolean | undefined;
|
|
@@ -9128,6 +9324,11 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
9128
9324
|
pcbMarginY?: number | undefined;
|
|
9129
9325
|
pcbStyle?: {
|
|
9130
9326
|
silkscreenFontSize?: number | undefined;
|
|
9327
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
9328
|
+
offsetX: number;
|
|
9329
|
+
offsetY: number;
|
|
9330
|
+
} | undefined;
|
|
9331
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
9131
9332
|
} | undefined;
|
|
9132
9333
|
pcbRelative?: boolean | undefined;
|
|
9133
9334
|
relative?: boolean | undefined;
|
|
@@ -9317,6 +9518,11 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
9317
9518
|
pcbMarginY?: string | number | undefined;
|
|
9318
9519
|
pcbStyle?: {
|
|
9319
9520
|
silkscreenFontSize?: string | number | undefined;
|
|
9521
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
9522
|
+
offsetX: number;
|
|
9523
|
+
offsetY: number;
|
|
9524
|
+
} | undefined;
|
|
9525
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
9320
9526
|
} | undefined;
|
|
9321
9527
|
pcbRelative?: boolean | undefined;
|
|
9322
9528
|
relative?: boolean | undefined;
|
|
@@ -9522,10 +9728,31 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
9522
9728
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
9523
9729
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
9524
9730
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
9731
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
9732
|
+
offsetX: zod.ZodNumber;
|
|
9733
|
+
offsetY: zod.ZodNumber;
|
|
9734
|
+
}, "strip", zod.ZodTypeAny, {
|
|
9735
|
+
offsetX: number;
|
|
9736
|
+
offsetY: number;
|
|
9737
|
+
}, {
|
|
9738
|
+
offsetX: number;
|
|
9739
|
+
offsetY: number;
|
|
9740
|
+
}>]>>;
|
|
9741
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
9525
9742
|
}, "strip", zod.ZodTypeAny, {
|
|
9526
9743
|
silkscreenFontSize?: number | undefined;
|
|
9744
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
9745
|
+
offsetX: number;
|
|
9746
|
+
offsetY: number;
|
|
9747
|
+
} | undefined;
|
|
9748
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
9527
9749
|
}, {
|
|
9528
9750
|
silkscreenFontSize?: string | number | undefined;
|
|
9751
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
9752
|
+
offsetX: number;
|
|
9753
|
+
offsetY: number;
|
|
9754
|
+
} | undefined;
|
|
9755
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
9529
9756
|
}>>;
|
|
9530
9757
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
9531
9758
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -10195,6 +10422,11 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
10195
10422
|
pcbMarginY?: number | undefined;
|
|
10196
10423
|
pcbStyle?: {
|
|
10197
10424
|
silkscreenFontSize?: number | undefined;
|
|
10425
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
10426
|
+
offsetX: number;
|
|
10427
|
+
offsetY: number;
|
|
10428
|
+
} | undefined;
|
|
10429
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
10198
10430
|
} | undefined;
|
|
10199
10431
|
pcbRelative?: boolean | undefined;
|
|
10200
10432
|
relative?: boolean | undefined;
|
|
@@ -10387,6 +10619,11 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
10387
10619
|
pcbMarginY?: string | number | undefined;
|
|
10388
10620
|
pcbStyle?: {
|
|
10389
10621
|
silkscreenFontSize?: string | number | undefined;
|
|
10622
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
10623
|
+
offsetX: number;
|
|
10624
|
+
offsetY: number;
|
|
10625
|
+
} | undefined;
|
|
10626
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
10390
10627
|
} | undefined;
|
|
10391
10628
|
pcbRelative?: boolean | undefined;
|
|
10392
10629
|
relative?: boolean | undefined;
|
|
@@ -10584,10 +10821,31 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
10584
10821
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
10585
10822
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
10586
10823
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
10824
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
10825
|
+
offsetX: zod.ZodNumber;
|
|
10826
|
+
offsetY: zod.ZodNumber;
|
|
10827
|
+
}, "strip", zod.ZodTypeAny, {
|
|
10828
|
+
offsetX: number;
|
|
10829
|
+
offsetY: number;
|
|
10830
|
+
}, {
|
|
10831
|
+
offsetX: number;
|
|
10832
|
+
offsetY: number;
|
|
10833
|
+
}>]>>;
|
|
10834
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
10587
10835
|
}, "strip", zod.ZodTypeAny, {
|
|
10588
10836
|
silkscreenFontSize?: number | undefined;
|
|
10837
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
10838
|
+
offsetX: number;
|
|
10839
|
+
offsetY: number;
|
|
10840
|
+
} | undefined;
|
|
10841
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
10589
10842
|
}, {
|
|
10590
10843
|
silkscreenFontSize?: string | number | undefined;
|
|
10844
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
10845
|
+
offsetX: number;
|
|
10846
|
+
offsetY: number;
|
|
10847
|
+
} | undefined;
|
|
10848
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
10591
10849
|
}>>;
|
|
10592
10850
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
10593
10851
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -11489,6 +11747,11 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
11489
11747
|
pcbMarginY?: number | undefined;
|
|
11490
11748
|
pcbStyle?: {
|
|
11491
11749
|
silkscreenFontSize?: number | undefined;
|
|
11750
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
11751
|
+
offsetX: number;
|
|
11752
|
+
offsetY: number;
|
|
11753
|
+
} | undefined;
|
|
11754
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
11492
11755
|
} | undefined;
|
|
11493
11756
|
pcbRelative?: boolean | undefined;
|
|
11494
11757
|
relative?: boolean | undefined;
|
|
@@ -11748,6 +12011,11 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
11748
12011
|
pcbMarginY?: string | number | undefined;
|
|
11749
12012
|
pcbStyle?: {
|
|
11750
12013
|
silkscreenFontSize?: string | number | undefined;
|
|
12014
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
12015
|
+
offsetX: number;
|
|
12016
|
+
offsetY: number;
|
|
12017
|
+
} | undefined;
|
|
12018
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
11751
12019
|
} | undefined;
|
|
11752
12020
|
pcbRelative?: boolean | undefined;
|
|
11753
12021
|
relative?: boolean | undefined;
|
|
@@ -12017,10 +12285,31 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
12017
12285
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
12018
12286
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
12019
12287
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
12288
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
12289
|
+
offsetX: zod.ZodNumber;
|
|
12290
|
+
offsetY: zod.ZodNumber;
|
|
12291
|
+
}, "strip", zod.ZodTypeAny, {
|
|
12292
|
+
offsetX: number;
|
|
12293
|
+
offsetY: number;
|
|
12294
|
+
}, {
|
|
12295
|
+
offsetX: number;
|
|
12296
|
+
offsetY: number;
|
|
12297
|
+
}>]>>;
|
|
12298
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
12020
12299
|
}, "strip", zod.ZodTypeAny, {
|
|
12021
12300
|
silkscreenFontSize?: number | undefined;
|
|
12301
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
12302
|
+
offsetX: number;
|
|
12303
|
+
offsetY: number;
|
|
12304
|
+
} | undefined;
|
|
12305
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
12022
12306
|
}, {
|
|
12023
12307
|
silkscreenFontSize?: string | number | undefined;
|
|
12308
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
12309
|
+
offsetX: number;
|
|
12310
|
+
offsetY: number;
|
|
12311
|
+
} | undefined;
|
|
12312
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
12024
12313
|
}>>;
|
|
12025
12314
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
12026
12315
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -12925,6 +13214,11 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
12925
13214
|
pcbMarginY?: number | undefined;
|
|
12926
13215
|
pcbStyle?: {
|
|
12927
13216
|
silkscreenFontSize?: number | undefined;
|
|
13217
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
13218
|
+
offsetX: number;
|
|
13219
|
+
offsetY: number;
|
|
13220
|
+
} | undefined;
|
|
13221
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
12928
13222
|
} | undefined;
|
|
12929
13223
|
pcbRelative?: boolean | undefined;
|
|
12930
13224
|
relative?: boolean | undefined;
|
|
@@ -13186,6 +13480,11 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
13186
13480
|
pcbMarginY?: string | number | undefined;
|
|
13187
13481
|
pcbStyle?: {
|
|
13188
13482
|
silkscreenFontSize?: string | number | undefined;
|
|
13483
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
13484
|
+
offsetX: number;
|
|
13485
|
+
offsetY: number;
|
|
13486
|
+
} | undefined;
|
|
13487
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
13189
13488
|
} | undefined;
|
|
13190
13489
|
pcbRelative?: boolean | undefined;
|
|
13191
13490
|
relative?: boolean | undefined;
|
|
@@ -13454,10 +13753,31 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
13454
13753
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
13455
13754
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
13456
13755
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
13756
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
13757
|
+
offsetX: zod.ZodNumber;
|
|
13758
|
+
offsetY: zod.ZodNumber;
|
|
13759
|
+
}, "strip", zod.ZodTypeAny, {
|
|
13760
|
+
offsetX: number;
|
|
13761
|
+
offsetY: number;
|
|
13762
|
+
}, {
|
|
13763
|
+
offsetX: number;
|
|
13764
|
+
offsetY: number;
|
|
13765
|
+
}>]>>;
|
|
13766
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
13457
13767
|
}, "strip", zod.ZodTypeAny, {
|
|
13458
13768
|
silkscreenFontSize?: number | undefined;
|
|
13769
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
13770
|
+
offsetX: number;
|
|
13771
|
+
offsetY: number;
|
|
13772
|
+
} | undefined;
|
|
13773
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
13459
13774
|
}, {
|
|
13460
13775
|
silkscreenFontSize?: string | number | undefined;
|
|
13776
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
13777
|
+
offsetX: number;
|
|
13778
|
+
offsetY: number;
|
|
13779
|
+
} | undefined;
|
|
13780
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
13461
13781
|
}>>;
|
|
13462
13782
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
13463
13783
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -14127,6 +14447,11 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
14127
14447
|
pcbMarginY?: number | undefined;
|
|
14128
14448
|
pcbStyle?: {
|
|
14129
14449
|
silkscreenFontSize?: number | undefined;
|
|
14450
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
14451
|
+
offsetX: number;
|
|
14452
|
+
offsetY: number;
|
|
14453
|
+
} | undefined;
|
|
14454
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
14130
14455
|
} | undefined;
|
|
14131
14456
|
pcbRelative?: boolean | undefined;
|
|
14132
14457
|
relative?: boolean | undefined;
|
|
@@ -14320,6 +14645,11 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
14320
14645
|
pcbMarginY?: string | number | undefined;
|
|
14321
14646
|
pcbStyle?: {
|
|
14322
14647
|
silkscreenFontSize?: string | number | undefined;
|
|
14648
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
14649
|
+
offsetX: number;
|
|
14650
|
+
offsetY: number;
|
|
14651
|
+
} | undefined;
|
|
14652
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
14323
14653
|
} | undefined;
|
|
14324
14654
|
pcbRelative?: boolean | undefined;
|
|
14325
14655
|
relative?: boolean | undefined;
|
|
@@ -14524,10 +14854,31 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
14524
14854
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
14525
14855
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
14526
14856
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
14857
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
14858
|
+
offsetX: zod.ZodNumber;
|
|
14859
|
+
offsetY: zod.ZodNumber;
|
|
14860
|
+
}, "strip", zod.ZodTypeAny, {
|
|
14861
|
+
offsetX: number;
|
|
14862
|
+
offsetY: number;
|
|
14863
|
+
}, {
|
|
14864
|
+
offsetX: number;
|
|
14865
|
+
offsetY: number;
|
|
14866
|
+
}>]>>;
|
|
14867
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
14527
14868
|
}, "strip", zod.ZodTypeAny, {
|
|
14528
14869
|
silkscreenFontSize?: number | undefined;
|
|
14870
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
14871
|
+
offsetX: number;
|
|
14872
|
+
offsetY: number;
|
|
14873
|
+
} | undefined;
|
|
14874
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
14529
14875
|
}, {
|
|
14530
14876
|
silkscreenFontSize?: string | number | undefined;
|
|
14877
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
14878
|
+
offsetX: number;
|
|
14879
|
+
offsetY: number;
|
|
14880
|
+
} | undefined;
|
|
14881
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
14531
14882
|
}>>;
|
|
14532
14883
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
14533
14884
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -15193,6 +15544,11 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
15193
15544
|
pcbMarginY?: number | undefined;
|
|
15194
15545
|
pcbStyle?: {
|
|
15195
15546
|
silkscreenFontSize?: number | undefined;
|
|
15547
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
15548
|
+
offsetX: number;
|
|
15549
|
+
offsetY: number;
|
|
15550
|
+
} | undefined;
|
|
15551
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
15196
15552
|
} | undefined;
|
|
15197
15553
|
pcbRelative?: boolean | undefined;
|
|
15198
15554
|
relative?: boolean | undefined;
|
|
@@ -15381,6 +15737,11 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
15381
15737
|
pcbMarginY?: string | number | undefined;
|
|
15382
15738
|
pcbStyle?: {
|
|
15383
15739
|
silkscreenFontSize?: string | number | undefined;
|
|
15740
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
15741
|
+
offsetX: number;
|
|
15742
|
+
offsetY: number;
|
|
15743
|
+
} | undefined;
|
|
15744
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
15384
15745
|
} | undefined;
|
|
15385
15746
|
pcbRelative?: boolean | undefined;
|
|
15386
15747
|
relative?: boolean | undefined;
|
|
@@ -15582,10 +15943,31 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
15582
15943
|
pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15583
15944
|
pcbStyle: z.ZodOptional<z.ZodObject<{
|
|
15584
15945
|
silkscreenFontSize: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15946
|
+
silkscreenTextPosition: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["centered", "outside", "none"]>, z.ZodObject<{
|
|
15947
|
+
offsetX: z.ZodNumber;
|
|
15948
|
+
offsetY: z.ZodNumber;
|
|
15949
|
+
}, "strip", z.ZodTypeAny, {
|
|
15950
|
+
offsetX: number;
|
|
15951
|
+
offsetY: number;
|
|
15952
|
+
}, {
|
|
15953
|
+
offsetX: number;
|
|
15954
|
+
offsetY: number;
|
|
15955
|
+
}>]>>;
|
|
15956
|
+
silkscreenTextVisibility: z.ZodOptional<z.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
15585
15957
|
}, "strip", z.ZodTypeAny, {
|
|
15586
15958
|
silkscreenFontSize?: number | undefined;
|
|
15959
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
15960
|
+
offsetX: number;
|
|
15961
|
+
offsetY: number;
|
|
15962
|
+
} | undefined;
|
|
15963
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
15587
15964
|
}, {
|
|
15588
15965
|
silkscreenFontSize?: string | number | undefined;
|
|
15966
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
15967
|
+
offsetX: number;
|
|
15968
|
+
offsetY: number;
|
|
15969
|
+
} | undefined;
|
|
15970
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
15589
15971
|
}>>;
|
|
15590
15972
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15591
15973
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -16253,6 +16635,11 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
16253
16635
|
frequency?: number | undefined;
|
|
16254
16636
|
pcbStyle?: {
|
|
16255
16637
|
silkscreenFontSize?: number | undefined;
|
|
16638
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
16639
|
+
offsetX: number;
|
|
16640
|
+
offsetY: number;
|
|
16641
|
+
} | undefined;
|
|
16642
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
16256
16643
|
} | undefined;
|
|
16257
16644
|
pcbPositionAnchor?: string | undefined;
|
|
16258
16645
|
pcbOffsetX?: number | undefined;
|
|
@@ -16446,6 +16833,11 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
16446
16833
|
frequency?: string | number | undefined;
|
|
16447
16834
|
pcbStyle?: {
|
|
16448
16835
|
silkscreenFontSize?: string | number | undefined;
|
|
16836
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
16837
|
+
offsetX: number;
|
|
16838
|
+
offsetY: number;
|
|
16839
|
+
} | undefined;
|
|
16840
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
16449
16841
|
} | undefined;
|
|
16450
16842
|
pcbPositionAnchor?: string | undefined;
|
|
16451
16843
|
pcbOffsetX?: string | number | undefined;
|
|
@@ -16640,10 +17032,31 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
|
|
|
16640
17032
|
pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16641
17033
|
pcbStyle: z.ZodOptional<z.ZodObject<{
|
|
16642
17034
|
silkscreenFontSize: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
17035
|
+
silkscreenTextPosition: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["centered", "outside", "none"]>, z.ZodObject<{
|
|
17036
|
+
offsetX: z.ZodNumber;
|
|
17037
|
+
offsetY: z.ZodNumber;
|
|
17038
|
+
}, "strip", z.ZodTypeAny, {
|
|
17039
|
+
offsetX: number;
|
|
17040
|
+
offsetY: number;
|
|
17041
|
+
}, {
|
|
17042
|
+
offsetX: number;
|
|
17043
|
+
offsetY: number;
|
|
17044
|
+
}>]>>;
|
|
17045
|
+
silkscreenTextVisibility: z.ZodOptional<z.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
16643
17046
|
}, "strip", z.ZodTypeAny, {
|
|
16644
17047
|
silkscreenFontSize?: number | undefined;
|
|
17048
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
17049
|
+
offsetX: number;
|
|
17050
|
+
offsetY: number;
|
|
17051
|
+
} | undefined;
|
|
17052
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
16645
17053
|
}, {
|
|
16646
17054
|
silkscreenFontSize?: string | number | undefined;
|
|
17055
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
17056
|
+
offsetX: number;
|
|
17057
|
+
offsetY: number;
|
|
17058
|
+
} | undefined;
|
|
17059
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
16647
17060
|
}>>;
|
|
16648
17061
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16649
17062
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -17311,6 +17724,11 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
|
|
|
17311
17724
|
frequency?: number | undefined;
|
|
17312
17725
|
pcbStyle?: {
|
|
17313
17726
|
silkscreenFontSize?: number | undefined;
|
|
17727
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
17728
|
+
offsetX: number;
|
|
17729
|
+
offsetY: number;
|
|
17730
|
+
} | undefined;
|
|
17731
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
17314
17732
|
} | undefined;
|
|
17315
17733
|
pcbPositionAnchor?: string | undefined;
|
|
17316
17734
|
pcbOffsetX?: number | undefined;
|
|
@@ -17504,6 +17922,11 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
|
|
|
17504
17922
|
frequency?: string | number | undefined;
|
|
17505
17923
|
pcbStyle?: {
|
|
17506
17924
|
silkscreenFontSize?: string | number | undefined;
|
|
17925
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
17926
|
+
offsetX: number;
|
|
17927
|
+
offsetY: number;
|
|
17928
|
+
} | undefined;
|
|
17929
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
17507
17930
|
} | undefined;
|
|
17508
17931
|
pcbPositionAnchor?: string | undefined;
|
|
17509
17932
|
pcbOffsetX?: string | number | undefined;
|
|
@@ -17710,10 +18133,31 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
17710
18133
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
17711
18134
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
17712
18135
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
18136
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
18137
|
+
offsetX: zod.ZodNumber;
|
|
18138
|
+
offsetY: zod.ZodNumber;
|
|
18139
|
+
}, "strip", zod.ZodTypeAny, {
|
|
18140
|
+
offsetX: number;
|
|
18141
|
+
offsetY: number;
|
|
18142
|
+
}, {
|
|
18143
|
+
offsetX: number;
|
|
18144
|
+
offsetY: number;
|
|
18145
|
+
}>]>>;
|
|
18146
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
17713
18147
|
}, "strip", zod.ZodTypeAny, {
|
|
17714
18148
|
silkscreenFontSize?: number | undefined;
|
|
18149
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
18150
|
+
offsetX: number;
|
|
18151
|
+
offsetY: number;
|
|
18152
|
+
} | undefined;
|
|
18153
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
17715
18154
|
}, {
|
|
17716
18155
|
silkscreenFontSize?: string | number | undefined;
|
|
18156
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
18157
|
+
offsetX: number;
|
|
18158
|
+
offsetY: number;
|
|
18159
|
+
} | undefined;
|
|
18160
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
17717
18161
|
}>>;
|
|
17718
18162
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
17719
18163
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -18385,6 +18829,11 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
18385
18829
|
pcbMarginY?: number | undefined;
|
|
18386
18830
|
pcbStyle?: {
|
|
18387
18831
|
silkscreenFontSize?: number | undefined;
|
|
18832
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
18833
|
+
offsetX: number;
|
|
18834
|
+
offsetY: number;
|
|
18835
|
+
} | undefined;
|
|
18836
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
18388
18837
|
} | undefined;
|
|
18389
18838
|
pcbRelative?: boolean | undefined;
|
|
18390
18839
|
relative?: boolean | undefined;
|
|
@@ -18579,6 +19028,11 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
18579
19028
|
pcbMarginY?: string | number | undefined;
|
|
18580
19029
|
pcbStyle?: {
|
|
18581
19030
|
silkscreenFontSize?: string | number | undefined;
|
|
19031
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19032
|
+
offsetX: number;
|
|
19033
|
+
offsetY: number;
|
|
19034
|
+
} | undefined;
|
|
19035
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
18582
19036
|
} | undefined;
|
|
18583
19037
|
pcbRelative?: boolean | undefined;
|
|
18584
19038
|
relative?: boolean | undefined;
|
|
@@ -18873,10 +19327,31 @@ declare class FabricationNoteRect extends PrimitiveComponent<typeof fabricationN
|
|
|
18873
19327
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
18874
19328
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
18875
19329
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
19330
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
19331
|
+
offsetX: zod.ZodNumber;
|
|
19332
|
+
offsetY: zod.ZodNumber;
|
|
19333
|
+
}, "strip", zod.ZodTypeAny, {
|
|
19334
|
+
offsetX: number;
|
|
19335
|
+
offsetY: number;
|
|
19336
|
+
}, {
|
|
19337
|
+
offsetX: number;
|
|
19338
|
+
offsetY: number;
|
|
19339
|
+
}>]>>;
|
|
19340
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
18876
19341
|
}, "strip", zod.ZodTypeAny, {
|
|
18877
19342
|
silkscreenFontSize?: number | undefined;
|
|
19343
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19344
|
+
offsetX: number;
|
|
19345
|
+
offsetY: number;
|
|
19346
|
+
} | undefined;
|
|
19347
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
18878
19348
|
}, {
|
|
18879
19349
|
silkscreenFontSize?: string | number | undefined;
|
|
19350
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19351
|
+
offsetX: number;
|
|
19352
|
+
offsetY: number;
|
|
19353
|
+
} | undefined;
|
|
19354
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
18880
19355
|
}>>;
|
|
18881
19356
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
18882
19357
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -18888,6 +19363,7 @@ declare class FabricationNoteRect extends PrimitiveComponent<typeof fabricationN
|
|
|
18888
19363
|
hasStroke: zod.ZodOptional<zod.ZodBoolean>;
|
|
18889
19364
|
isStrokeDashed: zod.ZodOptional<zod.ZodBoolean>;
|
|
18890
19365
|
color: zod.ZodOptional<zod.ZodString>;
|
|
19366
|
+
cornerRadius: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
18891
19367
|
}, "strip", zod.ZodTypeAny, {
|
|
18892
19368
|
width: number;
|
|
18893
19369
|
height: number;
|
|
@@ -18906,10 +19382,16 @@ declare class FabricationNoteRect extends PrimitiveComponent<typeof fabricationN
|
|
|
18906
19382
|
pcbMarginY?: number | undefined;
|
|
18907
19383
|
pcbStyle?: {
|
|
18908
19384
|
silkscreenFontSize?: number | undefined;
|
|
19385
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19386
|
+
offsetX: number;
|
|
19387
|
+
offsetY: number;
|
|
19388
|
+
} | undefined;
|
|
19389
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
18909
19390
|
} | undefined;
|
|
18910
19391
|
pcbRelative?: boolean | undefined;
|
|
18911
19392
|
relative?: boolean | undefined;
|
|
18912
19393
|
strokeWidth?: number | undefined;
|
|
19394
|
+
cornerRadius?: number | undefined;
|
|
18913
19395
|
color?: string | undefined;
|
|
18914
19396
|
isFilled?: boolean | undefined;
|
|
18915
19397
|
hasStroke?: boolean | undefined;
|
|
@@ -18934,10 +19416,16 @@ declare class FabricationNoteRect extends PrimitiveComponent<typeof fabricationN
|
|
|
18934
19416
|
pcbMarginY?: string | number | undefined;
|
|
18935
19417
|
pcbStyle?: {
|
|
18936
19418
|
silkscreenFontSize?: string | number | undefined;
|
|
19419
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19420
|
+
offsetX: number;
|
|
19421
|
+
offsetY: number;
|
|
19422
|
+
} | undefined;
|
|
19423
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
18937
19424
|
} | undefined;
|
|
18938
19425
|
pcbRelative?: boolean | undefined;
|
|
18939
19426
|
relative?: boolean | undefined;
|
|
18940
19427
|
strokeWidth?: string | number | undefined;
|
|
19428
|
+
cornerRadius?: string | number | undefined;
|
|
18941
19429
|
color?: string | undefined;
|
|
18942
19430
|
isFilled?: boolean | undefined;
|
|
18943
19431
|
hasStroke?: boolean | undefined;
|
|
@@ -18980,10 +19468,31 @@ declare class FabricationNotePath extends PrimitiveComponent<typeof fabricationN
|
|
|
18980
19468
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
18981
19469
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
18982
19470
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
19471
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
19472
|
+
offsetX: zod.ZodNumber;
|
|
19473
|
+
offsetY: zod.ZodNumber;
|
|
19474
|
+
}, "strip", zod.ZodTypeAny, {
|
|
19475
|
+
offsetX: number;
|
|
19476
|
+
offsetY: number;
|
|
19477
|
+
}, {
|
|
19478
|
+
offsetX: number;
|
|
19479
|
+
offsetY: number;
|
|
19480
|
+
}>]>>;
|
|
19481
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
18983
19482
|
}, "strip", zod.ZodTypeAny, {
|
|
18984
19483
|
silkscreenFontSize?: number | undefined;
|
|
19484
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19485
|
+
offsetX: number;
|
|
19486
|
+
offsetY: number;
|
|
19487
|
+
} | undefined;
|
|
19488
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
18985
19489
|
}, {
|
|
18986
19490
|
silkscreenFontSize?: string | number | undefined;
|
|
19491
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19492
|
+
offsetX: number;
|
|
19493
|
+
offsetY: number;
|
|
19494
|
+
} | undefined;
|
|
19495
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
18987
19496
|
}>>;
|
|
18988
19497
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
18989
19498
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -19038,6 +19547,11 @@ declare class FabricationNotePath extends PrimitiveComponent<typeof fabricationN
|
|
|
19038
19547
|
pcbMarginY?: number | undefined;
|
|
19039
19548
|
pcbStyle?: {
|
|
19040
19549
|
silkscreenFontSize?: number | undefined;
|
|
19550
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19551
|
+
offsetX: number;
|
|
19552
|
+
offsetY: number;
|
|
19553
|
+
} | undefined;
|
|
19554
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19041
19555
|
} | undefined;
|
|
19042
19556
|
pcbRelative?: boolean | undefined;
|
|
19043
19557
|
relative?: boolean | undefined;
|
|
@@ -19066,6 +19580,11 @@ declare class FabricationNotePath extends PrimitiveComponent<typeof fabricationN
|
|
|
19066
19580
|
pcbMarginY?: string | number | undefined;
|
|
19067
19581
|
pcbStyle?: {
|
|
19068
19582
|
silkscreenFontSize?: string | number | undefined;
|
|
19583
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19584
|
+
offsetX: number;
|
|
19585
|
+
offsetY: number;
|
|
19586
|
+
} | undefined;
|
|
19587
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19069
19588
|
} | undefined;
|
|
19070
19589
|
pcbRelative?: boolean | undefined;
|
|
19071
19590
|
relative?: boolean | undefined;
|
|
@@ -19104,10 +19623,31 @@ declare class FabricationNoteText extends PrimitiveComponent<typeof fabricationN
|
|
|
19104
19623
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
19105
19624
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
19106
19625
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
19626
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
19627
|
+
offsetX: zod.ZodNumber;
|
|
19628
|
+
offsetY: zod.ZodNumber;
|
|
19629
|
+
}, "strip", zod.ZodTypeAny, {
|
|
19630
|
+
offsetX: number;
|
|
19631
|
+
offsetY: number;
|
|
19632
|
+
}, {
|
|
19633
|
+
offsetX: number;
|
|
19634
|
+
offsetY: number;
|
|
19635
|
+
}>]>>;
|
|
19636
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
19107
19637
|
}, "strip", zod.ZodTypeAny, {
|
|
19108
19638
|
silkscreenFontSize?: number | undefined;
|
|
19639
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19640
|
+
offsetX: number;
|
|
19641
|
+
offsetY: number;
|
|
19642
|
+
} | undefined;
|
|
19643
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19109
19644
|
}, {
|
|
19110
19645
|
silkscreenFontSize?: string | number | undefined;
|
|
19646
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19647
|
+
offsetX: number;
|
|
19648
|
+
offsetY: number;
|
|
19649
|
+
} | undefined;
|
|
19650
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19111
19651
|
}>>;
|
|
19112
19652
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
19113
19653
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -19136,6 +19676,11 @@ declare class FabricationNoteText extends PrimitiveComponent<typeof fabricationN
|
|
|
19136
19676
|
pcbMarginY?: number | undefined;
|
|
19137
19677
|
pcbStyle?: {
|
|
19138
19678
|
silkscreenFontSize?: number | undefined;
|
|
19679
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19680
|
+
offsetX: number;
|
|
19681
|
+
offsetY: number;
|
|
19682
|
+
} | undefined;
|
|
19683
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19139
19684
|
} | undefined;
|
|
19140
19685
|
pcbRelative?: boolean | undefined;
|
|
19141
19686
|
relative?: boolean | undefined;
|
|
@@ -19162,6 +19707,11 @@ declare class FabricationNoteText extends PrimitiveComponent<typeof fabricationN
|
|
|
19162
19707
|
pcbMarginY?: string | number | undefined;
|
|
19163
19708
|
pcbStyle?: {
|
|
19164
19709
|
silkscreenFontSize?: string | number | undefined;
|
|
19710
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19711
|
+
offsetX: number;
|
|
19712
|
+
offsetY: number;
|
|
19713
|
+
} | undefined;
|
|
19714
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19165
19715
|
} | undefined;
|
|
19166
19716
|
pcbRelative?: boolean | undefined;
|
|
19167
19717
|
relative?: boolean | undefined;
|
|
@@ -19204,10 +19754,31 @@ declare class FabricationNoteDimension extends PrimitiveComponent<typeof fabrica
|
|
|
19204
19754
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
19205
19755
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
19206
19756
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
19757
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
19758
|
+
offsetX: zod.ZodNumber;
|
|
19759
|
+
offsetY: zod.ZodNumber;
|
|
19760
|
+
}, "strip", zod.ZodTypeAny, {
|
|
19761
|
+
offsetX: number;
|
|
19762
|
+
offsetY: number;
|
|
19763
|
+
}, {
|
|
19764
|
+
offsetX: number;
|
|
19765
|
+
offsetY: number;
|
|
19766
|
+
}>]>>;
|
|
19767
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
19207
19768
|
}, "strip", zod.ZodTypeAny, {
|
|
19208
19769
|
silkscreenFontSize?: number | undefined;
|
|
19770
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19771
|
+
offsetX: number;
|
|
19772
|
+
offsetY: number;
|
|
19773
|
+
} | undefined;
|
|
19774
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19209
19775
|
}, {
|
|
19210
19776
|
silkscreenFontSize?: string | number | undefined;
|
|
19777
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19778
|
+
offsetX: number;
|
|
19779
|
+
offsetY: number;
|
|
19780
|
+
} | undefined;
|
|
19781
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19211
19782
|
}>>;
|
|
19212
19783
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
19213
19784
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -19262,6 +19833,11 @@ declare class FabricationNoteDimension extends PrimitiveComponent<typeof fabrica
|
|
|
19262
19833
|
pcbMarginY?: number | undefined;
|
|
19263
19834
|
pcbStyle?: {
|
|
19264
19835
|
silkscreenFontSize?: number | undefined;
|
|
19836
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19837
|
+
offsetX: number;
|
|
19838
|
+
offsetY: number;
|
|
19839
|
+
} | undefined;
|
|
19840
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19265
19841
|
} | undefined;
|
|
19266
19842
|
pcbRelative?: boolean | undefined;
|
|
19267
19843
|
relative?: boolean | undefined;
|
|
@@ -19297,6 +19873,11 @@ declare class FabricationNoteDimension extends PrimitiveComponent<typeof fabrica
|
|
|
19297
19873
|
pcbMarginY?: string | number | undefined;
|
|
19298
19874
|
pcbStyle?: {
|
|
19299
19875
|
silkscreenFontSize?: string | number | undefined;
|
|
19876
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19877
|
+
offsetX: number;
|
|
19878
|
+
offsetY: number;
|
|
19879
|
+
} | undefined;
|
|
19880
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19300
19881
|
} | undefined;
|
|
19301
19882
|
pcbRelative?: boolean | undefined;
|
|
19302
19883
|
relative?: boolean | undefined;
|
|
@@ -19351,10 +19932,31 @@ declare class PcbNoteLine extends PrimitiveComponent<typeof pcbNoteLineProps> {
|
|
|
19351
19932
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
19352
19933
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
19353
19934
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
19935
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
19936
|
+
offsetX: zod.ZodNumber;
|
|
19937
|
+
offsetY: zod.ZodNumber;
|
|
19938
|
+
}, "strip", zod.ZodTypeAny, {
|
|
19939
|
+
offsetX: number;
|
|
19940
|
+
offsetY: number;
|
|
19941
|
+
}, {
|
|
19942
|
+
offsetX: number;
|
|
19943
|
+
offsetY: number;
|
|
19944
|
+
}>]>>;
|
|
19945
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
19354
19946
|
}, "strip", zod.ZodTypeAny, {
|
|
19355
19947
|
silkscreenFontSize?: number | undefined;
|
|
19948
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19949
|
+
offsetX: number;
|
|
19950
|
+
offsetY: number;
|
|
19951
|
+
} | undefined;
|
|
19952
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19356
19953
|
}, {
|
|
19357
19954
|
silkscreenFontSize?: string | number | undefined;
|
|
19955
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19956
|
+
offsetX: number;
|
|
19957
|
+
offsetY: number;
|
|
19958
|
+
} | undefined;
|
|
19959
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19358
19960
|
}>>;
|
|
19359
19961
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
19360
19962
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -19382,6 +19984,11 @@ declare class PcbNoteLine extends PrimitiveComponent<typeof pcbNoteLineProps> {
|
|
|
19382
19984
|
pcbMarginY?: number | undefined;
|
|
19383
19985
|
pcbStyle?: {
|
|
19384
19986
|
silkscreenFontSize?: number | undefined;
|
|
19987
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
19988
|
+
offsetX: number;
|
|
19989
|
+
offsetY: number;
|
|
19990
|
+
} | undefined;
|
|
19991
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19385
19992
|
} | undefined;
|
|
19386
19993
|
pcbRelative?: boolean | undefined;
|
|
19387
19994
|
relative?: boolean | undefined;
|
|
@@ -19406,6 +20013,11 @@ declare class PcbNoteLine extends PrimitiveComponent<typeof pcbNoteLineProps> {
|
|
|
19406
20013
|
pcbMarginY?: string | number | undefined;
|
|
19407
20014
|
pcbStyle?: {
|
|
19408
20015
|
silkscreenFontSize?: string | number | undefined;
|
|
20016
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20017
|
+
offsetX: number;
|
|
20018
|
+
offsetY: number;
|
|
20019
|
+
} | undefined;
|
|
20020
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19409
20021
|
} | undefined;
|
|
19410
20022
|
pcbRelative?: boolean | undefined;
|
|
19411
20023
|
relative?: boolean | undefined;
|
|
@@ -19451,10 +20063,31 @@ declare class PcbNoteRect extends PrimitiveComponent<typeof pcbNoteRectProps> {
|
|
|
19451
20063
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
19452
20064
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
19453
20065
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
20066
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
20067
|
+
offsetX: zod.ZodNumber;
|
|
20068
|
+
offsetY: zod.ZodNumber;
|
|
20069
|
+
}, "strip", zod.ZodTypeAny, {
|
|
20070
|
+
offsetX: number;
|
|
20071
|
+
offsetY: number;
|
|
20072
|
+
}, {
|
|
20073
|
+
offsetX: number;
|
|
20074
|
+
offsetY: number;
|
|
20075
|
+
}>]>>;
|
|
20076
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
19454
20077
|
}, "strip", zod.ZodTypeAny, {
|
|
19455
20078
|
silkscreenFontSize?: number | undefined;
|
|
20079
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20080
|
+
offsetX: number;
|
|
20081
|
+
offsetY: number;
|
|
20082
|
+
} | undefined;
|
|
20083
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19456
20084
|
}, {
|
|
19457
20085
|
silkscreenFontSize?: string | number | undefined;
|
|
20086
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20087
|
+
offsetX: number;
|
|
20088
|
+
offsetY: number;
|
|
20089
|
+
} | undefined;
|
|
20090
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19458
20091
|
}>>;
|
|
19459
20092
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
19460
20093
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -19466,6 +20099,7 @@ declare class PcbNoteRect extends PrimitiveComponent<typeof pcbNoteRectProps> {
|
|
|
19466
20099
|
hasStroke: zod.ZodOptional<zod.ZodBoolean>;
|
|
19467
20100
|
isStrokeDashed: zod.ZodOptional<zod.ZodBoolean>;
|
|
19468
20101
|
color: zod.ZodOptional<zod.ZodString>;
|
|
20102
|
+
cornerRadius: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
19469
20103
|
}, "strip", zod.ZodTypeAny, {
|
|
19470
20104
|
width: number;
|
|
19471
20105
|
height: number;
|
|
@@ -19484,10 +20118,16 @@ declare class PcbNoteRect extends PrimitiveComponent<typeof pcbNoteRectProps> {
|
|
|
19484
20118
|
pcbMarginY?: number | undefined;
|
|
19485
20119
|
pcbStyle?: {
|
|
19486
20120
|
silkscreenFontSize?: number | undefined;
|
|
20121
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20122
|
+
offsetX: number;
|
|
20123
|
+
offsetY: number;
|
|
20124
|
+
} | undefined;
|
|
20125
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19487
20126
|
} | undefined;
|
|
19488
20127
|
pcbRelative?: boolean | undefined;
|
|
19489
20128
|
relative?: boolean | undefined;
|
|
19490
20129
|
strokeWidth?: number | undefined;
|
|
20130
|
+
cornerRadius?: number | undefined;
|
|
19491
20131
|
color?: string | undefined;
|
|
19492
20132
|
isFilled?: boolean | undefined;
|
|
19493
20133
|
hasStroke?: boolean | undefined;
|
|
@@ -19512,10 +20152,16 @@ declare class PcbNoteRect extends PrimitiveComponent<typeof pcbNoteRectProps> {
|
|
|
19512
20152
|
pcbMarginY?: string | number | undefined;
|
|
19513
20153
|
pcbStyle?: {
|
|
19514
20154
|
silkscreenFontSize?: string | number | undefined;
|
|
20155
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20156
|
+
offsetX: number;
|
|
20157
|
+
offsetY: number;
|
|
20158
|
+
} | undefined;
|
|
20159
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19515
20160
|
} | undefined;
|
|
19516
20161
|
pcbRelative?: boolean | undefined;
|
|
19517
20162
|
relative?: boolean | undefined;
|
|
19518
20163
|
strokeWidth?: string | number | undefined;
|
|
20164
|
+
cornerRadius?: string | number | undefined;
|
|
19519
20165
|
color?: string | undefined;
|
|
19520
20166
|
isFilled?: boolean | undefined;
|
|
19521
20167
|
hasStroke?: boolean | undefined;
|
|
@@ -19559,10 +20205,31 @@ declare class PcbNoteText extends PrimitiveComponent<typeof pcbNoteTextProps> {
|
|
|
19559
20205
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
19560
20206
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
19561
20207
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
20208
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
20209
|
+
offsetX: zod.ZodNumber;
|
|
20210
|
+
offsetY: zod.ZodNumber;
|
|
20211
|
+
}, "strip", zod.ZodTypeAny, {
|
|
20212
|
+
offsetX: number;
|
|
20213
|
+
offsetY: number;
|
|
20214
|
+
}, {
|
|
20215
|
+
offsetX: number;
|
|
20216
|
+
offsetY: number;
|
|
20217
|
+
}>]>>;
|
|
20218
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
19562
20219
|
}, "strip", zod.ZodTypeAny, {
|
|
19563
20220
|
silkscreenFontSize?: number | undefined;
|
|
20221
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20222
|
+
offsetX: number;
|
|
20223
|
+
offsetY: number;
|
|
20224
|
+
} | undefined;
|
|
20225
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19564
20226
|
}, {
|
|
19565
20227
|
silkscreenFontSize?: string | number | undefined;
|
|
20228
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20229
|
+
offsetX: number;
|
|
20230
|
+
offsetY: number;
|
|
20231
|
+
} | undefined;
|
|
20232
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19566
20233
|
}>>;
|
|
19567
20234
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
19568
20235
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -19591,6 +20258,11 @@ declare class PcbNoteText extends PrimitiveComponent<typeof pcbNoteTextProps> {
|
|
|
19591
20258
|
pcbMarginY?: number | undefined;
|
|
19592
20259
|
pcbStyle?: {
|
|
19593
20260
|
silkscreenFontSize?: number | undefined;
|
|
20261
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20262
|
+
offsetX: number;
|
|
20263
|
+
offsetY: number;
|
|
20264
|
+
} | undefined;
|
|
20265
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19594
20266
|
} | undefined;
|
|
19595
20267
|
pcbRelative?: boolean | undefined;
|
|
19596
20268
|
relative?: boolean | undefined;
|
|
@@ -19617,6 +20289,11 @@ declare class PcbNoteText extends PrimitiveComponent<typeof pcbNoteTextProps> {
|
|
|
19617
20289
|
pcbMarginY?: string | number | undefined;
|
|
19618
20290
|
pcbStyle?: {
|
|
19619
20291
|
silkscreenFontSize?: string | number | undefined;
|
|
20292
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20293
|
+
offsetX: number;
|
|
20294
|
+
offsetY: number;
|
|
20295
|
+
} | undefined;
|
|
20296
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19620
20297
|
} | undefined;
|
|
19621
20298
|
pcbRelative?: boolean | undefined;
|
|
19622
20299
|
relative?: boolean | undefined;
|
|
@@ -19663,10 +20340,31 @@ declare class PcbNotePath extends PrimitiveComponent<typeof pcbNotePathProps> {
|
|
|
19663
20340
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
19664
20341
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
19665
20342
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
20343
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
20344
|
+
offsetX: zod.ZodNumber;
|
|
20345
|
+
offsetY: zod.ZodNumber;
|
|
20346
|
+
}, "strip", zod.ZodTypeAny, {
|
|
20347
|
+
offsetX: number;
|
|
20348
|
+
offsetY: number;
|
|
20349
|
+
}, {
|
|
20350
|
+
offsetX: number;
|
|
20351
|
+
offsetY: number;
|
|
20352
|
+
}>]>>;
|
|
20353
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
19666
20354
|
}, "strip", zod.ZodTypeAny, {
|
|
19667
20355
|
silkscreenFontSize?: number | undefined;
|
|
20356
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20357
|
+
offsetX: number;
|
|
20358
|
+
offsetY: number;
|
|
20359
|
+
} | undefined;
|
|
20360
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19668
20361
|
}, {
|
|
19669
20362
|
silkscreenFontSize?: string | number | undefined;
|
|
20363
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20364
|
+
offsetX: number;
|
|
20365
|
+
offsetY: number;
|
|
20366
|
+
} | undefined;
|
|
20367
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19670
20368
|
}>>;
|
|
19671
20369
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
19672
20370
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -19721,6 +20419,11 @@ declare class PcbNotePath extends PrimitiveComponent<typeof pcbNotePathProps> {
|
|
|
19721
20419
|
pcbMarginY?: number | undefined;
|
|
19722
20420
|
pcbStyle?: {
|
|
19723
20421
|
silkscreenFontSize?: number | undefined;
|
|
20422
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20423
|
+
offsetX: number;
|
|
20424
|
+
offsetY: number;
|
|
20425
|
+
} | undefined;
|
|
20426
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19724
20427
|
} | undefined;
|
|
19725
20428
|
pcbRelative?: boolean | undefined;
|
|
19726
20429
|
relative?: boolean | undefined;
|
|
@@ -19749,6 +20452,11 @@ declare class PcbNotePath extends PrimitiveComponent<typeof pcbNotePathProps> {
|
|
|
19749
20452
|
pcbMarginY?: string | number | undefined;
|
|
19750
20453
|
pcbStyle?: {
|
|
19751
20454
|
silkscreenFontSize?: string | number | undefined;
|
|
20455
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20456
|
+
offsetX: number;
|
|
20457
|
+
offsetY: number;
|
|
20458
|
+
} | undefined;
|
|
20459
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19752
20460
|
} | undefined;
|
|
19753
20461
|
pcbRelative?: boolean | undefined;
|
|
19754
20462
|
relative?: boolean | undefined;
|
|
@@ -19793,10 +20501,31 @@ declare class PcbNoteDimension extends PrimitiveComponent<typeof pcbNoteDimensio
|
|
|
19793
20501
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
19794
20502
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
19795
20503
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
20504
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
20505
|
+
offsetX: zod.ZodNumber;
|
|
20506
|
+
offsetY: zod.ZodNumber;
|
|
20507
|
+
}, "strip", zod.ZodTypeAny, {
|
|
20508
|
+
offsetX: number;
|
|
20509
|
+
offsetY: number;
|
|
20510
|
+
}, {
|
|
20511
|
+
offsetX: number;
|
|
20512
|
+
offsetY: number;
|
|
20513
|
+
}>]>>;
|
|
20514
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
19796
20515
|
}, "strip", zod.ZodTypeAny, {
|
|
19797
20516
|
silkscreenFontSize?: number | undefined;
|
|
20517
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20518
|
+
offsetX: number;
|
|
20519
|
+
offsetY: number;
|
|
20520
|
+
} | undefined;
|
|
20521
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19798
20522
|
}, {
|
|
19799
20523
|
silkscreenFontSize?: string | number | undefined;
|
|
20524
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20525
|
+
offsetX: number;
|
|
20526
|
+
offsetY: number;
|
|
20527
|
+
} | undefined;
|
|
20528
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19800
20529
|
}>>;
|
|
19801
20530
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
19802
20531
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -19851,6 +20580,11 @@ declare class PcbNoteDimension extends PrimitiveComponent<typeof pcbNoteDimensio
|
|
|
19851
20580
|
pcbMarginY?: number | undefined;
|
|
19852
20581
|
pcbStyle?: {
|
|
19853
20582
|
silkscreenFontSize?: number | undefined;
|
|
20583
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20584
|
+
offsetX: number;
|
|
20585
|
+
offsetY: number;
|
|
20586
|
+
} | undefined;
|
|
20587
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19854
20588
|
} | undefined;
|
|
19855
20589
|
pcbRelative?: boolean | undefined;
|
|
19856
20590
|
relative?: boolean | undefined;
|
|
@@ -19886,6 +20620,11 @@ declare class PcbNoteDimension extends PrimitiveComponent<typeof pcbNoteDimensio
|
|
|
19886
20620
|
pcbMarginY?: string | number | undefined;
|
|
19887
20621
|
pcbStyle?: {
|
|
19888
20622
|
silkscreenFontSize?: string | number | undefined;
|
|
20623
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20624
|
+
offsetX: number;
|
|
20625
|
+
offsetY: number;
|
|
20626
|
+
} | undefined;
|
|
20627
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19889
20628
|
} | undefined;
|
|
19890
20629
|
pcbRelative?: boolean | undefined;
|
|
19891
20630
|
relative?: boolean | undefined;
|
|
@@ -19993,10 +20732,31 @@ declare class BreakoutPoint extends PrimitiveComponent<typeof breakoutPointProps
|
|
|
19993
20732
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
19994
20733
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
19995
20734
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
20735
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
20736
|
+
offsetX: zod.ZodNumber;
|
|
20737
|
+
offsetY: zod.ZodNumber;
|
|
20738
|
+
}, "strip", zod.ZodTypeAny, {
|
|
20739
|
+
offsetX: number;
|
|
20740
|
+
offsetY: number;
|
|
20741
|
+
}, {
|
|
20742
|
+
offsetX: number;
|
|
20743
|
+
offsetY: number;
|
|
20744
|
+
}>]>>;
|
|
20745
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
19996
20746
|
}, "strip", zod.ZodTypeAny, {
|
|
19997
20747
|
silkscreenFontSize?: number | undefined;
|
|
20748
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20749
|
+
offsetX: number;
|
|
20750
|
+
offsetY: number;
|
|
20751
|
+
} | undefined;
|
|
20752
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
19998
20753
|
}, {
|
|
19999
20754
|
silkscreenFontSize?: string | number | undefined;
|
|
20755
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20756
|
+
offsetX: number;
|
|
20757
|
+
offsetY: number;
|
|
20758
|
+
} | undefined;
|
|
20759
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20000
20760
|
}>>;
|
|
20001
20761
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
20002
20762
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -20018,6 +20778,11 @@ declare class BreakoutPoint extends PrimitiveComponent<typeof breakoutPointProps
|
|
|
20018
20778
|
pcbMarginY?: number | undefined;
|
|
20019
20779
|
pcbStyle?: {
|
|
20020
20780
|
silkscreenFontSize?: number | undefined;
|
|
20781
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20782
|
+
offsetX: number;
|
|
20783
|
+
offsetY: number;
|
|
20784
|
+
} | undefined;
|
|
20785
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20021
20786
|
} | undefined;
|
|
20022
20787
|
pcbRelative?: boolean | undefined;
|
|
20023
20788
|
relative?: boolean | undefined;
|
|
@@ -20037,6 +20802,11 @@ declare class BreakoutPoint extends PrimitiveComponent<typeof breakoutPointProps
|
|
|
20037
20802
|
pcbMarginY?: string | number | undefined;
|
|
20038
20803
|
pcbStyle?: {
|
|
20039
20804
|
silkscreenFontSize?: string | number | undefined;
|
|
20805
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20806
|
+
offsetX: number;
|
|
20807
|
+
offsetY: number;
|
|
20808
|
+
} | undefined;
|
|
20809
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20040
20810
|
} | undefined;
|
|
20041
20811
|
pcbRelative?: boolean | undefined;
|
|
20042
20812
|
relative?: boolean | undefined;
|
|
@@ -20100,10 +20870,31 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
20100
20870
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
20101
20871
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
20102
20872
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
20873
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
20874
|
+
offsetX: zod.ZodNumber;
|
|
20875
|
+
offsetY: zod.ZodNumber;
|
|
20876
|
+
}, "strip", zod.ZodTypeAny, {
|
|
20877
|
+
offsetX: number;
|
|
20878
|
+
offsetY: number;
|
|
20879
|
+
}, {
|
|
20880
|
+
offsetX: number;
|
|
20881
|
+
offsetY: number;
|
|
20882
|
+
}>]>>;
|
|
20883
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
20103
20884
|
}, "strip", zod.ZodTypeAny, {
|
|
20104
20885
|
silkscreenFontSize?: number | undefined;
|
|
20886
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20887
|
+
offsetX: number;
|
|
20888
|
+
offsetY: number;
|
|
20889
|
+
} | undefined;
|
|
20890
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20105
20891
|
}, {
|
|
20106
20892
|
silkscreenFontSize?: string | number | undefined;
|
|
20893
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20894
|
+
offsetX: number;
|
|
20895
|
+
offsetY: number;
|
|
20896
|
+
} | undefined;
|
|
20897
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20107
20898
|
}>>;
|
|
20108
20899
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
20109
20900
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -20129,6 +20920,11 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
20129
20920
|
pcbMarginY?: number | undefined;
|
|
20130
20921
|
pcbStyle?: {
|
|
20131
20922
|
silkscreenFontSize?: number | undefined;
|
|
20923
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20924
|
+
offsetX: number;
|
|
20925
|
+
offsetY: number;
|
|
20926
|
+
} | undefined;
|
|
20927
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20132
20928
|
} | undefined;
|
|
20133
20929
|
pcbRelative?: boolean | undefined;
|
|
20134
20930
|
relative?: boolean | undefined;
|
|
@@ -20155,6 +20951,11 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
20155
20951
|
pcbMarginY?: string | number | undefined;
|
|
20156
20952
|
pcbStyle?: {
|
|
20157
20953
|
silkscreenFontSize?: string | number | undefined;
|
|
20954
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20955
|
+
offsetX: number;
|
|
20956
|
+
offsetY: number;
|
|
20957
|
+
} | undefined;
|
|
20958
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20158
20959
|
} | undefined;
|
|
20159
20960
|
pcbRelative?: boolean | undefined;
|
|
20160
20961
|
relative?: boolean | undefined;
|
|
@@ -20181,6 +20982,11 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
20181
20982
|
pcbMarginY?: number | undefined;
|
|
20182
20983
|
pcbStyle?: {
|
|
20183
20984
|
silkscreenFontSize?: number | undefined;
|
|
20985
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
20986
|
+
offsetX: number;
|
|
20987
|
+
offsetY: number;
|
|
20988
|
+
} | undefined;
|
|
20989
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20184
20990
|
} | undefined;
|
|
20185
20991
|
pcbRelative?: boolean | undefined;
|
|
20186
20992
|
relative?: boolean | undefined;
|
|
@@ -20205,6 +21011,11 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
20205
21011
|
pcbMarginY?: string | number | undefined;
|
|
20206
21012
|
pcbStyle?: {
|
|
20207
21013
|
silkscreenFontSize?: string | number | undefined;
|
|
21014
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21015
|
+
offsetX: number;
|
|
21016
|
+
offsetY: number;
|
|
21017
|
+
} | undefined;
|
|
21018
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20208
21019
|
} | undefined;
|
|
20209
21020
|
pcbRelative?: boolean | undefined;
|
|
20210
21021
|
relative?: boolean | undefined;
|
|
@@ -20237,10 +21048,31 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
20237
21048
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
20238
21049
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
20239
21050
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21051
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
21052
|
+
offsetX: zod.ZodNumber;
|
|
21053
|
+
offsetY: zod.ZodNumber;
|
|
21054
|
+
}, "strip", zod.ZodTypeAny, {
|
|
21055
|
+
offsetX: number;
|
|
21056
|
+
offsetY: number;
|
|
21057
|
+
}, {
|
|
21058
|
+
offsetX: number;
|
|
21059
|
+
offsetY: number;
|
|
21060
|
+
}>]>>;
|
|
21061
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
20240
21062
|
}, "strip", zod.ZodTypeAny, {
|
|
20241
21063
|
silkscreenFontSize?: number | undefined;
|
|
21064
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21065
|
+
offsetX: number;
|
|
21066
|
+
offsetY: number;
|
|
21067
|
+
} | undefined;
|
|
21068
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20242
21069
|
}, {
|
|
20243
21070
|
silkscreenFontSize?: string | number | undefined;
|
|
21071
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21072
|
+
offsetX: number;
|
|
21073
|
+
offsetY: number;
|
|
21074
|
+
} | undefined;
|
|
21075
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20244
21076
|
}>>;
|
|
20245
21077
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
20246
21078
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -20269,6 +21101,11 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
20269
21101
|
pcbMarginY?: number | undefined;
|
|
20270
21102
|
pcbStyle?: {
|
|
20271
21103
|
silkscreenFontSize?: number | undefined;
|
|
21104
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21105
|
+
offsetX: number;
|
|
21106
|
+
offsetY: number;
|
|
21107
|
+
} | undefined;
|
|
21108
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20272
21109
|
} | undefined;
|
|
20273
21110
|
pcbRelative?: boolean | undefined;
|
|
20274
21111
|
relative?: boolean | undefined;
|
|
@@ -20295,6 +21132,11 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
20295
21132
|
pcbMarginY?: string | number | undefined;
|
|
20296
21133
|
pcbStyle?: {
|
|
20297
21134
|
silkscreenFontSize?: string | number | undefined;
|
|
21135
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21136
|
+
offsetX: number;
|
|
21137
|
+
offsetY: number;
|
|
21138
|
+
} | undefined;
|
|
21139
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20298
21140
|
} | undefined;
|
|
20299
21141
|
pcbRelative?: boolean | undefined;
|
|
20300
21142
|
relative?: boolean | undefined;
|
|
@@ -20356,10 +21198,31 @@ declare class Keepout extends PrimitiveComponent<typeof pcbKeepoutProps> {
|
|
|
20356
21198
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
20357
21199
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
20358
21200
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21201
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
21202
|
+
offsetX: zod.ZodNumber;
|
|
21203
|
+
offsetY: zod.ZodNumber;
|
|
21204
|
+
}, "strip", zod.ZodTypeAny, {
|
|
21205
|
+
offsetX: number;
|
|
21206
|
+
offsetY: number;
|
|
21207
|
+
}, {
|
|
21208
|
+
offsetX: number;
|
|
21209
|
+
offsetY: number;
|
|
21210
|
+
}>]>>;
|
|
21211
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
20359
21212
|
}, "strip", zod.ZodTypeAny, {
|
|
20360
21213
|
silkscreenFontSize?: number | undefined;
|
|
21214
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21215
|
+
offsetX: number;
|
|
21216
|
+
offsetY: number;
|
|
21217
|
+
} | undefined;
|
|
21218
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20361
21219
|
}, {
|
|
20362
21220
|
silkscreenFontSize?: string | number | undefined;
|
|
21221
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21222
|
+
offsetX: number;
|
|
21223
|
+
offsetY: number;
|
|
21224
|
+
} | undefined;
|
|
21225
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20363
21226
|
}>>;
|
|
20364
21227
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
20365
21228
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -20384,6 +21247,11 @@ declare class Keepout extends PrimitiveComponent<typeof pcbKeepoutProps> {
|
|
|
20384
21247
|
pcbMarginY?: number | undefined;
|
|
20385
21248
|
pcbStyle?: {
|
|
20386
21249
|
silkscreenFontSize?: number | undefined;
|
|
21250
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21251
|
+
offsetX: number;
|
|
21252
|
+
offsetY: number;
|
|
21253
|
+
} | undefined;
|
|
21254
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20387
21255
|
} | undefined;
|
|
20388
21256
|
pcbRelative?: boolean | undefined;
|
|
20389
21257
|
relative?: boolean | undefined;
|
|
@@ -20407,6 +21275,11 @@ declare class Keepout extends PrimitiveComponent<typeof pcbKeepoutProps> {
|
|
|
20407
21275
|
pcbMarginY?: string | number | undefined;
|
|
20408
21276
|
pcbStyle?: {
|
|
20409
21277
|
silkscreenFontSize?: string | number | undefined;
|
|
21278
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21279
|
+
offsetX: number;
|
|
21280
|
+
offsetY: number;
|
|
21281
|
+
} | undefined;
|
|
21282
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20410
21283
|
} | undefined;
|
|
20411
21284
|
pcbRelative?: boolean | undefined;
|
|
20412
21285
|
relative?: boolean | undefined;
|
|
@@ -20435,10 +21308,31 @@ declare class Keepout extends PrimitiveComponent<typeof pcbKeepoutProps> {
|
|
|
20435
21308
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
20436
21309
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
20437
21310
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21311
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
21312
|
+
offsetX: zod.ZodNumber;
|
|
21313
|
+
offsetY: zod.ZodNumber;
|
|
21314
|
+
}, "strip", zod.ZodTypeAny, {
|
|
21315
|
+
offsetX: number;
|
|
21316
|
+
offsetY: number;
|
|
21317
|
+
}, {
|
|
21318
|
+
offsetX: number;
|
|
21319
|
+
offsetY: number;
|
|
21320
|
+
}>]>>;
|
|
21321
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
20438
21322
|
}, "strip", zod.ZodTypeAny, {
|
|
20439
21323
|
silkscreenFontSize?: number | undefined;
|
|
21324
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21325
|
+
offsetX: number;
|
|
21326
|
+
offsetY: number;
|
|
21327
|
+
} | undefined;
|
|
21328
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20440
21329
|
}, {
|
|
20441
21330
|
silkscreenFontSize?: string | number | undefined;
|
|
21331
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21332
|
+
offsetX: number;
|
|
21333
|
+
offsetY: number;
|
|
21334
|
+
} | undefined;
|
|
21335
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20442
21336
|
}>>;
|
|
20443
21337
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
20444
21338
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -20466,6 +21360,11 @@ declare class Keepout extends PrimitiveComponent<typeof pcbKeepoutProps> {
|
|
|
20466
21360
|
pcbMarginY?: number | undefined;
|
|
20467
21361
|
pcbStyle?: {
|
|
20468
21362
|
silkscreenFontSize?: number | undefined;
|
|
21363
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21364
|
+
offsetX: number;
|
|
21365
|
+
offsetY: number;
|
|
21366
|
+
} | undefined;
|
|
21367
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20469
21368
|
} | undefined;
|
|
20470
21369
|
pcbRelative?: boolean | undefined;
|
|
20471
21370
|
relative?: boolean | undefined;
|
|
@@ -20491,6 +21390,11 @@ declare class Keepout extends PrimitiveComponent<typeof pcbKeepoutProps> {
|
|
|
20491
21390
|
pcbMarginY?: string | number | undefined;
|
|
20492
21391
|
pcbStyle?: {
|
|
20493
21392
|
silkscreenFontSize?: string | number | undefined;
|
|
21393
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21394
|
+
offsetX: number;
|
|
21395
|
+
offsetY: number;
|
|
21396
|
+
} | undefined;
|
|
21397
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20494
21398
|
} | undefined;
|
|
20495
21399
|
pcbRelative?: boolean | undefined;
|
|
20496
21400
|
relative?: boolean | undefined;
|
|
@@ -20709,10 +21613,31 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
20709
21613
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
20710
21614
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
20711
21615
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21616
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
21617
|
+
offsetX: zod.ZodNumber;
|
|
21618
|
+
offsetY: zod.ZodNumber;
|
|
21619
|
+
}, "strip", zod.ZodTypeAny, {
|
|
21620
|
+
offsetX: number;
|
|
21621
|
+
offsetY: number;
|
|
21622
|
+
}, {
|
|
21623
|
+
offsetX: number;
|
|
21624
|
+
offsetY: number;
|
|
21625
|
+
}>]>>;
|
|
21626
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
20712
21627
|
}, "strip", zod.ZodTypeAny, {
|
|
20713
21628
|
silkscreenFontSize?: number | undefined;
|
|
21629
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21630
|
+
offsetX: number;
|
|
21631
|
+
offsetY: number;
|
|
21632
|
+
} | undefined;
|
|
21633
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20714
21634
|
}, {
|
|
20715
21635
|
silkscreenFontSize?: string | number | undefined;
|
|
21636
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21637
|
+
offsetX: number;
|
|
21638
|
+
offsetY: number;
|
|
21639
|
+
} | undefined;
|
|
21640
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20716
21641
|
}>>;
|
|
20717
21642
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
20718
21643
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -20741,6 +21666,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
20741
21666
|
pcbMarginY?: number | undefined;
|
|
20742
21667
|
pcbStyle?: {
|
|
20743
21668
|
silkscreenFontSize?: number | undefined;
|
|
21669
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21670
|
+
offsetX: number;
|
|
21671
|
+
offsetY: number;
|
|
21672
|
+
} | undefined;
|
|
21673
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20744
21674
|
} | undefined;
|
|
20745
21675
|
pcbRelative?: boolean | undefined;
|
|
20746
21676
|
relative?: boolean | undefined;
|
|
@@ -20765,6 +21695,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
20765
21695
|
pcbMarginY?: string | number | undefined;
|
|
20766
21696
|
pcbStyle?: {
|
|
20767
21697
|
silkscreenFontSize?: string | number | undefined;
|
|
21698
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21699
|
+
offsetX: number;
|
|
21700
|
+
offsetY: number;
|
|
21701
|
+
} | undefined;
|
|
21702
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20768
21703
|
} | undefined;
|
|
20769
21704
|
pcbRelative?: boolean | undefined;
|
|
20770
21705
|
relative?: boolean | undefined;
|
|
@@ -20796,10 +21731,31 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
20796
21731
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
20797
21732
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
20798
21733
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21734
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
21735
|
+
offsetX: zod.ZodNumber;
|
|
21736
|
+
offsetY: zod.ZodNumber;
|
|
21737
|
+
}, "strip", zod.ZodTypeAny, {
|
|
21738
|
+
offsetX: number;
|
|
21739
|
+
offsetY: number;
|
|
21740
|
+
}, {
|
|
21741
|
+
offsetX: number;
|
|
21742
|
+
offsetY: number;
|
|
21743
|
+
}>]>>;
|
|
21744
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
20799
21745
|
}, "strip", zod.ZodTypeAny, {
|
|
20800
21746
|
silkscreenFontSize?: number | undefined;
|
|
21747
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21748
|
+
offsetX: number;
|
|
21749
|
+
offsetY: number;
|
|
21750
|
+
} | undefined;
|
|
21751
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20801
21752
|
}, {
|
|
20802
21753
|
silkscreenFontSize?: string | number | undefined;
|
|
21754
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21755
|
+
offsetX: number;
|
|
21756
|
+
offsetY: number;
|
|
21757
|
+
} | undefined;
|
|
21758
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20803
21759
|
}>>;
|
|
20804
21760
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
20805
21761
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -20833,6 +21789,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
20833
21789
|
pcbMarginY?: number | undefined;
|
|
20834
21790
|
pcbStyle?: {
|
|
20835
21791
|
silkscreenFontSize?: number | undefined;
|
|
21792
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21793
|
+
offsetX: number;
|
|
21794
|
+
offsetY: number;
|
|
21795
|
+
} | undefined;
|
|
21796
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20836
21797
|
} | undefined;
|
|
20837
21798
|
pcbRelative?: boolean | undefined;
|
|
20838
21799
|
relative?: boolean | undefined;
|
|
@@ -20864,6 +21825,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
20864
21825
|
pcbMarginY?: string | number | undefined;
|
|
20865
21826
|
pcbStyle?: {
|
|
20866
21827
|
silkscreenFontSize?: string | number | undefined;
|
|
21828
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21829
|
+
offsetX: number;
|
|
21830
|
+
offsetY: number;
|
|
21831
|
+
} | undefined;
|
|
21832
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20867
21833
|
} | undefined;
|
|
20868
21834
|
pcbRelative?: boolean | undefined;
|
|
20869
21835
|
relative?: boolean | undefined;
|
|
@@ -20897,10 +21863,31 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
20897
21863
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
20898
21864
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
20899
21865
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21866
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
21867
|
+
offsetX: zod.ZodNumber;
|
|
21868
|
+
offsetY: zod.ZodNumber;
|
|
21869
|
+
}, "strip", zod.ZodTypeAny, {
|
|
21870
|
+
offsetX: number;
|
|
21871
|
+
offsetY: number;
|
|
21872
|
+
}, {
|
|
21873
|
+
offsetX: number;
|
|
21874
|
+
offsetY: number;
|
|
21875
|
+
}>]>>;
|
|
21876
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
20900
21877
|
}, "strip", zod.ZodTypeAny, {
|
|
20901
21878
|
silkscreenFontSize?: number | undefined;
|
|
21879
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21880
|
+
offsetX: number;
|
|
21881
|
+
offsetY: number;
|
|
21882
|
+
} | undefined;
|
|
21883
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20902
21884
|
}, {
|
|
20903
21885
|
silkscreenFontSize?: string | number | undefined;
|
|
21886
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21887
|
+
offsetX: number;
|
|
21888
|
+
offsetY: number;
|
|
21889
|
+
} | undefined;
|
|
21890
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20904
21891
|
}>>;
|
|
20905
21892
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
20906
21893
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -20937,6 +21924,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
20937
21924
|
pcbMarginY?: number | undefined;
|
|
20938
21925
|
pcbStyle?: {
|
|
20939
21926
|
silkscreenFontSize?: number | undefined;
|
|
21927
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21928
|
+
offsetX: number;
|
|
21929
|
+
offsetY: number;
|
|
21930
|
+
} | undefined;
|
|
21931
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20940
21932
|
} | undefined;
|
|
20941
21933
|
pcbRelative?: boolean | undefined;
|
|
20942
21934
|
relative?: boolean | undefined;
|
|
@@ -20971,6 +21963,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
20971
21963
|
pcbMarginY?: string | number | undefined;
|
|
20972
21964
|
pcbStyle?: {
|
|
20973
21965
|
silkscreenFontSize?: string | number | undefined;
|
|
21966
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
21967
|
+
offsetX: number;
|
|
21968
|
+
offsetY: number;
|
|
21969
|
+
} | undefined;
|
|
21970
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
20974
21971
|
} | undefined;
|
|
20975
21972
|
pcbRelative?: boolean | undefined;
|
|
20976
21973
|
relative?: boolean | undefined;
|
|
@@ -21007,10 +22004,31 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21007
22004
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21008
22005
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
21009
22006
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22007
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
22008
|
+
offsetX: zod.ZodNumber;
|
|
22009
|
+
offsetY: zod.ZodNumber;
|
|
22010
|
+
}, "strip", zod.ZodTypeAny, {
|
|
22011
|
+
offsetX: number;
|
|
22012
|
+
offsetY: number;
|
|
22013
|
+
}, {
|
|
22014
|
+
offsetX: number;
|
|
22015
|
+
offsetY: number;
|
|
22016
|
+
}>]>>;
|
|
22017
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
21010
22018
|
}, "strip", zod.ZodTypeAny, {
|
|
21011
22019
|
silkscreenFontSize?: number | undefined;
|
|
22020
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22021
|
+
offsetX: number;
|
|
22022
|
+
offsetY: number;
|
|
22023
|
+
} | undefined;
|
|
22024
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21012
22025
|
}, {
|
|
21013
22026
|
silkscreenFontSize?: string | number | undefined;
|
|
22027
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22028
|
+
offsetX: number;
|
|
22029
|
+
offsetY: number;
|
|
22030
|
+
} | undefined;
|
|
22031
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21014
22032
|
}>>;
|
|
21015
22033
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
21016
22034
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -21046,6 +22064,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21046
22064
|
pcbMarginY?: number | undefined;
|
|
21047
22065
|
pcbStyle?: {
|
|
21048
22066
|
silkscreenFontSize?: number | undefined;
|
|
22067
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22068
|
+
offsetX: number;
|
|
22069
|
+
offsetY: number;
|
|
22070
|
+
} | undefined;
|
|
22071
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21049
22072
|
} | undefined;
|
|
21050
22073
|
pcbRelative?: boolean | undefined;
|
|
21051
22074
|
relative?: boolean | undefined;
|
|
@@ -21076,6 +22099,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21076
22099
|
pcbMarginY?: string | number | undefined;
|
|
21077
22100
|
pcbStyle?: {
|
|
21078
22101
|
silkscreenFontSize?: string | number | undefined;
|
|
22102
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22103
|
+
offsetX: number;
|
|
22104
|
+
offsetY: number;
|
|
22105
|
+
} | undefined;
|
|
22106
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21079
22107
|
} | undefined;
|
|
21080
22108
|
pcbRelative?: boolean | undefined;
|
|
21081
22109
|
relative?: boolean | undefined;
|
|
@@ -21112,10 +22140,31 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21112
22140
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21113
22141
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
21114
22142
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22143
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
22144
|
+
offsetX: zod.ZodNumber;
|
|
22145
|
+
offsetY: zod.ZodNumber;
|
|
22146
|
+
}, "strip", zod.ZodTypeAny, {
|
|
22147
|
+
offsetX: number;
|
|
22148
|
+
offsetY: number;
|
|
22149
|
+
}, {
|
|
22150
|
+
offsetX: number;
|
|
22151
|
+
offsetY: number;
|
|
22152
|
+
}>]>>;
|
|
22153
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
21115
22154
|
}, "strip", zod.ZodTypeAny, {
|
|
21116
22155
|
silkscreenFontSize?: number | undefined;
|
|
22156
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22157
|
+
offsetX: number;
|
|
22158
|
+
offsetY: number;
|
|
22159
|
+
} | undefined;
|
|
22160
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21117
22161
|
}, {
|
|
21118
22162
|
silkscreenFontSize?: string | number | undefined;
|
|
22163
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22164
|
+
offsetX: number;
|
|
22165
|
+
offsetY: number;
|
|
22166
|
+
} | undefined;
|
|
22167
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21119
22168
|
}>>;
|
|
21120
22169
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
21121
22170
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -21154,6 +22203,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21154
22203
|
pcbMarginY?: number | undefined;
|
|
21155
22204
|
pcbStyle?: {
|
|
21156
22205
|
silkscreenFontSize?: number | undefined;
|
|
22206
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22207
|
+
offsetX: number;
|
|
22208
|
+
offsetY: number;
|
|
22209
|
+
} | undefined;
|
|
22210
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21157
22211
|
} | undefined;
|
|
21158
22212
|
pcbRelative?: boolean | undefined;
|
|
21159
22213
|
relative?: boolean | undefined;
|
|
@@ -21184,6 +22238,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21184
22238
|
pcbMarginY?: string | number | undefined;
|
|
21185
22239
|
pcbStyle?: {
|
|
21186
22240
|
silkscreenFontSize?: string | number | undefined;
|
|
22241
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22242
|
+
offsetX: number;
|
|
22243
|
+
offsetY: number;
|
|
22244
|
+
} | undefined;
|
|
22245
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21187
22246
|
} | undefined;
|
|
21188
22247
|
pcbRelative?: boolean | undefined;
|
|
21189
22248
|
relative?: boolean | undefined;
|
|
@@ -21210,6 +22269,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21210
22269
|
pcbMarginY?: number | undefined;
|
|
21211
22270
|
pcbStyle?: {
|
|
21212
22271
|
silkscreenFontSize?: number | undefined;
|
|
22272
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22273
|
+
offsetX: number;
|
|
22274
|
+
offsetY: number;
|
|
22275
|
+
} | undefined;
|
|
22276
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21213
22277
|
} | undefined;
|
|
21214
22278
|
pcbRelative?: boolean | undefined;
|
|
21215
22279
|
relative?: boolean | undefined;
|
|
@@ -21235,6 +22299,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21235
22299
|
pcbMarginY?: number | undefined;
|
|
21236
22300
|
pcbStyle?: {
|
|
21237
22301
|
silkscreenFontSize?: number | undefined;
|
|
22302
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22303
|
+
offsetX: number;
|
|
22304
|
+
offsetY: number;
|
|
22305
|
+
} | undefined;
|
|
22306
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21238
22307
|
} | undefined;
|
|
21239
22308
|
pcbRelative?: boolean | undefined;
|
|
21240
22309
|
relative?: boolean | undefined;
|
|
@@ -21264,6 +22333,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21264
22333
|
pcbMarginY?: number | undefined;
|
|
21265
22334
|
pcbStyle?: {
|
|
21266
22335
|
silkscreenFontSize?: number | undefined;
|
|
22336
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22337
|
+
offsetX: number;
|
|
22338
|
+
offsetY: number;
|
|
22339
|
+
} | undefined;
|
|
22340
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21267
22341
|
} | undefined;
|
|
21268
22342
|
pcbRelative?: boolean | undefined;
|
|
21269
22343
|
relative?: boolean | undefined;
|
|
@@ -21296,6 +22370,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21296
22370
|
pcbMarginY?: number | undefined;
|
|
21297
22371
|
pcbStyle?: {
|
|
21298
22372
|
silkscreenFontSize?: number | undefined;
|
|
22373
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22374
|
+
offsetX: number;
|
|
22375
|
+
offsetY: number;
|
|
22376
|
+
} | undefined;
|
|
22377
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21299
22378
|
} | undefined;
|
|
21300
22379
|
pcbRelative?: boolean | undefined;
|
|
21301
22380
|
relative?: boolean | undefined;
|
|
@@ -21329,6 +22408,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21329
22408
|
pcbMarginY?: number | undefined;
|
|
21330
22409
|
pcbStyle?: {
|
|
21331
22410
|
silkscreenFontSize?: number | undefined;
|
|
22411
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22412
|
+
offsetX: number;
|
|
22413
|
+
offsetY: number;
|
|
22414
|
+
} | undefined;
|
|
22415
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21332
22416
|
} | undefined;
|
|
21333
22417
|
pcbRelative?: boolean | undefined;
|
|
21334
22418
|
relative?: boolean | undefined;
|
|
@@ -21355,6 +22439,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21355
22439
|
pcbMarginY?: string | number | undefined;
|
|
21356
22440
|
pcbStyle?: {
|
|
21357
22441
|
silkscreenFontSize?: string | number | undefined;
|
|
22442
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22443
|
+
offsetX: number;
|
|
22444
|
+
offsetY: number;
|
|
22445
|
+
} | undefined;
|
|
22446
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21358
22447
|
} | undefined;
|
|
21359
22448
|
pcbRelative?: boolean | undefined;
|
|
21360
22449
|
relative?: boolean | undefined;
|
|
@@ -21382,6 +22471,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21382
22471
|
pcbMarginY?: string | number | undefined;
|
|
21383
22472
|
pcbStyle?: {
|
|
21384
22473
|
silkscreenFontSize?: string | number | undefined;
|
|
22474
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22475
|
+
offsetX: number;
|
|
22476
|
+
offsetY: number;
|
|
22477
|
+
} | undefined;
|
|
22478
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21385
22479
|
} | undefined;
|
|
21386
22480
|
pcbRelative?: boolean | undefined;
|
|
21387
22481
|
relative?: boolean | undefined;
|
|
@@ -21411,6 +22505,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21411
22505
|
pcbMarginY?: string | number | undefined;
|
|
21412
22506
|
pcbStyle?: {
|
|
21413
22507
|
silkscreenFontSize?: string | number | undefined;
|
|
22508
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22509
|
+
offsetX: number;
|
|
22510
|
+
offsetY: number;
|
|
22511
|
+
} | undefined;
|
|
22512
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21414
22513
|
} | undefined;
|
|
21415
22514
|
pcbRelative?: boolean | undefined;
|
|
21416
22515
|
relative?: boolean | undefined;
|
|
@@ -21441,6 +22540,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21441
22540
|
pcbMarginY?: string | number | undefined;
|
|
21442
22541
|
pcbStyle?: {
|
|
21443
22542
|
silkscreenFontSize?: string | number | undefined;
|
|
22543
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22544
|
+
offsetX: number;
|
|
22545
|
+
offsetY: number;
|
|
22546
|
+
} | undefined;
|
|
22547
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21444
22548
|
} | undefined;
|
|
21445
22549
|
pcbRelative?: boolean | undefined;
|
|
21446
22550
|
relative?: boolean | undefined;
|
|
@@ -21474,6 +22578,11 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21474
22578
|
pcbMarginY?: string | number | undefined;
|
|
21475
22579
|
pcbStyle?: {
|
|
21476
22580
|
silkscreenFontSize?: string | number | undefined;
|
|
22581
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22582
|
+
offsetX: number;
|
|
22583
|
+
offsetY: number;
|
|
22584
|
+
} | undefined;
|
|
22585
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21477
22586
|
} | undefined;
|
|
21478
22587
|
pcbRelative?: boolean | undefined;
|
|
21479
22588
|
relative?: boolean | undefined;
|
|
@@ -21542,10 +22651,31 @@ declare class SilkscreenCircle extends PrimitiveComponent<typeof silkscreenCircl
|
|
|
21542
22651
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21543
22652
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
21544
22653
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22654
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
22655
|
+
offsetX: zod.ZodNumber;
|
|
22656
|
+
offsetY: zod.ZodNumber;
|
|
22657
|
+
}, "strip", zod.ZodTypeAny, {
|
|
22658
|
+
offsetX: number;
|
|
22659
|
+
offsetY: number;
|
|
22660
|
+
}, {
|
|
22661
|
+
offsetX: number;
|
|
22662
|
+
offsetY: number;
|
|
22663
|
+
}>]>>;
|
|
22664
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
21545
22665
|
}, "strip", zod.ZodTypeAny, {
|
|
21546
22666
|
silkscreenFontSize?: number | undefined;
|
|
22667
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22668
|
+
offsetX: number;
|
|
22669
|
+
offsetY: number;
|
|
22670
|
+
} | undefined;
|
|
22671
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21547
22672
|
}, {
|
|
21548
22673
|
silkscreenFontSize?: string | number | undefined;
|
|
22674
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22675
|
+
offsetX: number;
|
|
22676
|
+
offsetY: number;
|
|
22677
|
+
} | undefined;
|
|
22678
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21549
22679
|
}>>;
|
|
21550
22680
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
21551
22681
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -21571,6 +22701,11 @@ declare class SilkscreenCircle extends PrimitiveComponent<typeof silkscreenCircl
|
|
|
21571
22701
|
pcbMarginY?: number | undefined;
|
|
21572
22702
|
pcbStyle?: {
|
|
21573
22703
|
silkscreenFontSize?: number | undefined;
|
|
22704
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22705
|
+
offsetX: number;
|
|
22706
|
+
offsetY: number;
|
|
22707
|
+
} | undefined;
|
|
22708
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21574
22709
|
} | undefined;
|
|
21575
22710
|
pcbRelative?: boolean | undefined;
|
|
21576
22711
|
relative?: boolean | undefined;
|
|
@@ -21596,6 +22731,11 @@ declare class SilkscreenCircle extends PrimitiveComponent<typeof silkscreenCircl
|
|
|
21596
22731
|
pcbMarginY?: string | number | undefined;
|
|
21597
22732
|
pcbStyle?: {
|
|
21598
22733
|
silkscreenFontSize?: string | number | undefined;
|
|
22734
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22735
|
+
offsetX: number;
|
|
22736
|
+
offsetY: number;
|
|
22737
|
+
} | undefined;
|
|
22738
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21599
22739
|
} | undefined;
|
|
21600
22740
|
pcbRelative?: boolean | undefined;
|
|
21601
22741
|
relative?: boolean | undefined;
|
|
@@ -21641,10 +22781,31 @@ declare class SilkscreenPath extends PrimitiveComponent<typeof silkscreenPathPro
|
|
|
21641
22781
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21642
22782
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
21643
22783
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22784
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
22785
|
+
offsetX: zod.ZodNumber;
|
|
22786
|
+
offsetY: zod.ZodNumber;
|
|
22787
|
+
}, "strip", zod.ZodTypeAny, {
|
|
22788
|
+
offsetX: number;
|
|
22789
|
+
offsetY: number;
|
|
22790
|
+
}, {
|
|
22791
|
+
offsetX: number;
|
|
22792
|
+
offsetY: number;
|
|
22793
|
+
}>]>>;
|
|
22794
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
21644
22795
|
}, "strip", zod.ZodTypeAny, {
|
|
21645
22796
|
silkscreenFontSize?: number | undefined;
|
|
22797
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22798
|
+
offsetX: number;
|
|
22799
|
+
offsetY: number;
|
|
22800
|
+
} | undefined;
|
|
22801
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21646
22802
|
}, {
|
|
21647
22803
|
silkscreenFontSize?: string | number | undefined;
|
|
22804
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22805
|
+
offsetX: number;
|
|
22806
|
+
offsetY: number;
|
|
22807
|
+
} | undefined;
|
|
22808
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21648
22809
|
}>>;
|
|
21649
22810
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
21650
22811
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -21698,6 +22859,11 @@ declare class SilkscreenPath extends PrimitiveComponent<typeof silkscreenPathPro
|
|
|
21698
22859
|
pcbMarginY?: number | undefined;
|
|
21699
22860
|
pcbStyle?: {
|
|
21700
22861
|
silkscreenFontSize?: number | undefined;
|
|
22862
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22863
|
+
offsetX: number;
|
|
22864
|
+
offsetY: number;
|
|
22865
|
+
} | undefined;
|
|
22866
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21701
22867
|
} | undefined;
|
|
21702
22868
|
pcbRelative?: boolean | undefined;
|
|
21703
22869
|
relative?: boolean | undefined;
|
|
@@ -21725,6 +22891,11 @@ declare class SilkscreenPath extends PrimitiveComponent<typeof silkscreenPathPro
|
|
|
21725
22891
|
pcbMarginY?: string | number | undefined;
|
|
21726
22892
|
pcbStyle?: {
|
|
21727
22893
|
silkscreenFontSize?: string | number | undefined;
|
|
22894
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22895
|
+
offsetX: number;
|
|
22896
|
+
offsetY: number;
|
|
22897
|
+
} | undefined;
|
|
22898
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21728
22899
|
} | undefined;
|
|
21729
22900
|
pcbRelative?: boolean | undefined;
|
|
21730
22901
|
relative?: boolean | undefined;
|
|
@@ -21772,10 +22943,31 @@ declare class SilkscreenRect extends PrimitiveComponent<typeof silkscreenRectPro
|
|
|
21772
22943
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21773
22944
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
21774
22945
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22946
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
22947
|
+
offsetX: zod.ZodNumber;
|
|
22948
|
+
offsetY: zod.ZodNumber;
|
|
22949
|
+
}, "strip", zod.ZodTypeAny, {
|
|
22950
|
+
offsetX: number;
|
|
22951
|
+
offsetY: number;
|
|
22952
|
+
}, {
|
|
22953
|
+
offsetX: number;
|
|
22954
|
+
offsetY: number;
|
|
22955
|
+
}>]>>;
|
|
22956
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
21775
22957
|
}, "strip", zod.ZodTypeAny, {
|
|
21776
22958
|
silkscreenFontSize?: number | undefined;
|
|
22959
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22960
|
+
offsetX: number;
|
|
22961
|
+
offsetY: number;
|
|
22962
|
+
} | undefined;
|
|
22963
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21777
22964
|
}, {
|
|
21778
22965
|
silkscreenFontSize?: string | number | undefined;
|
|
22966
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
22967
|
+
offsetX: number;
|
|
22968
|
+
offsetY: number;
|
|
22969
|
+
} | undefined;
|
|
22970
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21779
22971
|
}>>;
|
|
21780
22972
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
21781
22973
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -21785,6 +22977,7 @@ declare class SilkscreenRect extends PrimitiveComponent<typeof silkscreenRectPro
|
|
|
21785
22977
|
strokeWidth: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21786
22978
|
width: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
21787
22979
|
height: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
22980
|
+
cornerRadius: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21788
22981
|
}, "strip", zod.ZodTypeAny, {
|
|
21789
22982
|
width: number;
|
|
21790
22983
|
height: number;
|
|
@@ -21803,10 +22996,16 @@ declare class SilkscreenRect extends PrimitiveComponent<typeof silkscreenRectPro
|
|
|
21803
22996
|
pcbMarginY?: number | undefined;
|
|
21804
22997
|
pcbStyle?: {
|
|
21805
22998
|
silkscreenFontSize?: number | undefined;
|
|
22999
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23000
|
+
offsetX: number;
|
|
23001
|
+
offsetY: number;
|
|
23002
|
+
} | undefined;
|
|
23003
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21806
23004
|
} | undefined;
|
|
21807
23005
|
pcbRelative?: boolean | undefined;
|
|
21808
23006
|
relative?: boolean | undefined;
|
|
21809
23007
|
strokeWidth?: number | undefined;
|
|
23008
|
+
cornerRadius?: number | undefined;
|
|
21810
23009
|
filled?: boolean | undefined;
|
|
21811
23010
|
stroke?: "none" | "dashed" | "solid" | undefined;
|
|
21812
23011
|
}, {
|
|
@@ -21829,10 +23028,16 @@ declare class SilkscreenRect extends PrimitiveComponent<typeof silkscreenRectPro
|
|
|
21829
23028
|
pcbMarginY?: string | number | undefined;
|
|
21830
23029
|
pcbStyle?: {
|
|
21831
23030
|
silkscreenFontSize?: string | number | undefined;
|
|
23031
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23032
|
+
offsetX: number;
|
|
23033
|
+
offsetY: number;
|
|
23034
|
+
} | undefined;
|
|
23035
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21832
23036
|
} | undefined;
|
|
21833
23037
|
pcbRelative?: boolean | undefined;
|
|
21834
23038
|
relative?: boolean | undefined;
|
|
21835
23039
|
strokeWidth?: string | number | undefined;
|
|
23040
|
+
cornerRadius?: string | number | undefined;
|
|
21836
23041
|
filled?: boolean | undefined;
|
|
21837
23042
|
stroke?: "none" | "dashed" | "solid" | undefined;
|
|
21838
23043
|
}>;
|
|
@@ -21873,10 +23078,31 @@ declare class SilkscreenText extends PrimitiveComponent<typeof silkscreenTextPro
|
|
|
21873
23078
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21874
23079
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
21875
23080
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23081
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
23082
|
+
offsetX: zod.ZodNumber;
|
|
23083
|
+
offsetY: zod.ZodNumber;
|
|
23084
|
+
}, "strip", zod.ZodTypeAny, {
|
|
23085
|
+
offsetX: number;
|
|
23086
|
+
offsetY: number;
|
|
23087
|
+
}, {
|
|
23088
|
+
offsetX: number;
|
|
23089
|
+
offsetY: number;
|
|
23090
|
+
}>]>>;
|
|
23091
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
21876
23092
|
}, "strip", zod.ZodTypeAny, {
|
|
21877
23093
|
silkscreenFontSize?: number | undefined;
|
|
23094
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23095
|
+
offsetX: number;
|
|
23096
|
+
offsetY: number;
|
|
23097
|
+
} | undefined;
|
|
23098
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21878
23099
|
}, {
|
|
21879
23100
|
silkscreenFontSize?: string | number | undefined;
|
|
23101
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23102
|
+
offsetX: number;
|
|
23103
|
+
offsetY: number;
|
|
23104
|
+
} | undefined;
|
|
23105
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21880
23106
|
}>>;
|
|
21881
23107
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
21882
23108
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -21919,6 +23145,11 @@ declare class SilkscreenText extends PrimitiveComponent<typeof silkscreenTextPro
|
|
|
21919
23145
|
pcbMarginY?: number | undefined;
|
|
21920
23146
|
pcbStyle?: {
|
|
21921
23147
|
silkscreenFontSize?: number | undefined;
|
|
23148
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23149
|
+
offsetX: number;
|
|
23150
|
+
offsetY: number;
|
|
23151
|
+
} | undefined;
|
|
23152
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21922
23153
|
} | undefined;
|
|
21923
23154
|
pcbRelative?: boolean | undefined;
|
|
21924
23155
|
relative?: boolean | undefined;
|
|
@@ -21951,6 +23182,11 @@ declare class SilkscreenText extends PrimitiveComponent<typeof silkscreenTextPro
|
|
|
21951
23182
|
pcbMarginY?: string | number | undefined;
|
|
21952
23183
|
pcbStyle?: {
|
|
21953
23184
|
silkscreenFontSize?: string | number | undefined;
|
|
23185
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23186
|
+
offsetX: number;
|
|
23187
|
+
offsetY: number;
|
|
23188
|
+
} | undefined;
|
|
23189
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
21954
23190
|
} | undefined;
|
|
21955
23191
|
pcbRelative?: boolean | undefined;
|
|
21956
23192
|
relative?: boolean | undefined;
|
|
@@ -22005,10 +23241,31 @@ declare class SilkscreenLine extends PrimitiveComponent<typeof silkscreenLinePro
|
|
|
22005
23241
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22006
23242
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
22007
23243
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23244
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
23245
|
+
offsetX: zod.ZodNumber;
|
|
23246
|
+
offsetY: zod.ZodNumber;
|
|
23247
|
+
}, "strip", zod.ZodTypeAny, {
|
|
23248
|
+
offsetX: number;
|
|
23249
|
+
offsetY: number;
|
|
23250
|
+
}, {
|
|
23251
|
+
offsetX: number;
|
|
23252
|
+
offsetY: number;
|
|
23253
|
+
}>]>>;
|
|
23254
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
22008
23255
|
}, "strip", zod.ZodTypeAny, {
|
|
22009
23256
|
silkscreenFontSize?: number | undefined;
|
|
23257
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23258
|
+
offsetX: number;
|
|
23259
|
+
offsetY: number;
|
|
23260
|
+
} | undefined;
|
|
23261
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22010
23262
|
}, {
|
|
22011
23263
|
silkscreenFontSize?: string | number | undefined;
|
|
23264
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23265
|
+
offsetX: number;
|
|
23266
|
+
offsetY: number;
|
|
23267
|
+
} | undefined;
|
|
23268
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22012
23269
|
}>>;
|
|
22013
23270
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
22014
23271
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -22035,6 +23292,11 @@ declare class SilkscreenLine extends PrimitiveComponent<typeof silkscreenLinePro
|
|
|
22035
23292
|
pcbMarginY?: number | undefined;
|
|
22036
23293
|
pcbStyle?: {
|
|
22037
23294
|
silkscreenFontSize?: number | undefined;
|
|
23295
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23296
|
+
offsetX: number;
|
|
23297
|
+
offsetY: number;
|
|
23298
|
+
} | undefined;
|
|
23299
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22038
23300
|
} | undefined;
|
|
22039
23301
|
pcbRelative?: boolean | undefined;
|
|
22040
23302
|
relative?: boolean | undefined;
|
|
@@ -22057,6 +23319,11 @@ declare class SilkscreenLine extends PrimitiveComponent<typeof silkscreenLinePro
|
|
|
22057
23319
|
pcbMarginY?: string | number | undefined;
|
|
22058
23320
|
pcbStyle?: {
|
|
22059
23321
|
silkscreenFontSize?: string | number | undefined;
|
|
23322
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23323
|
+
offsetX: number;
|
|
23324
|
+
offsetY: number;
|
|
23325
|
+
} | undefined;
|
|
23326
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22060
23327
|
} | undefined;
|
|
22061
23328
|
pcbRelative?: boolean | undefined;
|
|
22062
23329
|
relative?: boolean | undefined;
|
|
@@ -22100,10 +23367,31 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
22100
23367
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22101
23368
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
22102
23369
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23370
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
23371
|
+
offsetX: zod.ZodNumber;
|
|
23372
|
+
offsetY: zod.ZodNumber;
|
|
23373
|
+
}, "strip", zod.ZodTypeAny, {
|
|
23374
|
+
offsetX: number;
|
|
23375
|
+
offsetY: number;
|
|
23376
|
+
}, {
|
|
23377
|
+
offsetX: number;
|
|
23378
|
+
offsetY: number;
|
|
23379
|
+
}>]>>;
|
|
23380
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
22103
23381
|
}, "strip", zod.ZodTypeAny, {
|
|
22104
23382
|
silkscreenFontSize?: number | undefined;
|
|
23383
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23384
|
+
offsetX: number;
|
|
23385
|
+
offsetY: number;
|
|
23386
|
+
} | undefined;
|
|
23387
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22105
23388
|
}, {
|
|
22106
23389
|
silkscreenFontSize?: string | number | undefined;
|
|
23390
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23391
|
+
offsetX: number;
|
|
23392
|
+
offsetY: number;
|
|
23393
|
+
} | undefined;
|
|
23394
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22107
23395
|
}>>;
|
|
22108
23396
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
22109
23397
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -22131,6 +23419,11 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
22131
23419
|
pcbMarginY?: number | undefined;
|
|
22132
23420
|
pcbStyle?: {
|
|
22133
23421
|
silkscreenFontSize?: number | undefined;
|
|
23422
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23423
|
+
offsetX: number;
|
|
23424
|
+
offsetY: number;
|
|
23425
|
+
} | undefined;
|
|
23426
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22134
23427
|
} | undefined;
|
|
22135
23428
|
pcbRelative?: boolean | undefined;
|
|
22136
23429
|
relative?: boolean | undefined;
|
|
@@ -22157,6 +23450,11 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
22157
23450
|
pcbMarginY?: string | number | undefined;
|
|
22158
23451
|
pcbStyle?: {
|
|
22159
23452
|
silkscreenFontSize?: string | number | undefined;
|
|
23453
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23454
|
+
offsetX: number;
|
|
23455
|
+
offsetY: number;
|
|
23456
|
+
} | undefined;
|
|
23457
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22160
23458
|
} | undefined;
|
|
22161
23459
|
pcbRelative?: boolean | undefined;
|
|
22162
23460
|
relative?: boolean | undefined;
|
|
@@ -22188,10 +23486,31 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
22188
23486
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22189
23487
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
22190
23488
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23489
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
23490
|
+
offsetX: zod.ZodNumber;
|
|
23491
|
+
offsetY: zod.ZodNumber;
|
|
23492
|
+
}, "strip", zod.ZodTypeAny, {
|
|
23493
|
+
offsetX: number;
|
|
23494
|
+
offsetY: number;
|
|
23495
|
+
}, {
|
|
23496
|
+
offsetX: number;
|
|
23497
|
+
offsetY: number;
|
|
23498
|
+
}>]>>;
|
|
23499
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
22191
23500
|
}, "strip", zod.ZodTypeAny, {
|
|
22192
23501
|
silkscreenFontSize?: number | undefined;
|
|
23502
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23503
|
+
offsetX: number;
|
|
23504
|
+
offsetY: number;
|
|
23505
|
+
} | undefined;
|
|
23506
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22193
23507
|
}, {
|
|
22194
23508
|
silkscreenFontSize?: string | number | undefined;
|
|
23509
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23510
|
+
offsetX: number;
|
|
23511
|
+
offsetY: number;
|
|
23512
|
+
} | undefined;
|
|
23513
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22195
23514
|
}>>;
|
|
22196
23515
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
22197
23516
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -22223,6 +23542,11 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
22223
23542
|
pcbMarginY?: number | undefined;
|
|
22224
23543
|
pcbStyle?: {
|
|
22225
23544
|
silkscreenFontSize?: number | undefined;
|
|
23545
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23546
|
+
offsetX: number;
|
|
23547
|
+
offsetY: number;
|
|
23548
|
+
} | undefined;
|
|
23549
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22226
23550
|
} | undefined;
|
|
22227
23551
|
pcbRelative?: boolean | undefined;
|
|
22228
23552
|
relative?: boolean | undefined;
|
|
@@ -22252,6 +23576,11 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
22252
23576
|
pcbMarginY?: string | number | undefined;
|
|
22253
23577
|
pcbStyle?: {
|
|
22254
23578
|
silkscreenFontSize?: string | number | undefined;
|
|
23579
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23580
|
+
offsetX: number;
|
|
23581
|
+
offsetY: number;
|
|
23582
|
+
} | undefined;
|
|
23583
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22255
23584
|
} | undefined;
|
|
22256
23585
|
pcbRelative?: boolean | undefined;
|
|
22257
23586
|
relative?: boolean | undefined;
|
|
@@ -22285,10 +23614,31 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
22285
23614
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22286
23615
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
22287
23616
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23617
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
23618
|
+
offsetX: zod.ZodNumber;
|
|
23619
|
+
offsetY: zod.ZodNumber;
|
|
23620
|
+
}, "strip", zod.ZodTypeAny, {
|
|
23621
|
+
offsetX: number;
|
|
23622
|
+
offsetY: number;
|
|
23623
|
+
}, {
|
|
23624
|
+
offsetX: number;
|
|
23625
|
+
offsetY: number;
|
|
23626
|
+
}>]>>;
|
|
23627
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
22288
23628
|
}, "strip", zod.ZodTypeAny, {
|
|
22289
23629
|
silkscreenFontSize?: number | undefined;
|
|
23630
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23631
|
+
offsetX: number;
|
|
23632
|
+
offsetY: number;
|
|
23633
|
+
} | undefined;
|
|
23634
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22290
23635
|
}, {
|
|
22291
23636
|
silkscreenFontSize?: string | number | undefined;
|
|
23637
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23638
|
+
offsetX: number;
|
|
23639
|
+
offsetY: number;
|
|
23640
|
+
} | undefined;
|
|
23641
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22292
23642
|
}>>;
|
|
22293
23643
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
22294
23644
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -22321,6 +23671,11 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
22321
23671
|
pcbMarginY?: number | undefined;
|
|
22322
23672
|
pcbStyle?: {
|
|
22323
23673
|
silkscreenFontSize?: number | undefined;
|
|
23674
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23675
|
+
offsetX: number;
|
|
23676
|
+
offsetY: number;
|
|
23677
|
+
} | undefined;
|
|
23678
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22324
23679
|
} | undefined;
|
|
22325
23680
|
pcbRelative?: boolean | undefined;
|
|
22326
23681
|
relative?: boolean | undefined;
|
|
@@ -22350,6 +23705,11 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
22350
23705
|
pcbMarginY?: string | number | undefined;
|
|
22351
23706
|
pcbStyle?: {
|
|
22352
23707
|
silkscreenFontSize?: string | number | undefined;
|
|
23708
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23709
|
+
offsetX: number;
|
|
23710
|
+
offsetY: number;
|
|
23711
|
+
} | undefined;
|
|
23712
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22353
23713
|
} | undefined;
|
|
22354
23714
|
pcbRelative?: boolean | undefined;
|
|
22355
23715
|
relative?: boolean | undefined;
|
|
@@ -22382,10 +23742,31 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
22382
23742
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22383
23743
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
22384
23744
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23745
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
23746
|
+
offsetX: zod.ZodNumber;
|
|
23747
|
+
offsetY: zod.ZodNumber;
|
|
23748
|
+
}, "strip", zod.ZodTypeAny, {
|
|
23749
|
+
offsetX: number;
|
|
23750
|
+
offsetY: number;
|
|
23751
|
+
}, {
|
|
23752
|
+
offsetX: number;
|
|
23753
|
+
offsetY: number;
|
|
23754
|
+
}>]>>;
|
|
23755
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
22385
23756
|
}, "strip", zod.ZodTypeAny, {
|
|
22386
23757
|
silkscreenFontSize?: number | undefined;
|
|
23758
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23759
|
+
offsetX: number;
|
|
23760
|
+
offsetY: number;
|
|
23761
|
+
} | undefined;
|
|
23762
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22387
23763
|
}, {
|
|
22388
23764
|
silkscreenFontSize?: string | number | undefined;
|
|
23765
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23766
|
+
offsetX: number;
|
|
23767
|
+
offsetY: number;
|
|
23768
|
+
} | undefined;
|
|
23769
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22389
23770
|
}>>;
|
|
22390
23771
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
22391
23772
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -22417,6 +23798,11 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
22417
23798
|
pcbMarginY?: number | undefined;
|
|
22418
23799
|
pcbStyle?: {
|
|
22419
23800
|
silkscreenFontSize?: number | undefined;
|
|
23801
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23802
|
+
offsetX: number;
|
|
23803
|
+
offsetY: number;
|
|
23804
|
+
} | undefined;
|
|
23805
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22420
23806
|
} | undefined;
|
|
22421
23807
|
pcbRelative?: boolean | undefined;
|
|
22422
23808
|
relative?: boolean | undefined;
|
|
@@ -22445,6 +23831,11 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
22445
23831
|
pcbMarginY?: string | number | undefined;
|
|
22446
23832
|
pcbStyle?: {
|
|
22447
23833
|
silkscreenFontSize?: string | number | undefined;
|
|
23834
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23835
|
+
offsetX: number;
|
|
23836
|
+
offsetY: number;
|
|
23837
|
+
} | undefined;
|
|
23838
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22448
23839
|
} | undefined;
|
|
22449
23840
|
pcbRelative?: boolean | undefined;
|
|
22450
23841
|
relative?: boolean | undefined;
|
|
@@ -22476,10 +23867,31 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
22476
23867
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22477
23868
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
22478
23869
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23870
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
23871
|
+
offsetX: zod.ZodNumber;
|
|
23872
|
+
offsetY: zod.ZodNumber;
|
|
23873
|
+
}, "strip", zod.ZodTypeAny, {
|
|
23874
|
+
offsetX: number;
|
|
23875
|
+
offsetY: number;
|
|
23876
|
+
}, {
|
|
23877
|
+
offsetX: number;
|
|
23878
|
+
offsetY: number;
|
|
23879
|
+
}>]>>;
|
|
23880
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
22479
23881
|
}, "strip", zod.ZodTypeAny, {
|
|
22480
23882
|
silkscreenFontSize?: number | undefined;
|
|
23883
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23884
|
+
offsetX: number;
|
|
23885
|
+
offsetY: number;
|
|
23886
|
+
} | undefined;
|
|
23887
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22481
23888
|
}, {
|
|
22482
23889
|
silkscreenFontSize?: string | number | undefined;
|
|
23890
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23891
|
+
offsetX: number;
|
|
23892
|
+
offsetY: number;
|
|
23893
|
+
} | undefined;
|
|
23894
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22483
23895
|
}>>;
|
|
22484
23896
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
22485
23897
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -22519,6 +23931,11 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
22519
23931
|
pcbMarginY?: number | undefined;
|
|
22520
23932
|
pcbStyle?: {
|
|
22521
23933
|
silkscreenFontSize?: number | undefined;
|
|
23934
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23935
|
+
offsetX: number;
|
|
23936
|
+
offsetY: number;
|
|
23937
|
+
} | undefined;
|
|
23938
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22522
23939
|
} | undefined;
|
|
22523
23940
|
pcbRelative?: boolean | undefined;
|
|
22524
23941
|
relative?: boolean | undefined;
|
|
@@ -22548,6 +23965,11 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
22548
23965
|
pcbMarginY?: string | number | undefined;
|
|
22549
23966
|
pcbStyle?: {
|
|
22550
23967
|
silkscreenFontSize?: string | number | undefined;
|
|
23968
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
23969
|
+
offsetX: number;
|
|
23970
|
+
offsetY: number;
|
|
23971
|
+
} | undefined;
|
|
23972
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
22551
23973
|
} | undefined;
|
|
22552
23974
|
pcbRelative?: boolean | undefined;
|
|
22553
23975
|
relative?: boolean | undefined;
|
|
@@ -23011,10 +24433,31 @@ declare class Via extends PrimitiveComponent<typeof viaProps> {
|
|
|
23011
24433
|
pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23012
24434
|
pcbStyle: z.ZodOptional<z.ZodObject<{
|
|
23013
24435
|
silkscreenFontSize: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24436
|
+
silkscreenTextPosition: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["centered", "outside", "none"]>, z.ZodObject<{
|
|
24437
|
+
offsetX: z.ZodNumber;
|
|
24438
|
+
offsetY: z.ZodNumber;
|
|
24439
|
+
}, "strip", z.ZodTypeAny, {
|
|
24440
|
+
offsetX: number;
|
|
24441
|
+
offsetY: number;
|
|
24442
|
+
}, {
|
|
24443
|
+
offsetX: number;
|
|
24444
|
+
offsetY: number;
|
|
24445
|
+
}>]>>;
|
|
24446
|
+
silkscreenTextVisibility: z.ZodOptional<z.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
23014
24447
|
}, "strip", z.ZodTypeAny, {
|
|
23015
24448
|
silkscreenFontSize?: number | undefined;
|
|
24449
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
24450
|
+
offsetX: number;
|
|
24451
|
+
offsetY: number;
|
|
24452
|
+
} | undefined;
|
|
24453
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23016
24454
|
}, {
|
|
23017
24455
|
silkscreenFontSize?: string | number | undefined;
|
|
24456
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
24457
|
+
offsetX: number;
|
|
24458
|
+
offsetY: number;
|
|
24459
|
+
} | undefined;
|
|
24460
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23018
24461
|
}>>;
|
|
23019
24462
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23020
24463
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -23084,6 +24527,11 @@ declare class Via extends PrimitiveComponent<typeof viaProps> {
|
|
|
23084
24527
|
pcbMarginY?: number | undefined;
|
|
23085
24528
|
pcbStyle?: {
|
|
23086
24529
|
silkscreenFontSize?: number | undefined;
|
|
24530
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
24531
|
+
offsetX: number;
|
|
24532
|
+
offsetY: number;
|
|
24533
|
+
} | undefined;
|
|
24534
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23087
24535
|
} | undefined;
|
|
23088
24536
|
pcbRelative?: boolean | undefined;
|
|
23089
24537
|
relative?: boolean | undefined;
|
|
@@ -23128,6 +24576,11 @@ declare class Via extends PrimitiveComponent<typeof viaProps> {
|
|
|
23128
24576
|
pcbMarginY?: string | number | undefined;
|
|
23129
24577
|
pcbStyle?: {
|
|
23130
24578
|
silkscreenFontSize?: string | number | undefined;
|
|
24579
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
24580
|
+
offsetX: number;
|
|
24581
|
+
offsetY: number;
|
|
24582
|
+
} | undefined;
|
|
24583
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23131
24584
|
} | undefined;
|
|
23132
24585
|
pcbRelative?: boolean | undefined;
|
|
23133
24586
|
relative?: boolean | undefined;
|
|
@@ -23247,10 +24700,31 @@ declare class Cutout extends PrimitiveComponent<typeof cutoutProps> {
|
|
|
23247
24700
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23248
24701
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
23249
24702
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
24703
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
24704
|
+
offsetX: zod.ZodNumber;
|
|
24705
|
+
offsetY: zod.ZodNumber;
|
|
24706
|
+
}, "strip", zod.ZodTypeAny, {
|
|
24707
|
+
offsetX: number;
|
|
24708
|
+
offsetY: number;
|
|
24709
|
+
}, {
|
|
24710
|
+
offsetX: number;
|
|
24711
|
+
offsetY: number;
|
|
24712
|
+
}>]>>;
|
|
24713
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
23250
24714
|
}, "strip", zod.ZodTypeAny, {
|
|
23251
24715
|
silkscreenFontSize?: number | undefined;
|
|
24716
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
24717
|
+
offsetX: number;
|
|
24718
|
+
offsetY: number;
|
|
24719
|
+
} | undefined;
|
|
24720
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23252
24721
|
}, {
|
|
23253
24722
|
silkscreenFontSize?: string | number | undefined;
|
|
24723
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
24724
|
+
offsetX: number;
|
|
24725
|
+
offsetY: number;
|
|
24726
|
+
} | undefined;
|
|
24727
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23254
24728
|
}>>;
|
|
23255
24729
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
23256
24730
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -23277,6 +24751,11 @@ declare class Cutout extends PrimitiveComponent<typeof cutoutProps> {
|
|
|
23277
24751
|
pcbMarginY?: number | undefined;
|
|
23278
24752
|
pcbStyle?: {
|
|
23279
24753
|
silkscreenFontSize?: number | undefined;
|
|
24754
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
24755
|
+
offsetX: number;
|
|
24756
|
+
offsetY: number;
|
|
24757
|
+
} | undefined;
|
|
24758
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23280
24759
|
} | undefined;
|
|
23281
24760
|
pcbRelative?: boolean | undefined;
|
|
23282
24761
|
relative?: boolean | undefined;
|
|
@@ -23299,6 +24778,11 @@ declare class Cutout extends PrimitiveComponent<typeof cutoutProps> {
|
|
|
23299
24778
|
pcbMarginY?: string | number | undefined;
|
|
23300
24779
|
pcbStyle?: {
|
|
23301
24780
|
silkscreenFontSize?: string | number | undefined;
|
|
24781
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
24782
|
+
offsetX: number;
|
|
24783
|
+
offsetY: number;
|
|
24784
|
+
} | undefined;
|
|
24785
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23302
24786
|
} | undefined;
|
|
23303
24787
|
pcbRelative?: boolean | undefined;
|
|
23304
24788
|
relative?: boolean | undefined;
|
|
@@ -23328,10 +24812,31 @@ declare class Cutout extends PrimitiveComponent<typeof cutoutProps> {
|
|
|
23328
24812
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23329
24813
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
23330
24814
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
24815
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
24816
|
+
offsetX: zod.ZodNumber;
|
|
24817
|
+
offsetY: zod.ZodNumber;
|
|
24818
|
+
}, "strip", zod.ZodTypeAny, {
|
|
24819
|
+
offsetX: number;
|
|
24820
|
+
offsetY: number;
|
|
24821
|
+
}, {
|
|
24822
|
+
offsetX: number;
|
|
24823
|
+
offsetY: number;
|
|
24824
|
+
}>]>>;
|
|
24825
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
23331
24826
|
}, "strip", zod.ZodTypeAny, {
|
|
23332
24827
|
silkscreenFontSize?: number | undefined;
|
|
24828
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
24829
|
+
offsetX: number;
|
|
24830
|
+
offsetY: number;
|
|
24831
|
+
} | undefined;
|
|
24832
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23333
24833
|
}, {
|
|
23334
24834
|
silkscreenFontSize?: string | number | undefined;
|
|
24835
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
24836
|
+
offsetX: number;
|
|
24837
|
+
offsetY: number;
|
|
24838
|
+
} | undefined;
|
|
24839
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23335
24840
|
}>>;
|
|
23336
24841
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
23337
24842
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -23356,6 +24861,11 @@ declare class Cutout extends PrimitiveComponent<typeof cutoutProps> {
|
|
|
23356
24861
|
pcbMarginY?: number | undefined;
|
|
23357
24862
|
pcbStyle?: {
|
|
23358
24863
|
silkscreenFontSize?: number | undefined;
|
|
24864
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
24865
|
+
offsetX: number;
|
|
24866
|
+
offsetY: number;
|
|
24867
|
+
} | undefined;
|
|
24868
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23359
24869
|
} | undefined;
|
|
23360
24870
|
pcbRelative?: boolean | undefined;
|
|
23361
24871
|
relative?: boolean | undefined;
|
|
@@ -23377,6 +24887,11 @@ declare class Cutout extends PrimitiveComponent<typeof cutoutProps> {
|
|
|
23377
24887
|
pcbMarginY?: string | number | undefined;
|
|
23378
24888
|
pcbStyle?: {
|
|
23379
24889
|
silkscreenFontSize?: string | number | undefined;
|
|
24890
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
24891
|
+
offsetX: number;
|
|
24892
|
+
offsetY: number;
|
|
24893
|
+
} | undefined;
|
|
24894
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23380
24895
|
} | undefined;
|
|
23381
24896
|
pcbRelative?: boolean | undefined;
|
|
23382
24897
|
relative?: boolean | undefined;
|
|
@@ -23406,10 +24921,31 @@ declare class Cutout extends PrimitiveComponent<typeof cutoutProps> {
|
|
|
23406
24921
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23407
24922
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
23408
24923
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
24924
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
24925
|
+
offsetX: zod.ZodNumber;
|
|
24926
|
+
offsetY: zod.ZodNumber;
|
|
24927
|
+
}, "strip", zod.ZodTypeAny, {
|
|
24928
|
+
offsetX: number;
|
|
24929
|
+
offsetY: number;
|
|
24930
|
+
}, {
|
|
24931
|
+
offsetX: number;
|
|
24932
|
+
offsetY: number;
|
|
24933
|
+
}>]>>;
|
|
24934
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
23409
24935
|
}, "strip", zod.ZodTypeAny, {
|
|
23410
24936
|
silkscreenFontSize?: number | undefined;
|
|
24937
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
24938
|
+
offsetX: number;
|
|
24939
|
+
offsetY: number;
|
|
24940
|
+
} | undefined;
|
|
24941
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23411
24942
|
}, {
|
|
23412
24943
|
silkscreenFontSize?: string | number | undefined;
|
|
24944
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
24945
|
+
offsetX: number;
|
|
24946
|
+
offsetY: number;
|
|
24947
|
+
} | undefined;
|
|
24948
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23413
24949
|
}>>;
|
|
23414
24950
|
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
23415
24951
|
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
@@ -23446,6 +24982,11 @@ declare class Cutout extends PrimitiveComponent<typeof cutoutProps> {
|
|
|
23446
24982
|
pcbMarginY?: number | undefined;
|
|
23447
24983
|
pcbStyle?: {
|
|
23448
24984
|
silkscreenFontSize?: number | undefined;
|
|
24985
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
24986
|
+
offsetX: number;
|
|
24987
|
+
offsetY: number;
|
|
24988
|
+
} | undefined;
|
|
24989
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23449
24990
|
} | undefined;
|
|
23450
24991
|
pcbRelative?: boolean | undefined;
|
|
23451
24992
|
relative?: boolean | undefined;
|
|
@@ -23470,6 +25011,11 @@ declare class Cutout extends PrimitiveComponent<typeof cutoutProps> {
|
|
|
23470
25011
|
pcbMarginY?: string | number | undefined;
|
|
23471
25012
|
pcbStyle?: {
|
|
23472
25013
|
silkscreenFontSize?: string | number | undefined;
|
|
25014
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
25015
|
+
offsetX: number;
|
|
25016
|
+
offsetY: number;
|
|
25017
|
+
} | undefined;
|
|
25018
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23473
25019
|
} | undefined;
|
|
23474
25020
|
pcbRelative?: boolean | undefined;
|
|
23475
25021
|
relative?: boolean | undefined;
|
|
@@ -23521,10 +25067,31 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
23521
25067
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23522
25068
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
23523
25069
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
25070
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
25071
|
+
offsetX: zod.ZodNumber;
|
|
25072
|
+
offsetY: zod.ZodNumber;
|
|
25073
|
+
}, "strip", zod.ZodTypeAny, {
|
|
25074
|
+
offsetX: number;
|
|
25075
|
+
offsetY: number;
|
|
25076
|
+
}, {
|
|
25077
|
+
offsetX: number;
|
|
25078
|
+
offsetY: number;
|
|
25079
|
+
}>]>>;
|
|
25080
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
23524
25081
|
}, "strip", zod.ZodTypeAny, {
|
|
23525
25082
|
silkscreenFontSize?: number | undefined;
|
|
25083
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
25084
|
+
offsetX: number;
|
|
25085
|
+
offsetY: number;
|
|
25086
|
+
} | undefined;
|
|
25087
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23526
25088
|
}, {
|
|
23527
25089
|
silkscreenFontSize?: string | number | undefined;
|
|
25090
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
25091
|
+
offsetX: number;
|
|
25092
|
+
offsetY: number;
|
|
25093
|
+
} | undefined;
|
|
25094
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
23528
25095
|
}>>;
|
|
23529
25096
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23530
25097
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -24192,6 +25759,11 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
24192
25759
|
pcbMarginY?: number | undefined;
|
|
24193
25760
|
pcbStyle?: {
|
|
24194
25761
|
silkscreenFontSize?: number | undefined;
|
|
25762
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
25763
|
+
offsetX: number;
|
|
25764
|
+
offsetY: number;
|
|
25765
|
+
} | undefined;
|
|
25766
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
24195
25767
|
} | undefined;
|
|
24196
25768
|
pcbRelative?: boolean | undefined;
|
|
24197
25769
|
relative?: boolean | undefined;
|
|
@@ -24383,6 +25955,11 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
24383
25955
|
pcbMarginY?: string | number | undefined;
|
|
24384
25956
|
pcbStyle?: {
|
|
24385
25957
|
silkscreenFontSize?: string | number | undefined;
|
|
25958
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
25959
|
+
offsetX: number;
|
|
25960
|
+
offsetY: number;
|
|
25961
|
+
} | undefined;
|
|
25962
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
24386
25963
|
} | undefined;
|
|
24387
25964
|
pcbRelative?: boolean | undefined;
|
|
24388
25965
|
relative?: boolean | undefined;
|
|
@@ -24579,10 +26156,31 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
24579
26156
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
24580
26157
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
24581
26158
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
26159
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
26160
|
+
offsetX: zod.ZodNumber;
|
|
26161
|
+
offsetY: zod.ZodNumber;
|
|
26162
|
+
}, "strip", zod.ZodTypeAny, {
|
|
26163
|
+
offsetX: number;
|
|
26164
|
+
offsetY: number;
|
|
26165
|
+
}, {
|
|
26166
|
+
offsetX: number;
|
|
26167
|
+
offsetY: number;
|
|
26168
|
+
}>]>>;
|
|
26169
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
24582
26170
|
}, "strip", zod.ZodTypeAny, {
|
|
24583
26171
|
silkscreenFontSize?: number | undefined;
|
|
26172
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
26173
|
+
offsetX: number;
|
|
26174
|
+
offsetY: number;
|
|
26175
|
+
} | undefined;
|
|
26176
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
24584
26177
|
}, {
|
|
24585
26178
|
silkscreenFontSize?: string | number | undefined;
|
|
26179
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
26180
|
+
offsetX: number;
|
|
26181
|
+
offsetY: number;
|
|
26182
|
+
} | undefined;
|
|
26183
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
24586
26184
|
}>>;
|
|
24587
26185
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
24588
26186
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -25393,6 +26991,11 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
25393
26991
|
pcbMarginY?: number | undefined;
|
|
25394
26992
|
pcbStyle?: {
|
|
25395
26993
|
silkscreenFontSize?: number | undefined;
|
|
26994
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
26995
|
+
offsetX: number;
|
|
26996
|
+
offsetY: number;
|
|
26997
|
+
} | undefined;
|
|
26998
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
25396
26999
|
} | undefined;
|
|
25397
27000
|
pcbRelative?: boolean | undefined;
|
|
25398
27001
|
relative?: boolean | undefined;
|
|
@@ -25632,6 +27235,11 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
25632
27235
|
pcbMarginY?: string | number | undefined;
|
|
25633
27236
|
pcbStyle?: {
|
|
25634
27237
|
silkscreenFontSize?: string | number | undefined;
|
|
27238
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
27239
|
+
offsetX: number;
|
|
27240
|
+
offsetY: number;
|
|
27241
|
+
} | undefined;
|
|
27242
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
25635
27243
|
} | undefined;
|
|
25636
27244
|
pcbRelative?: boolean | undefined;
|
|
25637
27245
|
relative?: boolean | undefined;
|
|
@@ -25878,10 +27486,31 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
25878
27486
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
25879
27487
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
25880
27488
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
27489
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
27490
|
+
offsetX: zod.ZodNumber;
|
|
27491
|
+
offsetY: zod.ZodNumber;
|
|
27492
|
+
}, "strip", zod.ZodTypeAny, {
|
|
27493
|
+
offsetX: number;
|
|
27494
|
+
offsetY: number;
|
|
27495
|
+
}, {
|
|
27496
|
+
offsetX: number;
|
|
27497
|
+
offsetY: number;
|
|
27498
|
+
}>]>>;
|
|
27499
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
25881
27500
|
}, "strip", zod.ZodTypeAny, {
|
|
25882
27501
|
silkscreenFontSize?: number | undefined;
|
|
27502
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
27503
|
+
offsetX: number;
|
|
27504
|
+
offsetY: number;
|
|
27505
|
+
} | undefined;
|
|
27506
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
25883
27507
|
}, {
|
|
25884
27508
|
silkscreenFontSize?: string | number | undefined;
|
|
27509
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
27510
|
+
offsetX: number;
|
|
27511
|
+
offsetY: number;
|
|
27512
|
+
} | undefined;
|
|
27513
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
25885
27514
|
}>>;
|
|
25886
27515
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
25887
27516
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -26550,6 +28179,11 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
26550
28179
|
pcbMarginY?: number | undefined;
|
|
26551
28180
|
pcbStyle?: {
|
|
26552
28181
|
silkscreenFontSize?: number | undefined;
|
|
28182
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
28183
|
+
offsetX: number;
|
|
28184
|
+
offsetY: number;
|
|
28185
|
+
} | undefined;
|
|
28186
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
26553
28187
|
} | undefined;
|
|
26554
28188
|
pcbRelative?: boolean | undefined;
|
|
26555
28189
|
relative?: boolean | undefined;
|
|
@@ -26740,6 +28374,11 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
26740
28374
|
pcbMarginY?: string | number | undefined;
|
|
26741
28375
|
pcbStyle?: {
|
|
26742
28376
|
silkscreenFontSize?: string | number | undefined;
|
|
28377
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
28378
|
+
offsetX: number;
|
|
28379
|
+
offsetY: number;
|
|
28380
|
+
} | undefined;
|
|
28381
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
26743
28382
|
} | undefined;
|
|
26744
28383
|
pcbRelative?: boolean | undefined;
|
|
26745
28384
|
relative?: boolean | undefined;
|
|
@@ -26934,10 +28573,31 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
26934
28573
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
26935
28574
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
26936
28575
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
28576
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
28577
|
+
offsetX: zod.ZodNumber;
|
|
28578
|
+
offsetY: zod.ZodNumber;
|
|
28579
|
+
}, "strip", zod.ZodTypeAny, {
|
|
28580
|
+
offsetX: number;
|
|
28581
|
+
offsetY: number;
|
|
28582
|
+
}, {
|
|
28583
|
+
offsetX: number;
|
|
28584
|
+
offsetY: number;
|
|
28585
|
+
}>]>>;
|
|
28586
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
26937
28587
|
}, "strip", zod.ZodTypeAny, {
|
|
26938
28588
|
silkscreenFontSize?: number | undefined;
|
|
28589
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
28590
|
+
offsetX: number;
|
|
28591
|
+
offsetY: number;
|
|
28592
|
+
} | undefined;
|
|
28593
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
26939
28594
|
}, {
|
|
26940
28595
|
silkscreenFontSize?: string | number | undefined;
|
|
28596
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
28597
|
+
offsetX: number;
|
|
28598
|
+
offsetY: number;
|
|
28599
|
+
} | undefined;
|
|
28600
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
26941
28601
|
}>>;
|
|
26942
28602
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
26943
28603
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -27606,6 +29266,11 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
27606
29266
|
pcbMarginY?: number | undefined;
|
|
27607
29267
|
pcbStyle?: {
|
|
27608
29268
|
silkscreenFontSize?: number | undefined;
|
|
29269
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
29270
|
+
offsetX: number;
|
|
29271
|
+
offsetY: number;
|
|
29272
|
+
} | undefined;
|
|
29273
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
27609
29274
|
} | undefined;
|
|
27610
29275
|
pcbRelative?: boolean | undefined;
|
|
27611
29276
|
relative?: boolean | undefined;
|
|
@@ -27797,6 +29462,11 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
27797
29462
|
pcbMarginY?: string | number | undefined;
|
|
27798
29463
|
pcbStyle?: {
|
|
27799
29464
|
silkscreenFontSize?: string | number | undefined;
|
|
29465
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
29466
|
+
offsetX: number;
|
|
29467
|
+
offsetY: number;
|
|
29468
|
+
} | undefined;
|
|
29469
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
27800
29470
|
} | undefined;
|
|
27801
29471
|
pcbRelative?: boolean | undefined;
|
|
27802
29472
|
relative?: boolean | undefined;
|
|
@@ -27993,10 +29663,31 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
27993
29663
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
27994
29664
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
27995
29665
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
29666
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
29667
|
+
offsetX: zod.ZodNumber;
|
|
29668
|
+
offsetY: zod.ZodNumber;
|
|
29669
|
+
}, "strip", zod.ZodTypeAny, {
|
|
29670
|
+
offsetX: number;
|
|
29671
|
+
offsetY: number;
|
|
29672
|
+
}, {
|
|
29673
|
+
offsetX: number;
|
|
29674
|
+
offsetY: number;
|
|
29675
|
+
}>]>>;
|
|
29676
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
27996
29677
|
}, "strip", zod.ZodTypeAny, {
|
|
27997
29678
|
silkscreenFontSize?: number | undefined;
|
|
29679
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
29680
|
+
offsetX: number;
|
|
29681
|
+
offsetY: number;
|
|
29682
|
+
} | undefined;
|
|
29683
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
27998
29684
|
}, {
|
|
27999
29685
|
silkscreenFontSize?: string | number | undefined;
|
|
29686
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
29687
|
+
offsetX: number;
|
|
29688
|
+
offsetY: number;
|
|
29689
|
+
} | undefined;
|
|
29690
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
28000
29691
|
}>>;
|
|
28001
29692
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
28002
29693
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -28663,6 +30354,11 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
28663
30354
|
pcbMarginY?: number | undefined;
|
|
28664
30355
|
pcbStyle?: {
|
|
28665
30356
|
silkscreenFontSize?: number | undefined;
|
|
30357
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
30358
|
+
offsetX: number;
|
|
30359
|
+
offsetY: number;
|
|
30360
|
+
} | undefined;
|
|
30361
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
28666
30362
|
} | undefined;
|
|
28667
30363
|
pcbRelative?: boolean | undefined;
|
|
28668
30364
|
relative?: boolean | undefined;
|
|
@@ -28852,6 +30548,11 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
28852
30548
|
pcbMarginY?: string | number | undefined;
|
|
28853
30549
|
pcbStyle?: {
|
|
28854
30550
|
silkscreenFontSize?: string | number | undefined;
|
|
30551
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
30552
|
+
offsetX: number;
|
|
30553
|
+
offsetY: number;
|
|
30554
|
+
} | undefined;
|
|
30555
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
28855
30556
|
} | undefined;
|
|
28856
30557
|
pcbRelative?: boolean | undefined;
|
|
28857
30558
|
relative?: boolean | undefined;
|
|
@@ -29045,10 +30746,31 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
29045
30746
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
29046
30747
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
29047
30748
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
30749
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
30750
|
+
offsetX: zod.ZodNumber;
|
|
30751
|
+
offsetY: zod.ZodNumber;
|
|
30752
|
+
}, "strip", zod.ZodTypeAny, {
|
|
30753
|
+
offsetX: number;
|
|
30754
|
+
offsetY: number;
|
|
30755
|
+
}, {
|
|
30756
|
+
offsetX: number;
|
|
30757
|
+
offsetY: number;
|
|
30758
|
+
}>]>>;
|
|
30759
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
29048
30760
|
}, "strip", zod.ZodTypeAny, {
|
|
29049
30761
|
silkscreenFontSize?: number | undefined;
|
|
30762
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
30763
|
+
offsetX: number;
|
|
30764
|
+
offsetY: number;
|
|
30765
|
+
} | undefined;
|
|
30766
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
29050
30767
|
}, {
|
|
29051
30768
|
silkscreenFontSize?: string | number | undefined;
|
|
30769
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
30770
|
+
offsetX: number;
|
|
30771
|
+
offsetY: number;
|
|
30772
|
+
} | undefined;
|
|
30773
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
29052
30774
|
}>>;
|
|
29053
30775
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
29054
30776
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -29961,6 +31683,11 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
29961
31683
|
pcbMarginY?: number | undefined;
|
|
29962
31684
|
pcbStyle?: {
|
|
29963
31685
|
silkscreenFontSize?: number | undefined;
|
|
31686
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
31687
|
+
offsetX: number;
|
|
31688
|
+
offsetY: number;
|
|
31689
|
+
} | undefined;
|
|
31690
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
29964
31691
|
} | undefined;
|
|
29965
31692
|
pcbRelative?: boolean | undefined;
|
|
29966
31693
|
relative?: boolean | undefined;
|
|
@@ -30225,6 +31952,11 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
30225
31952
|
pcbMarginY?: string | number | undefined;
|
|
30226
31953
|
pcbStyle?: {
|
|
30227
31954
|
silkscreenFontSize?: string | number | undefined;
|
|
31955
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
31956
|
+
offsetX: number;
|
|
31957
|
+
offsetY: number;
|
|
31958
|
+
} | undefined;
|
|
31959
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
30228
31960
|
} | undefined;
|
|
30229
31961
|
pcbRelative?: boolean | undefined;
|
|
30230
31962
|
relative?: boolean | undefined;
|
|
@@ -30495,10 +32227,31 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
30495
32227
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
30496
32228
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
30497
32229
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
32230
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
32231
|
+
offsetX: zod.ZodNumber;
|
|
32232
|
+
offsetY: zod.ZodNumber;
|
|
32233
|
+
}, "strip", zod.ZodTypeAny, {
|
|
32234
|
+
offsetX: number;
|
|
32235
|
+
offsetY: number;
|
|
32236
|
+
}, {
|
|
32237
|
+
offsetX: number;
|
|
32238
|
+
offsetY: number;
|
|
32239
|
+
}>]>>;
|
|
32240
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
30498
32241
|
}, "strip", zod.ZodTypeAny, {
|
|
30499
32242
|
silkscreenFontSize?: number | undefined;
|
|
32243
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
32244
|
+
offsetX: number;
|
|
32245
|
+
offsetY: number;
|
|
32246
|
+
} | undefined;
|
|
32247
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
30500
32248
|
}, {
|
|
30501
32249
|
silkscreenFontSize?: string | number | undefined;
|
|
32250
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
32251
|
+
offsetX: number;
|
|
32252
|
+
offsetY: number;
|
|
32253
|
+
} | undefined;
|
|
32254
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
30502
32255
|
}>>;
|
|
30503
32256
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
30504
32257
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -31171,6 +32924,11 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
31171
32924
|
pcbMarginY?: number | undefined;
|
|
31172
32925
|
pcbStyle?: {
|
|
31173
32926
|
silkscreenFontSize?: number | undefined;
|
|
32927
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
32928
|
+
offsetX: number;
|
|
32929
|
+
offsetY: number;
|
|
32930
|
+
} | undefined;
|
|
32931
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
31174
32932
|
} | undefined;
|
|
31175
32933
|
pcbRelative?: boolean | undefined;
|
|
31176
32934
|
relative?: boolean | undefined;
|
|
@@ -31365,6 +33123,11 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
31365
33123
|
pcbMarginY?: string | number | undefined;
|
|
31366
33124
|
pcbStyle?: {
|
|
31367
33125
|
silkscreenFontSize?: string | number | undefined;
|
|
33126
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
33127
|
+
offsetX: number;
|
|
33128
|
+
offsetY: number;
|
|
33129
|
+
} | undefined;
|
|
33130
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
31368
33131
|
} | undefined;
|
|
31369
33132
|
pcbRelative?: boolean | undefined;
|
|
31370
33133
|
relative?: boolean | undefined;
|
|
@@ -31563,10 +33326,31 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
31563
33326
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
31564
33327
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
31565
33328
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
33329
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
33330
|
+
offsetX: zod.ZodNumber;
|
|
33331
|
+
offsetY: zod.ZodNumber;
|
|
33332
|
+
}, "strip", zod.ZodTypeAny, {
|
|
33333
|
+
offsetX: number;
|
|
33334
|
+
offsetY: number;
|
|
33335
|
+
}, {
|
|
33336
|
+
offsetX: number;
|
|
33337
|
+
offsetY: number;
|
|
33338
|
+
}>]>>;
|
|
33339
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
31566
33340
|
}, "strip", zod.ZodTypeAny, {
|
|
31567
33341
|
silkscreenFontSize?: number | undefined;
|
|
33342
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
33343
|
+
offsetX: number;
|
|
33344
|
+
offsetY: number;
|
|
33345
|
+
} | undefined;
|
|
33346
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
31568
33347
|
}, {
|
|
31569
33348
|
silkscreenFontSize?: string | number | undefined;
|
|
33349
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
33350
|
+
offsetX: number;
|
|
33351
|
+
offsetY: number;
|
|
33352
|
+
} | undefined;
|
|
33353
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
31570
33354
|
}>>;
|
|
31571
33355
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
31572
33356
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -32233,6 +34017,11 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
32233
34017
|
pcbMarginY?: number | undefined;
|
|
32234
34018
|
pcbStyle?: {
|
|
32235
34019
|
silkscreenFontSize?: number | undefined;
|
|
34020
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
34021
|
+
offsetX: number;
|
|
34022
|
+
offsetY: number;
|
|
34023
|
+
} | undefined;
|
|
34024
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
32236
34025
|
} | undefined;
|
|
32237
34026
|
pcbRelative?: boolean | undefined;
|
|
32238
34027
|
relative?: boolean | undefined;
|
|
@@ -32422,6 +34211,11 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
32422
34211
|
pcbMarginY?: string | number | undefined;
|
|
32423
34212
|
pcbStyle?: {
|
|
32424
34213
|
silkscreenFontSize?: string | number | undefined;
|
|
34214
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
34215
|
+
offsetX: number;
|
|
34216
|
+
offsetY: number;
|
|
34217
|
+
} | undefined;
|
|
34218
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
32425
34219
|
} | undefined;
|
|
32426
34220
|
pcbRelative?: boolean | undefined;
|
|
32427
34221
|
relative?: boolean | undefined;
|
|
@@ -32621,10 +34415,31 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
32621
34415
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
32622
34416
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
32623
34417
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
34418
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
34419
|
+
offsetX: zod.ZodNumber;
|
|
34420
|
+
offsetY: zod.ZodNumber;
|
|
34421
|
+
}, "strip", zod.ZodTypeAny, {
|
|
34422
|
+
offsetX: number;
|
|
34423
|
+
offsetY: number;
|
|
34424
|
+
}, {
|
|
34425
|
+
offsetX: number;
|
|
34426
|
+
offsetY: number;
|
|
34427
|
+
}>]>>;
|
|
34428
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
32624
34429
|
}, "strip", zod.ZodTypeAny, {
|
|
32625
34430
|
silkscreenFontSize?: number | undefined;
|
|
34431
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
34432
|
+
offsetX: number;
|
|
34433
|
+
offsetY: number;
|
|
34434
|
+
} | undefined;
|
|
34435
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
32626
34436
|
}, {
|
|
32627
34437
|
silkscreenFontSize?: string | number | undefined;
|
|
34438
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
34439
|
+
offsetX: number;
|
|
34440
|
+
offsetY: number;
|
|
34441
|
+
} | undefined;
|
|
34442
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
32628
34443
|
}>>;
|
|
32629
34444
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
32630
34445
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -33292,6 +35107,11 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
33292
35107
|
pcbMarginY?: number | undefined;
|
|
33293
35108
|
pcbStyle?: {
|
|
33294
35109
|
silkscreenFontSize?: number | undefined;
|
|
35110
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
35111
|
+
offsetX: number;
|
|
35112
|
+
offsetY: number;
|
|
35113
|
+
} | undefined;
|
|
35114
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
33295
35115
|
} | undefined;
|
|
33296
35116
|
pcbRelative?: boolean | undefined;
|
|
33297
35117
|
relative?: boolean | undefined;
|
|
@@ -33481,6 +35301,11 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
33481
35301
|
pcbMarginY?: string | number | undefined;
|
|
33482
35302
|
pcbStyle?: {
|
|
33483
35303
|
silkscreenFontSize?: string | number | undefined;
|
|
35304
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
35305
|
+
offsetX: number;
|
|
35306
|
+
offsetY: number;
|
|
35307
|
+
} | undefined;
|
|
35308
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
33484
35309
|
} | undefined;
|
|
33485
35310
|
pcbRelative?: boolean | undefined;
|
|
33486
35311
|
relative?: boolean | undefined;
|
|
@@ -33673,10 +35498,31 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
33673
35498
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
33674
35499
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
33675
35500
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
35501
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
35502
|
+
offsetX: zod.ZodNumber;
|
|
35503
|
+
offsetY: zod.ZodNumber;
|
|
35504
|
+
}, "strip", zod.ZodTypeAny, {
|
|
35505
|
+
offsetX: number;
|
|
35506
|
+
offsetY: number;
|
|
35507
|
+
}, {
|
|
35508
|
+
offsetX: number;
|
|
35509
|
+
offsetY: number;
|
|
35510
|
+
}>]>>;
|
|
35511
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
33676
35512
|
}, "strip", zod.ZodTypeAny, {
|
|
33677
35513
|
silkscreenFontSize?: number | undefined;
|
|
35514
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
35515
|
+
offsetX: number;
|
|
35516
|
+
offsetY: number;
|
|
35517
|
+
} | undefined;
|
|
35518
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
33678
35519
|
}, {
|
|
33679
35520
|
silkscreenFontSize?: string | number | undefined;
|
|
35521
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
35522
|
+
offsetX: number;
|
|
35523
|
+
offsetY: number;
|
|
35524
|
+
} | undefined;
|
|
35525
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
33680
35526
|
}>>;
|
|
33681
35527
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
33682
35528
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -34354,6 +36200,11 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
34354
36200
|
pcbMarginY?: number | undefined;
|
|
34355
36201
|
pcbStyle?: {
|
|
34356
36202
|
silkscreenFontSize?: number | undefined;
|
|
36203
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
36204
|
+
offsetX: number;
|
|
36205
|
+
offsetY: number;
|
|
36206
|
+
} | undefined;
|
|
36207
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
34357
36208
|
} | undefined;
|
|
34358
36209
|
pcbRelative?: boolean | undefined;
|
|
34359
36210
|
relative?: boolean | undefined;
|
|
@@ -34552,6 +36403,11 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
34552
36403
|
pcbMarginY?: string | number | undefined;
|
|
34553
36404
|
pcbStyle?: {
|
|
34554
36405
|
silkscreenFontSize?: string | number | undefined;
|
|
36406
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
36407
|
+
offsetX: number;
|
|
36408
|
+
offsetY: number;
|
|
36409
|
+
} | undefined;
|
|
36410
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
34555
36411
|
} | undefined;
|
|
34556
36412
|
pcbRelative?: boolean | undefined;
|
|
34557
36413
|
relative?: boolean | undefined;
|
|
@@ -34751,6 +36607,11 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
34751
36607
|
pcbMarginY?: string | number | undefined;
|
|
34752
36608
|
pcbStyle?: {
|
|
34753
36609
|
silkscreenFontSize?: string | number | undefined;
|
|
36610
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
36611
|
+
offsetX: number;
|
|
36612
|
+
offsetY: number;
|
|
36613
|
+
} | undefined;
|
|
36614
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
34754
36615
|
} | undefined;
|
|
34755
36616
|
pcbRelative?: boolean | undefined;
|
|
34756
36617
|
relative?: boolean | undefined;
|
|
@@ -34954,10 +36815,31 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
34954
36815
|
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
34955
36816
|
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
34956
36817
|
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
36818
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
36819
|
+
offsetX: zod.ZodNumber;
|
|
36820
|
+
offsetY: zod.ZodNumber;
|
|
36821
|
+
}, "strip", zod.ZodTypeAny, {
|
|
36822
|
+
offsetX: number;
|
|
36823
|
+
offsetY: number;
|
|
36824
|
+
}, {
|
|
36825
|
+
offsetX: number;
|
|
36826
|
+
offsetY: number;
|
|
36827
|
+
}>]>>;
|
|
36828
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
34957
36829
|
}, "strip", zod.ZodTypeAny, {
|
|
34958
36830
|
silkscreenFontSize?: number | undefined;
|
|
36831
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
36832
|
+
offsetX: number;
|
|
36833
|
+
offsetY: number;
|
|
36834
|
+
} | undefined;
|
|
36835
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
34959
36836
|
}, {
|
|
34960
36837
|
silkscreenFontSize?: string | number | undefined;
|
|
36838
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
36839
|
+
offsetX: number;
|
|
36840
|
+
offsetY: number;
|
|
36841
|
+
} | undefined;
|
|
36842
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
34961
36843
|
}>>;
|
|
34962
36844
|
schMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
34963
36845
|
schMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -35635,6 +37517,11 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
35635
37517
|
pcbMarginY?: number | undefined;
|
|
35636
37518
|
pcbStyle?: {
|
|
35637
37519
|
silkscreenFontSize?: number | undefined;
|
|
37520
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
37521
|
+
offsetX: number;
|
|
37522
|
+
offsetY: number;
|
|
37523
|
+
} | undefined;
|
|
37524
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
35638
37525
|
} | undefined;
|
|
35639
37526
|
pcbRelative?: boolean | undefined;
|
|
35640
37527
|
relative?: boolean | undefined;
|
|
@@ -35830,6 +37717,11 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
35830
37717
|
pcbMarginY?: string | number | undefined;
|
|
35831
37718
|
pcbStyle?: {
|
|
35832
37719
|
silkscreenFontSize?: string | number | undefined;
|
|
37720
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
37721
|
+
offsetX: number;
|
|
37722
|
+
offsetY: number;
|
|
37723
|
+
} | undefined;
|
|
37724
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
35833
37725
|
} | undefined;
|
|
35834
37726
|
pcbRelative?: boolean | undefined;
|
|
35835
37727
|
relative?: boolean | undefined;
|
|
@@ -36025,6 +37917,11 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
36025
37917
|
pcbMarginY?: number | undefined;
|
|
36026
37918
|
pcbStyle?: {
|
|
36027
37919
|
silkscreenFontSize?: number | undefined;
|
|
37920
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
37921
|
+
offsetX: number;
|
|
37922
|
+
offsetY: number;
|
|
37923
|
+
} | undefined;
|
|
37924
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
36028
37925
|
} | undefined;
|
|
36029
37926
|
pcbRelative?: boolean | undefined;
|
|
36030
37927
|
relative?: boolean | undefined;
|
|
@@ -36220,6 +38117,11 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
36220
38117
|
pcbMarginY?: string | number | undefined;
|
|
36221
38118
|
pcbStyle?: {
|
|
36222
38119
|
silkscreenFontSize?: string | number | undefined;
|
|
38120
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
38121
|
+
offsetX: number;
|
|
38122
|
+
offsetY: number;
|
|
38123
|
+
} | undefined;
|
|
38124
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
36223
38125
|
} | undefined;
|
|
36224
38126
|
pcbRelative?: boolean | undefined;
|
|
36225
38127
|
relative?: boolean | undefined;
|
|
@@ -36484,6 +38386,7 @@ declare class SchematicRect extends PrimitiveComponent<typeof schematicRectProps
|
|
|
36484
38386
|
isFilled: zod.ZodDefault<zod.ZodOptional<zod.ZodBoolean>>;
|
|
36485
38387
|
fillColor: zod.ZodOptional<zod.ZodString>;
|
|
36486
38388
|
isDashed: zod.ZodDefault<zod.ZodOptional<zod.ZodBoolean>>;
|
|
38389
|
+
cornerRadius: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
36487
38390
|
}, "strip", zod.ZodTypeAny, {
|
|
36488
38391
|
width: number;
|
|
36489
38392
|
height: number;
|
|
@@ -36493,6 +38396,7 @@ declare class SchematicRect extends PrimitiveComponent<typeof schematicRectProps
|
|
|
36493
38396
|
schX?: number | undefined;
|
|
36494
38397
|
schY?: number | undefined;
|
|
36495
38398
|
strokeWidth?: number | undefined;
|
|
38399
|
+
cornerRadius?: number | undefined;
|
|
36496
38400
|
color?: string | undefined;
|
|
36497
38401
|
fillColor?: string | undefined;
|
|
36498
38402
|
}, {
|
|
@@ -36501,6 +38405,7 @@ declare class SchematicRect extends PrimitiveComponent<typeof schematicRectProps
|
|
|
36501
38405
|
schX?: string | number | undefined;
|
|
36502
38406
|
schY?: string | number | undefined;
|
|
36503
38407
|
strokeWidth?: string | number | undefined;
|
|
38408
|
+
cornerRadius?: string | number | undefined;
|
|
36504
38409
|
color?: string | undefined;
|
|
36505
38410
|
isFilled?: boolean | undefined;
|
|
36506
38411
|
isDashed?: boolean | undefined;
|
|
@@ -36886,10 +38791,31 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
36886
38791
|
pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
36887
38792
|
pcbStyle: z.ZodOptional<z.ZodObject<{
|
|
36888
38793
|
silkscreenFontSize: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
38794
|
+
silkscreenTextPosition: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["centered", "outside", "none"]>, z.ZodObject<{
|
|
38795
|
+
offsetX: z.ZodNumber;
|
|
38796
|
+
offsetY: z.ZodNumber;
|
|
38797
|
+
}, "strip", z.ZodTypeAny, {
|
|
38798
|
+
offsetX: number;
|
|
38799
|
+
offsetY: number;
|
|
38800
|
+
}, {
|
|
38801
|
+
offsetX: number;
|
|
38802
|
+
offsetY: number;
|
|
38803
|
+
}>]>>;
|
|
38804
|
+
silkscreenTextVisibility: z.ZodOptional<z.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
36889
38805
|
}, "strip", z.ZodTypeAny, {
|
|
36890
38806
|
silkscreenFontSize?: number | undefined;
|
|
38807
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
38808
|
+
offsetX: number;
|
|
38809
|
+
offsetY: number;
|
|
38810
|
+
} | undefined;
|
|
38811
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
36891
38812
|
}, {
|
|
36892
38813
|
silkscreenFontSize?: string | number | undefined;
|
|
38814
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
38815
|
+
offsetX: number;
|
|
38816
|
+
offsetY: number;
|
|
38817
|
+
} | undefined;
|
|
38818
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
36893
38819
|
}>>;
|
|
36894
38820
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
36895
38821
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -37555,6 +39481,11 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
37555
39481
|
pcbMarginY?: number | undefined;
|
|
37556
39482
|
pcbStyle?: {
|
|
37557
39483
|
silkscreenFontSize?: number | undefined;
|
|
39484
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
39485
|
+
offsetX: number;
|
|
39486
|
+
offsetY: number;
|
|
39487
|
+
} | undefined;
|
|
39488
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
37558
39489
|
} | undefined;
|
|
37559
39490
|
pcbRelative?: boolean | undefined;
|
|
37560
39491
|
relative?: boolean | undefined;
|
|
@@ -37743,6 +39674,11 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
37743
39674
|
pcbMarginY?: string | number | undefined;
|
|
37744
39675
|
pcbStyle?: {
|
|
37745
39676
|
silkscreenFontSize?: string | number | undefined;
|
|
39677
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
39678
|
+
offsetX: number;
|
|
39679
|
+
offsetY: number;
|
|
39680
|
+
} | undefined;
|
|
39681
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
37746
39682
|
} | undefined;
|
|
37747
39683
|
pcbRelative?: boolean | undefined;
|
|
37748
39684
|
relative?: boolean | undefined;
|
|
@@ -37959,6 +39895,11 @@ declare const useLed: <PropsFromHook extends Omit<{
|
|
|
37959
39895
|
pcbMarginY?: string | number | undefined;
|
|
37960
39896
|
pcbStyle?: {
|
|
37961
39897
|
silkscreenFontSize?: string | number | undefined;
|
|
39898
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
39899
|
+
offsetX: number;
|
|
39900
|
+
offsetY: number;
|
|
39901
|
+
} | undefined;
|
|
39902
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
37962
39903
|
} | undefined;
|
|
37963
39904
|
pcbRelative?: boolean | undefined;
|
|
37964
39905
|
relative?: boolean | undefined;
|
|
@@ -38152,6 +40093,11 @@ declare const useLed: <PropsFromHook extends Omit<{
|
|
|
38152
40093
|
pcbMarginY?: string | number | undefined;
|
|
38153
40094
|
pcbStyle?: {
|
|
38154
40095
|
silkscreenFontSize?: string | number | undefined;
|
|
40096
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
40097
|
+
offsetX: number;
|
|
40098
|
+
offsetY: number;
|
|
40099
|
+
} | undefined;
|
|
40100
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
38155
40101
|
} | undefined;
|
|
38156
40102
|
pcbRelative?: boolean | undefined;
|
|
38157
40103
|
relative?: boolean | undefined;
|