@tscircuit/props 0.0.155 → 0.0.157
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 +187 -3
- package/dist/index.js +21 -3
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +2 -0
- package/lib/components/platedhole.ts +37 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2582,6 +2582,7 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2582
2582
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
2583
2583
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
2584
2584
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
2585
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2585
2586
|
}, "strip", z.ZodTypeAny, {
|
|
2586
2587
|
grid?: boolean | undefined;
|
|
2587
2588
|
flex?: string | boolean | undefined;
|
|
@@ -2598,6 +2599,7 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2598
2599
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2599
2600
|
flexRow?: boolean | undefined;
|
|
2600
2601
|
flexColumn?: boolean | undefined;
|
|
2602
|
+
gap?: string | number | undefined;
|
|
2601
2603
|
}, {
|
|
2602
2604
|
grid?: boolean | undefined;
|
|
2603
2605
|
flex?: string | boolean | undefined;
|
|
@@ -2614,6 +2616,7 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2614
2616
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2615
2617
|
flexRow?: boolean | undefined;
|
|
2616
2618
|
flexColumn?: boolean | undefined;
|
|
2619
|
+
gap?: string | number | undefined;
|
|
2617
2620
|
}>;
|
|
2618
2621
|
interface LayoutConfig {
|
|
2619
2622
|
layoutMode?: "grid" | "flex" | "none";
|
|
@@ -2631,6 +2634,7 @@ interface LayoutConfig {
|
|
|
2631
2634
|
justifyContent?: "start" | "center" | "end" | "stretch";
|
|
2632
2635
|
flexRow?: boolean;
|
|
2633
2636
|
flexColumn?: boolean;
|
|
2637
|
+
gap?: number | string;
|
|
2634
2638
|
}
|
|
2635
2639
|
interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
|
|
2636
2640
|
name?: string;
|
|
@@ -2778,6 +2782,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2778
2782
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
2779
2783
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
2780
2784
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
2785
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2781
2786
|
}, "strip", z.ZodTypeAny, {
|
|
2782
2787
|
grid?: boolean | undefined;
|
|
2783
2788
|
flex?: string | boolean | undefined;
|
|
@@ -2794,6 +2799,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2794
2799
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2795
2800
|
flexRow?: boolean | undefined;
|
|
2796
2801
|
flexColumn?: boolean | undefined;
|
|
2802
|
+
gap?: string | number | undefined;
|
|
2797
2803
|
}, {
|
|
2798
2804
|
grid?: boolean | undefined;
|
|
2799
2805
|
flex?: string | boolean | undefined;
|
|
@@ -2810,6 +2816,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2810
2816
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2811
2817
|
flexRow?: boolean | undefined;
|
|
2812
2818
|
flexColumn?: boolean | undefined;
|
|
2819
|
+
gap?: string | number | undefined;
|
|
2813
2820
|
}>>;
|
|
2814
2821
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
2815
2822
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
@@ -2827,6 +2834,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2827
2834
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
2828
2835
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
2829
2836
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
2837
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2830
2838
|
}, "strip", z.ZodTypeAny, {
|
|
2831
2839
|
grid?: boolean | undefined;
|
|
2832
2840
|
flex?: string | boolean | undefined;
|
|
@@ -2843,6 +2851,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2843
2851
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2844
2852
|
flexRow?: boolean | undefined;
|
|
2845
2853
|
flexColumn?: boolean | undefined;
|
|
2854
|
+
gap?: string | number | undefined;
|
|
2846
2855
|
}, {
|
|
2847
2856
|
grid?: boolean | undefined;
|
|
2848
2857
|
flex?: string | boolean | undefined;
|
|
@@ -2859,6 +2868,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2859
2868
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2860
2869
|
flexRow?: boolean | undefined;
|
|
2861
2870
|
flexColumn?: boolean | undefined;
|
|
2871
|
+
gap?: string | number | undefined;
|
|
2862
2872
|
}>>;
|
|
2863
2873
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
2864
2874
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -2875,6 +2885,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2875
2885
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
2876
2886
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
2877
2887
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
2888
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2878
2889
|
name: z.ZodOptional<z.ZodString>;
|
|
2879
2890
|
children: z.ZodOptional<z.ZodAny>;
|
|
2880
2891
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -2905,6 +2916,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2905
2916
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2906
2917
|
flexRow?: boolean | undefined;
|
|
2907
2918
|
flexColumn?: boolean | undefined;
|
|
2919
|
+
gap?: string | number | undefined;
|
|
2908
2920
|
pcbWidth?: number | undefined;
|
|
2909
2921
|
pcbHeight?: number | undefined;
|
|
2910
2922
|
schWidth?: number | undefined;
|
|
@@ -2925,6 +2937,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2925
2937
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2926
2938
|
flexRow?: boolean | undefined;
|
|
2927
2939
|
flexColumn?: boolean | undefined;
|
|
2940
|
+
gap?: string | number | undefined;
|
|
2928
2941
|
} | undefined;
|
|
2929
2942
|
schLayout?: {
|
|
2930
2943
|
grid?: boolean | undefined;
|
|
@@ -2942,6 +2955,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2942
2955
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2943
2956
|
flexRow?: boolean | undefined;
|
|
2944
2957
|
flexColumn?: boolean | undefined;
|
|
2958
|
+
gap?: string | number | undefined;
|
|
2945
2959
|
} | undefined;
|
|
2946
2960
|
}, {
|
|
2947
2961
|
pcbX?: string | number | undefined;
|
|
@@ -2972,6 +2986,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2972
2986
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2973
2987
|
flexRow?: boolean | undefined;
|
|
2974
2988
|
flexColumn?: boolean | undefined;
|
|
2989
|
+
gap?: string | number | undefined;
|
|
2975
2990
|
pcbWidth?: string | number | undefined;
|
|
2976
2991
|
pcbHeight?: string | number | undefined;
|
|
2977
2992
|
schWidth?: string | number | undefined;
|
|
@@ -2992,6 +3007,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2992
3007
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2993
3008
|
flexRow?: boolean | undefined;
|
|
2994
3009
|
flexColumn?: boolean | undefined;
|
|
3010
|
+
gap?: string | number | undefined;
|
|
2995
3011
|
} | undefined;
|
|
2996
3012
|
schLayout?: {
|
|
2997
3013
|
grid?: boolean | undefined;
|
|
@@ -3009,6 +3025,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3009
3025
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3010
3026
|
flexRow?: boolean | undefined;
|
|
3011
3027
|
flexColumn?: boolean | undefined;
|
|
3028
|
+
gap?: string | number | undefined;
|
|
3012
3029
|
} | undefined;
|
|
3013
3030
|
}>;
|
|
3014
3031
|
declare const partsEngine: z.ZodType<PartsEngine, z.ZodTypeDef, PartsEngine>;
|
|
@@ -3050,6 +3067,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3050
3067
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3051
3068
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3052
3069
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3070
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3053
3071
|
}, "strip", z.ZodTypeAny, {
|
|
3054
3072
|
grid?: boolean | undefined;
|
|
3055
3073
|
flex?: string | boolean | undefined;
|
|
@@ -3066,6 +3084,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3066
3084
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3067
3085
|
flexRow?: boolean | undefined;
|
|
3068
3086
|
flexColumn?: boolean | undefined;
|
|
3087
|
+
gap?: string | number | undefined;
|
|
3069
3088
|
}, {
|
|
3070
3089
|
grid?: boolean | undefined;
|
|
3071
3090
|
flex?: string | boolean | undefined;
|
|
@@ -3082,6 +3101,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3082
3101
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3083
3102
|
flexRow?: boolean | undefined;
|
|
3084
3103
|
flexColumn?: boolean | undefined;
|
|
3104
|
+
gap?: string | number | undefined;
|
|
3085
3105
|
}>>;
|
|
3086
3106
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
3087
3107
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
@@ -3099,6 +3119,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3099
3119
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3100
3120
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3101
3121
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3122
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3102
3123
|
}, "strip", z.ZodTypeAny, {
|
|
3103
3124
|
grid?: boolean | undefined;
|
|
3104
3125
|
flex?: string | boolean | undefined;
|
|
@@ -3115,6 +3136,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3115
3136
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3116
3137
|
flexRow?: boolean | undefined;
|
|
3117
3138
|
flexColumn?: boolean | undefined;
|
|
3139
|
+
gap?: string | number | undefined;
|
|
3118
3140
|
}, {
|
|
3119
3141
|
grid?: boolean | undefined;
|
|
3120
3142
|
flex?: string | boolean | undefined;
|
|
@@ -3131,6 +3153,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3131
3153
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3132
3154
|
flexRow?: boolean | undefined;
|
|
3133
3155
|
flexColumn?: boolean | undefined;
|
|
3156
|
+
gap?: string | number | undefined;
|
|
3134
3157
|
}>>;
|
|
3135
3158
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
3136
3159
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -3147,6 +3170,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3147
3170
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3148
3171
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3149
3172
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3173
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3150
3174
|
name: z.ZodOptional<z.ZodString>;
|
|
3151
3175
|
children: z.ZodOptional<z.ZodAny>;
|
|
3152
3176
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -3377,6 +3401,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3377
3401
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3378
3402
|
flexRow?: boolean | undefined;
|
|
3379
3403
|
flexColumn?: boolean | undefined;
|
|
3404
|
+
gap?: string | number | undefined;
|
|
3380
3405
|
pcbWidth?: number | undefined;
|
|
3381
3406
|
pcbHeight?: number | undefined;
|
|
3382
3407
|
schWidth?: number | undefined;
|
|
@@ -3397,6 +3422,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3397
3422
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3398
3423
|
flexRow?: boolean | undefined;
|
|
3399
3424
|
flexColumn?: boolean | undefined;
|
|
3425
|
+
gap?: string | number | undefined;
|
|
3400
3426
|
} | undefined;
|
|
3401
3427
|
schLayout?: {
|
|
3402
3428
|
grid?: boolean | undefined;
|
|
@@ -3414,6 +3440,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3414
3440
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3415
3441
|
flexRow?: boolean | undefined;
|
|
3416
3442
|
flexColumn?: boolean | undefined;
|
|
3443
|
+
gap?: string | number | undefined;
|
|
3417
3444
|
} | undefined;
|
|
3418
3445
|
layout?: LayoutBuilder | undefined;
|
|
3419
3446
|
manualEdits?: {
|
|
@@ -3489,6 +3516,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3489
3516
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3490
3517
|
flexRow?: boolean | undefined;
|
|
3491
3518
|
flexColumn?: boolean | undefined;
|
|
3519
|
+
gap?: string | number | undefined;
|
|
3492
3520
|
pcbWidth?: string | number | undefined;
|
|
3493
3521
|
pcbHeight?: string | number | undefined;
|
|
3494
3522
|
schWidth?: string | number | undefined;
|
|
@@ -3509,6 +3537,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3509
3537
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3510
3538
|
flexRow?: boolean | undefined;
|
|
3511
3539
|
flexColumn?: boolean | undefined;
|
|
3540
|
+
gap?: string | number | undefined;
|
|
3512
3541
|
} | undefined;
|
|
3513
3542
|
schLayout?: {
|
|
3514
3543
|
grid?: boolean | undefined;
|
|
@@ -3526,6 +3555,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3526
3555
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3527
3556
|
flexRow?: boolean | undefined;
|
|
3528
3557
|
flexColumn?: boolean | undefined;
|
|
3558
|
+
gap?: string | number | undefined;
|
|
3529
3559
|
} | undefined;
|
|
3530
3560
|
layout?: LayoutBuilder | undefined;
|
|
3531
3561
|
manualEdits?: {
|
|
@@ -3613,6 +3643,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3613
3643
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3614
3644
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3615
3645
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3646
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3616
3647
|
}, "strip", z.ZodTypeAny, {
|
|
3617
3648
|
grid?: boolean | undefined;
|
|
3618
3649
|
flex?: string | boolean | undefined;
|
|
@@ -3629,6 +3660,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3629
3660
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3630
3661
|
flexRow?: boolean | undefined;
|
|
3631
3662
|
flexColumn?: boolean | undefined;
|
|
3663
|
+
gap?: string | number | undefined;
|
|
3632
3664
|
}, {
|
|
3633
3665
|
grid?: boolean | undefined;
|
|
3634
3666
|
flex?: string | boolean | undefined;
|
|
@@ -3645,6 +3677,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3645
3677
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3646
3678
|
flexRow?: boolean | undefined;
|
|
3647
3679
|
flexColumn?: boolean | undefined;
|
|
3680
|
+
gap?: string | number | undefined;
|
|
3648
3681
|
}>>;
|
|
3649
3682
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
3650
3683
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
@@ -3662,6 +3695,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3662
3695
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3663
3696
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3664
3697
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3698
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3665
3699
|
}, "strip", z.ZodTypeAny, {
|
|
3666
3700
|
grid?: boolean | undefined;
|
|
3667
3701
|
flex?: string | boolean | undefined;
|
|
@@ -3678,6 +3712,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3678
3712
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3679
3713
|
flexRow?: boolean | undefined;
|
|
3680
3714
|
flexColumn?: boolean | undefined;
|
|
3715
|
+
gap?: string | number | undefined;
|
|
3681
3716
|
}, {
|
|
3682
3717
|
grid?: boolean | undefined;
|
|
3683
3718
|
flex?: string | boolean | undefined;
|
|
@@ -3694,6 +3729,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3694
3729
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3695
3730
|
flexRow?: boolean | undefined;
|
|
3696
3731
|
flexColumn?: boolean | undefined;
|
|
3732
|
+
gap?: string | number | undefined;
|
|
3697
3733
|
}>>;
|
|
3698
3734
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
3699
3735
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -3710,6 +3746,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3710
3746
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3711
3747
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3712
3748
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3749
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3713
3750
|
name: z.ZodOptional<z.ZodString>;
|
|
3714
3751
|
children: z.ZodOptional<z.ZodAny>;
|
|
3715
3752
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -3943,6 +3980,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3943
3980
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3944
3981
|
flexRow?: boolean | undefined;
|
|
3945
3982
|
flexColumn?: boolean | undefined;
|
|
3983
|
+
gap?: string | number | undefined;
|
|
3946
3984
|
pcbWidth?: number | undefined;
|
|
3947
3985
|
pcbHeight?: number | undefined;
|
|
3948
3986
|
schWidth?: number | undefined;
|
|
@@ -3963,6 +4001,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3963
4001
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3964
4002
|
flexRow?: boolean | undefined;
|
|
3965
4003
|
flexColumn?: boolean | undefined;
|
|
4004
|
+
gap?: string | number | undefined;
|
|
3966
4005
|
} | undefined;
|
|
3967
4006
|
schLayout?: {
|
|
3968
4007
|
grid?: boolean | undefined;
|
|
@@ -3980,6 +4019,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3980
4019
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3981
4020
|
flexRow?: boolean | undefined;
|
|
3982
4021
|
flexColumn?: boolean | undefined;
|
|
4022
|
+
gap?: string | number | undefined;
|
|
3983
4023
|
} | undefined;
|
|
3984
4024
|
layout?: LayoutBuilder | undefined;
|
|
3985
4025
|
manualEdits?: {
|
|
@@ -4056,6 +4096,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4056
4096
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4057
4097
|
flexRow?: boolean | undefined;
|
|
4058
4098
|
flexColumn?: boolean | undefined;
|
|
4099
|
+
gap?: string | number | undefined;
|
|
4059
4100
|
pcbWidth?: string | number | undefined;
|
|
4060
4101
|
pcbHeight?: string | number | undefined;
|
|
4061
4102
|
schWidth?: string | number | undefined;
|
|
@@ -4076,6 +4117,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4076
4117
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4077
4118
|
flexRow?: boolean | undefined;
|
|
4078
4119
|
flexColumn?: boolean | undefined;
|
|
4120
|
+
gap?: string | number | undefined;
|
|
4079
4121
|
} | undefined;
|
|
4080
4122
|
schLayout?: {
|
|
4081
4123
|
grid?: boolean | undefined;
|
|
@@ -4093,6 +4135,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4093
4135
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4094
4136
|
flexRow?: boolean | undefined;
|
|
4095
4137
|
flexColumn?: boolean | undefined;
|
|
4138
|
+
gap?: string | number | undefined;
|
|
4096
4139
|
} | undefined;
|
|
4097
4140
|
layout?: LayoutBuilder | undefined;
|
|
4098
4141
|
manualEdits?: {
|
|
@@ -4180,6 +4223,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4180
4223
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4181
4224
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4182
4225
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4226
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4183
4227
|
}, "strip", z.ZodTypeAny, {
|
|
4184
4228
|
grid?: boolean | undefined;
|
|
4185
4229
|
flex?: string | boolean | undefined;
|
|
@@ -4196,6 +4240,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4196
4240
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4197
4241
|
flexRow?: boolean | undefined;
|
|
4198
4242
|
flexColumn?: boolean | undefined;
|
|
4243
|
+
gap?: string | number | undefined;
|
|
4199
4244
|
}, {
|
|
4200
4245
|
grid?: boolean | undefined;
|
|
4201
4246
|
flex?: string | boolean | undefined;
|
|
@@ -4212,6 +4257,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4212
4257
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4213
4258
|
flexRow?: boolean | undefined;
|
|
4214
4259
|
flexColumn?: boolean | undefined;
|
|
4260
|
+
gap?: string | number | undefined;
|
|
4215
4261
|
}>>;
|
|
4216
4262
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
4217
4263
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
@@ -4229,6 +4275,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4229
4275
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4230
4276
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4231
4277
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4278
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4232
4279
|
}, "strip", z.ZodTypeAny, {
|
|
4233
4280
|
grid?: boolean | undefined;
|
|
4234
4281
|
flex?: string | boolean | undefined;
|
|
@@ -4245,6 +4292,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4245
4292
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4246
4293
|
flexRow?: boolean | undefined;
|
|
4247
4294
|
flexColumn?: boolean | undefined;
|
|
4295
|
+
gap?: string | number | undefined;
|
|
4248
4296
|
}, {
|
|
4249
4297
|
grid?: boolean | undefined;
|
|
4250
4298
|
flex?: string | boolean | undefined;
|
|
@@ -4261,6 +4309,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4261
4309
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4262
4310
|
flexRow?: boolean | undefined;
|
|
4263
4311
|
flexColumn?: boolean | undefined;
|
|
4312
|
+
gap?: string | number | undefined;
|
|
4264
4313
|
}>>;
|
|
4265
4314
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
4266
4315
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -4277,6 +4326,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4277
4326
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4278
4327
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4279
4328
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4329
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4280
4330
|
name: z.ZodOptional<z.ZodString>;
|
|
4281
4331
|
children: z.ZodOptional<z.ZodAny>;
|
|
4282
4332
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -4309,6 +4359,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4309
4359
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4310
4360
|
flexRow?: boolean | undefined;
|
|
4311
4361
|
flexColumn?: boolean | undefined;
|
|
4362
|
+
gap?: string | number | undefined;
|
|
4312
4363
|
pcbWidth?: number | undefined;
|
|
4313
4364
|
pcbHeight?: number | undefined;
|
|
4314
4365
|
schWidth?: number | undefined;
|
|
@@ -4329,6 +4380,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4329
4380
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4330
4381
|
flexRow?: boolean | undefined;
|
|
4331
4382
|
flexColumn?: boolean | undefined;
|
|
4383
|
+
gap?: string | number | undefined;
|
|
4332
4384
|
} | undefined;
|
|
4333
4385
|
schLayout?: {
|
|
4334
4386
|
grid?: boolean | undefined;
|
|
@@ -4346,6 +4398,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4346
4398
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4347
4399
|
flexRow?: boolean | undefined;
|
|
4348
4400
|
flexColumn?: boolean | undefined;
|
|
4401
|
+
gap?: string | number | undefined;
|
|
4349
4402
|
} | undefined;
|
|
4350
4403
|
subcircuit?: false | undefined;
|
|
4351
4404
|
}, {
|
|
@@ -4377,6 +4430,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4377
4430
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4378
4431
|
flexRow?: boolean | undefined;
|
|
4379
4432
|
flexColumn?: boolean | undefined;
|
|
4433
|
+
gap?: string | number | undefined;
|
|
4380
4434
|
pcbWidth?: string | number | undefined;
|
|
4381
4435
|
pcbHeight?: string | number | undefined;
|
|
4382
4436
|
schWidth?: string | number | undefined;
|
|
@@ -4397,6 +4451,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4397
4451
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4398
4452
|
flexRow?: boolean | undefined;
|
|
4399
4453
|
flexColumn?: boolean | undefined;
|
|
4454
|
+
gap?: string | number | undefined;
|
|
4400
4455
|
} | undefined;
|
|
4401
4456
|
schLayout?: {
|
|
4402
4457
|
grid?: boolean | undefined;
|
|
@@ -4414,6 +4469,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4414
4469
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4415
4470
|
flexRow?: boolean | undefined;
|
|
4416
4471
|
flexColumn?: boolean | undefined;
|
|
4472
|
+
gap?: string | number | undefined;
|
|
4417
4473
|
} | undefined;
|
|
4418
4474
|
subcircuit?: false | undefined;
|
|
4419
4475
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -4454,6 +4510,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4454
4510
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4455
4511
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4456
4512
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4513
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4457
4514
|
}, "strip", z.ZodTypeAny, {
|
|
4458
4515
|
grid?: boolean | undefined;
|
|
4459
4516
|
flex?: string | boolean | undefined;
|
|
@@ -4470,6 +4527,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4470
4527
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4471
4528
|
flexRow?: boolean | undefined;
|
|
4472
4529
|
flexColumn?: boolean | undefined;
|
|
4530
|
+
gap?: string | number | undefined;
|
|
4473
4531
|
}, {
|
|
4474
4532
|
grid?: boolean | undefined;
|
|
4475
4533
|
flex?: string | boolean | undefined;
|
|
@@ -4486,6 +4544,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4486
4544
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4487
4545
|
flexRow?: boolean | undefined;
|
|
4488
4546
|
flexColumn?: boolean | undefined;
|
|
4547
|
+
gap?: string | number | undefined;
|
|
4489
4548
|
}>>;
|
|
4490
4549
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
4491
4550
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
@@ -4503,6 +4562,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4503
4562
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4504
4563
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4505
4564
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4565
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4506
4566
|
}, "strip", z.ZodTypeAny, {
|
|
4507
4567
|
grid?: boolean | undefined;
|
|
4508
4568
|
flex?: string | boolean | undefined;
|
|
@@ -4519,6 +4579,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4519
4579
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4520
4580
|
flexRow?: boolean | undefined;
|
|
4521
4581
|
flexColumn?: boolean | undefined;
|
|
4582
|
+
gap?: string | number | undefined;
|
|
4522
4583
|
}, {
|
|
4523
4584
|
grid?: boolean | undefined;
|
|
4524
4585
|
flex?: string | boolean | undefined;
|
|
@@ -4535,6 +4596,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4535
4596
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4536
4597
|
flexRow?: boolean | undefined;
|
|
4537
4598
|
flexColumn?: boolean | undefined;
|
|
4599
|
+
gap?: string | number | undefined;
|
|
4538
4600
|
}>>;
|
|
4539
4601
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
4540
4602
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -4551,6 +4613,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4551
4613
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4552
4614
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4553
4615
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4616
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4554
4617
|
name: z.ZodOptional<z.ZodString>;
|
|
4555
4618
|
children: z.ZodOptional<z.ZodAny>;
|
|
4556
4619
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -4784,6 +4847,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4784
4847
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4785
4848
|
flexRow?: boolean | undefined;
|
|
4786
4849
|
flexColumn?: boolean | undefined;
|
|
4850
|
+
gap?: string | number | undefined;
|
|
4787
4851
|
pcbWidth?: number | undefined;
|
|
4788
4852
|
pcbHeight?: number | undefined;
|
|
4789
4853
|
schWidth?: number | undefined;
|
|
@@ -4804,6 +4868,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4804
4868
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4805
4869
|
flexRow?: boolean | undefined;
|
|
4806
4870
|
flexColumn?: boolean | undefined;
|
|
4871
|
+
gap?: string | number | undefined;
|
|
4807
4872
|
} | undefined;
|
|
4808
4873
|
schLayout?: {
|
|
4809
4874
|
grid?: boolean | undefined;
|
|
@@ -4821,6 +4886,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4821
4886
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4822
4887
|
flexRow?: boolean | undefined;
|
|
4823
4888
|
flexColumn?: boolean | undefined;
|
|
4889
|
+
gap?: string | number | undefined;
|
|
4824
4890
|
} | undefined;
|
|
4825
4891
|
layout?: LayoutBuilder | undefined;
|
|
4826
4892
|
manualEdits?: {
|
|
@@ -4897,6 +4963,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4897
4963
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4898
4964
|
flexRow?: boolean | undefined;
|
|
4899
4965
|
flexColumn?: boolean | undefined;
|
|
4966
|
+
gap?: string | number | undefined;
|
|
4900
4967
|
pcbWidth?: string | number | undefined;
|
|
4901
4968
|
pcbHeight?: string | number | undefined;
|
|
4902
4969
|
schWidth?: string | number | undefined;
|
|
@@ -4917,6 +4984,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4917
4984
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4918
4985
|
flexRow?: boolean | undefined;
|
|
4919
4986
|
flexColumn?: boolean | undefined;
|
|
4987
|
+
gap?: string | number | undefined;
|
|
4920
4988
|
} | undefined;
|
|
4921
4989
|
schLayout?: {
|
|
4922
4990
|
grid?: boolean | undefined;
|
|
@@ -4934,6 +5002,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4934
5002
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4935
5003
|
flexRow?: boolean | undefined;
|
|
4936
5004
|
flexColumn?: boolean | undefined;
|
|
5005
|
+
gap?: string | number | undefined;
|
|
4937
5006
|
} | undefined;
|
|
4938
5007
|
layout?: LayoutBuilder | undefined;
|
|
4939
5008
|
manualEdits?: {
|
|
@@ -5034,6 +5103,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5034
5103
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5035
5104
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5036
5105
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5106
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5037
5107
|
}, "strip", z.ZodTypeAny, {
|
|
5038
5108
|
grid?: boolean | undefined;
|
|
5039
5109
|
flex?: string | boolean | undefined;
|
|
@@ -5050,6 +5120,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5050
5120
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5051
5121
|
flexRow?: boolean | undefined;
|
|
5052
5122
|
flexColumn?: boolean | undefined;
|
|
5123
|
+
gap?: string | number | undefined;
|
|
5053
5124
|
}, {
|
|
5054
5125
|
grid?: boolean | undefined;
|
|
5055
5126
|
flex?: string | boolean | undefined;
|
|
@@ -5066,6 +5137,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5066
5137
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5067
5138
|
flexRow?: boolean | undefined;
|
|
5068
5139
|
flexColumn?: boolean | undefined;
|
|
5140
|
+
gap?: string | number | undefined;
|
|
5069
5141
|
}>>;
|
|
5070
5142
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
5071
5143
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
@@ -5083,6 +5155,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5083
5155
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5084
5156
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5085
5157
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5158
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5086
5159
|
}, "strip", z.ZodTypeAny, {
|
|
5087
5160
|
grid?: boolean | undefined;
|
|
5088
5161
|
flex?: string | boolean | undefined;
|
|
@@ -5099,6 +5172,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5099
5172
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5100
5173
|
flexRow?: boolean | undefined;
|
|
5101
5174
|
flexColumn?: boolean | undefined;
|
|
5175
|
+
gap?: string | number | undefined;
|
|
5102
5176
|
}, {
|
|
5103
5177
|
grid?: boolean | undefined;
|
|
5104
5178
|
flex?: string | boolean | undefined;
|
|
@@ -5115,6 +5189,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5115
5189
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5116
5190
|
flexRow?: boolean | undefined;
|
|
5117
5191
|
flexColumn?: boolean | undefined;
|
|
5192
|
+
gap?: string | number | undefined;
|
|
5118
5193
|
}>>;
|
|
5119
5194
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
5120
5195
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -5131,6 +5206,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5131
5206
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5132
5207
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5133
5208
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5209
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5134
5210
|
name: z.ZodOptional<z.ZodString>;
|
|
5135
5211
|
children: z.ZodOptional<z.ZodAny>;
|
|
5136
5212
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -5376,6 +5452,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5376
5452
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5377
5453
|
flexRow?: boolean | undefined;
|
|
5378
5454
|
flexColumn?: boolean | undefined;
|
|
5455
|
+
gap?: string | number | undefined;
|
|
5379
5456
|
pcbWidth?: number | undefined;
|
|
5380
5457
|
pcbHeight?: number | undefined;
|
|
5381
5458
|
schWidth?: number | undefined;
|
|
@@ -5396,6 +5473,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5396
5473
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5397
5474
|
flexRow?: boolean | undefined;
|
|
5398
5475
|
flexColumn?: boolean | undefined;
|
|
5476
|
+
gap?: string | number | undefined;
|
|
5399
5477
|
} | undefined;
|
|
5400
5478
|
schLayout?: {
|
|
5401
5479
|
grid?: boolean | undefined;
|
|
@@ -5413,6 +5491,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5413
5491
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5414
5492
|
flexRow?: boolean | undefined;
|
|
5415
5493
|
flexColumn?: boolean | undefined;
|
|
5494
|
+
gap?: string | number | undefined;
|
|
5416
5495
|
} | undefined;
|
|
5417
5496
|
layout?: LayoutBuilder | undefined;
|
|
5418
5497
|
manualEdits?: {
|
|
@@ -5496,6 +5575,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5496
5575
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5497
5576
|
flexRow?: boolean | undefined;
|
|
5498
5577
|
flexColumn?: boolean | undefined;
|
|
5578
|
+
gap?: string | number | undefined;
|
|
5499
5579
|
pcbWidth?: string | number | undefined;
|
|
5500
5580
|
pcbHeight?: string | number | undefined;
|
|
5501
5581
|
schWidth?: string | number | undefined;
|
|
@@ -5516,6 +5596,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5516
5596
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5517
5597
|
flexRow?: boolean | undefined;
|
|
5518
5598
|
flexColumn?: boolean | undefined;
|
|
5599
|
+
gap?: string | number | undefined;
|
|
5519
5600
|
} | undefined;
|
|
5520
5601
|
schLayout?: {
|
|
5521
5602
|
grid?: boolean | undefined;
|
|
@@ -5533,6 +5614,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5533
5614
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5534
5615
|
flexRow?: boolean | undefined;
|
|
5535
5616
|
flexColumn?: boolean | undefined;
|
|
5617
|
+
gap?: string | number | undefined;
|
|
5536
5618
|
} | undefined;
|
|
5537
5619
|
layout?: LayoutBuilder | undefined;
|
|
5538
5620
|
manualEdits?: {
|
|
@@ -7809,8 +7891,18 @@ interface PillPlatedHoleProps extends Omit<PcbLayoutProps, "pcbRotation" | "laye
|
|
|
7809
7891
|
innerHeight: number | string;
|
|
7810
7892
|
portHints?: PortHints;
|
|
7811
7893
|
}
|
|
7812
|
-
|
|
7813
|
-
|
|
7894
|
+
interface CircularHoleWithRectPlatedProps extends Omit<PcbLayoutProps, "pcbRotation" | "layer"> {
|
|
7895
|
+
name?: string;
|
|
7896
|
+
holeDiameter: number | string;
|
|
7897
|
+
rectPadWidth: number | string;
|
|
7898
|
+
rectPadHeight: number | string;
|
|
7899
|
+
holeShape?: "circle";
|
|
7900
|
+
padShape?: "rect";
|
|
7901
|
+
shape?: "circularHoleWithRectPad";
|
|
7902
|
+
portHints?: PortHints;
|
|
7903
|
+
}
|
|
7904
|
+
type PlatedHoleProps = CirclePlatedHoleProps | OvalPlatedHoleProps | PillPlatedHoleProps | CircularHoleWithRectPlatedProps;
|
|
7905
|
+
declare const platedHoleProps: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
7814
7906
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7815
7907
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7816
7908
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7927,6 +8019,72 @@ declare const platedHoleProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<z.o
|
|
|
7927
8019
|
pcbY?: string | number | undefined;
|
|
7928
8020
|
name?: string | undefined;
|
|
7929
8021
|
portHints?: (string | number)[] | undefined;
|
|
8022
|
+
}>, z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
8023
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8024
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8025
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8026
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
8027
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
8028
|
+
}, "strip", z.ZodTypeAny, {
|
|
8029
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8030
|
+
}, {
|
|
8031
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8032
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
8033
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8034
|
+
}>>;
|
|
8035
|
+
}, "pcbRotation" | "layer">, {
|
|
8036
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8037
|
+
holeDiameter: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8038
|
+
rectPadWidth: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8039
|
+
rectPadHeight: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8040
|
+
holeShape: z.ZodOptional<z.ZodLiteral<"circle">>;
|
|
8041
|
+
padShape: z.ZodOptional<z.ZodLiteral<"rect">>;
|
|
8042
|
+
shape: z.ZodOptional<z.ZodLiteral<"circularHoleWithRectPad">>;
|
|
8043
|
+
portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
|
|
8044
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8045
|
+
holeDiameter: number;
|
|
8046
|
+
rectPadWidth: number;
|
|
8047
|
+
rectPadHeight: number;
|
|
8048
|
+
pcbX?: number | undefined;
|
|
8049
|
+
pcbY?: number | undefined;
|
|
8050
|
+
name?: string | undefined;
|
|
8051
|
+
shape?: "circularHoleWithRectPad" | undefined;
|
|
8052
|
+
portHints?: (string | number)[] | undefined;
|
|
8053
|
+
holeShape?: "circle" | undefined;
|
|
8054
|
+
padShape?: "rect" | undefined;
|
|
8055
|
+
}, {
|
|
8056
|
+
holeDiameter: string | number;
|
|
8057
|
+
rectPadWidth: string | number;
|
|
8058
|
+
rectPadHeight: string | number;
|
|
8059
|
+
pcbX?: string | number | undefined;
|
|
8060
|
+
pcbY?: string | number | undefined;
|
|
8061
|
+
name?: string | undefined;
|
|
8062
|
+
shape?: "circularHoleWithRectPad" | undefined;
|
|
8063
|
+
portHints?: (string | number)[] | undefined;
|
|
8064
|
+
holeShape?: "circle" | undefined;
|
|
8065
|
+
padShape?: "rect" | undefined;
|
|
8066
|
+
}>, {
|
|
8067
|
+
holeDiameter: number;
|
|
8068
|
+
rectPadWidth: number;
|
|
8069
|
+
rectPadHeight: number;
|
|
8070
|
+
pcbX?: number | undefined;
|
|
8071
|
+
pcbY?: number | undefined;
|
|
8072
|
+
name?: string | undefined;
|
|
8073
|
+
shape?: "circularHoleWithRectPad" | undefined;
|
|
8074
|
+
portHints?: (string | number)[] | undefined;
|
|
8075
|
+
holeShape?: "circle" | undefined;
|
|
8076
|
+
padShape?: "rect" | undefined;
|
|
8077
|
+
}, {
|
|
8078
|
+
holeDiameter: string | number;
|
|
8079
|
+
rectPadWidth: string | number;
|
|
8080
|
+
rectPadHeight: string | number;
|
|
8081
|
+
pcbX?: string | number | undefined;
|
|
8082
|
+
pcbY?: string | number | undefined;
|
|
8083
|
+
name?: string | undefined;
|
|
8084
|
+
shape?: "circularHoleWithRectPad" | undefined;
|
|
8085
|
+
portHints?: (string | number)[] | undefined;
|
|
8086
|
+
holeShape?: "circle" | undefined;
|
|
8087
|
+
padShape?: "rect" | undefined;
|
|
7930
8088
|
}>]>;
|
|
7931
8089
|
|
|
7932
8090
|
interface ResistorProps extends CommonComponentProps {
|
|
@@ -9624,6 +9782,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9624
9782
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
9625
9783
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
9626
9784
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
9785
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
9627
9786
|
}, "strip", z.ZodTypeAny, {
|
|
9628
9787
|
grid?: boolean | undefined;
|
|
9629
9788
|
flex?: string | boolean | undefined;
|
|
@@ -9640,6 +9799,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9640
9799
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
9641
9800
|
flexRow?: boolean | undefined;
|
|
9642
9801
|
flexColumn?: boolean | undefined;
|
|
9802
|
+
gap?: string | number | undefined;
|
|
9643
9803
|
}, {
|
|
9644
9804
|
grid?: boolean | undefined;
|
|
9645
9805
|
flex?: string | boolean | undefined;
|
|
@@ -9656,6 +9816,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9656
9816
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
9657
9817
|
flexRow?: boolean | undefined;
|
|
9658
9818
|
flexColumn?: boolean | undefined;
|
|
9819
|
+
gap?: string | number | undefined;
|
|
9659
9820
|
}>>;
|
|
9660
9821
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
9661
9822
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
@@ -9673,6 +9834,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9673
9834
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
9674
9835
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
9675
9836
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
9837
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
9676
9838
|
}, "strip", z.ZodTypeAny, {
|
|
9677
9839
|
grid?: boolean | undefined;
|
|
9678
9840
|
flex?: string | boolean | undefined;
|
|
@@ -9689,6 +9851,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9689
9851
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
9690
9852
|
flexRow?: boolean | undefined;
|
|
9691
9853
|
flexColumn?: boolean | undefined;
|
|
9854
|
+
gap?: string | number | undefined;
|
|
9692
9855
|
}, {
|
|
9693
9856
|
grid?: boolean | undefined;
|
|
9694
9857
|
flex?: string | boolean | undefined;
|
|
@@ -9705,6 +9868,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9705
9868
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
9706
9869
|
flexRow?: boolean | undefined;
|
|
9707
9870
|
flexColumn?: boolean | undefined;
|
|
9871
|
+
gap?: string | number | undefined;
|
|
9708
9872
|
}>>;
|
|
9709
9873
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
9710
9874
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -9721,6 +9885,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9721
9885
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
9722
9886
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
9723
9887
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
9888
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
9724
9889
|
name: z.ZodOptional<z.ZodString>;
|
|
9725
9890
|
children: z.ZodOptional<z.ZodAny>;
|
|
9726
9891
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -9981,6 +10146,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
9981
10146
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
9982
10147
|
flexRow?: boolean | undefined;
|
|
9983
10148
|
flexColumn?: boolean | undefined;
|
|
10149
|
+
gap?: string | number | undefined;
|
|
9984
10150
|
pcbWidth?: number | undefined;
|
|
9985
10151
|
pcbHeight?: number | undefined;
|
|
9986
10152
|
schWidth?: number | undefined;
|
|
@@ -10001,6 +10167,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
10001
10167
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
10002
10168
|
flexRow?: boolean | undefined;
|
|
10003
10169
|
flexColumn?: boolean | undefined;
|
|
10170
|
+
gap?: string | number | undefined;
|
|
10004
10171
|
} | undefined;
|
|
10005
10172
|
schLayout?: {
|
|
10006
10173
|
grid?: boolean | undefined;
|
|
@@ -10018,6 +10185,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
10018
10185
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
10019
10186
|
flexRow?: boolean | undefined;
|
|
10020
10187
|
flexColumn?: boolean | undefined;
|
|
10188
|
+
gap?: string | number | undefined;
|
|
10021
10189
|
} | undefined;
|
|
10022
10190
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
10023
10191
|
manualEdits?: {
|
|
@@ -10111,6 +10279,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
10111
10279
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
10112
10280
|
flexRow?: boolean | undefined;
|
|
10113
10281
|
flexColumn?: boolean | undefined;
|
|
10282
|
+
gap?: string | number | undefined;
|
|
10114
10283
|
pcbWidth?: string | number | undefined;
|
|
10115
10284
|
pcbHeight?: string | number | undefined;
|
|
10116
10285
|
schWidth?: string | number | undefined;
|
|
@@ -10131,6 +10300,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
10131
10300
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
10132
10301
|
flexRow?: boolean | undefined;
|
|
10133
10302
|
flexColumn?: boolean | undefined;
|
|
10303
|
+
gap?: string | number | undefined;
|
|
10134
10304
|
} | undefined;
|
|
10135
10305
|
schLayout?: {
|
|
10136
10306
|
grid?: boolean | undefined;
|
|
@@ -10148,6 +10318,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
10148
10318
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
10149
10319
|
flexRow?: boolean | undefined;
|
|
10150
10320
|
flexColumn?: boolean | undefined;
|
|
10321
|
+
gap?: string | number | undefined;
|
|
10151
10322
|
} | undefined;
|
|
10152
10323
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
10153
10324
|
manualEdits?: {
|
|
@@ -12966,6 +13137,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
12966
13137
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
12967
13138
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
12968
13139
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
13140
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
12969
13141
|
}, "strip", z.ZodTypeAny, {
|
|
12970
13142
|
grid?: boolean | undefined;
|
|
12971
13143
|
flex?: string | boolean | undefined;
|
|
@@ -12982,6 +13154,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
12982
13154
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
12983
13155
|
flexRow?: boolean | undefined;
|
|
12984
13156
|
flexColumn?: boolean | undefined;
|
|
13157
|
+
gap?: string | number | undefined;
|
|
12985
13158
|
}, {
|
|
12986
13159
|
grid?: boolean | undefined;
|
|
12987
13160
|
flex?: string | boolean | undefined;
|
|
@@ -12998,6 +13171,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
12998
13171
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
12999
13172
|
flexRow?: boolean | undefined;
|
|
13000
13173
|
flexColumn?: boolean | undefined;
|
|
13174
|
+
gap?: string | number | undefined;
|
|
13001
13175
|
}>>;
|
|
13002
13176
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
13003
13177
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
@@ -13015,6 +13189,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13015
13189
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
13016
13190
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
13017
13191
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
13192
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
13018
13193
|
}, "strip", z.ZodTypeAny, {
|
|
13019
13194
|
grid?: boolean | undefined;
|
|
13020
13195
|
flex?: string | boolean | undefined;
|
|
@@ -13031,6 +13206,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13031
13206
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
13032
13207
|
flexRow?: boolean | undefined;
|
|
13033
13208
|
flexColumn?: boolean | undefined;
|
|
13209
|
+
gap?: string | number | undefined;
|
|
13034
13210
|
}, {
|
|
13035
13211
|
grid?: boolean | undefined;
|
|
13036
13212
|
flex?: string | boolean | undefined;
|
|
@@ -13047,6 +13223,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13047
13223
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
13048
13224
|
flexRow?: boolean | undefined;
|
|
13049
13225
|
flexColumn?: boolean | undefined;
|
|
13226
|
+
gap?: string | number | undefined;
|
|
13050
13227
|
}>>;
|
|
13051
13228
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "none"]>>;
|
|
13052
13229
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -13063,6 +13240,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13063
13240
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
13064
13241
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
13065
13242
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
13243
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
13066
13244
|
name: z.ZodOptional<z.ZodString>;
|
|
13067
13245
|
children: z.ZodOptional<z.ZodAny>;
|
|
13068
13246
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -13293,6 +13471,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13293
13471
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
13294
13472
|
flexRow?: boolean | undefined;
|
|
13295
13473
|
flexColumn?: boolean | undefined;
|
|
13474
|
+
gap?: string | number | undefined;
|
|
13296
13475
|
pcbWidth?: number | undefined;
|
|
13297
13476
|
pcbHeight?: number | undefined;
|
|
13298
13477
|
schWidth?: number | undefined;
|
|
@@ -13313,6 +13492,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13313
13492
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
13314
13493
|
flexRow?: boolean | undefined;
|
|
13315
13494
|
flexColumn?: boolean | undefined;
|
|
13495
|
+
gap?: string | number | undefined;
|
|
13316
13496
|
} | undefined;
|
|
13317
13497
|
schLayout?: {
|
|
13318
13498
|
grid?: boolean | undefined;
|
|
@@ -13330,6 +13510,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13330
13510
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
13331
13511
|
flexRow?: boolean | undefined;
|
|
13332
13512
|
flexColumn?: boolean | undefined;
|
|
13513
|
+
gap?: string | number | undefined;
|
|
13333
13514
|
} | undefined;
|
|
13334
13515
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
13335
13516
|
manualEdits?: {
|
|
@@ -13405,6 +13586,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13405
13586
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
13406
13587
|
flexRow?: boolean | undefined;
|
|
13407
13588
|
flexColumn?: boolean | undefined;
|
|
13589
|
+
gap?: string | number | undefined;
|
|
13408
13590
|
pcbWidth?: string | number | undefined;
|
|
13409
13591
|
pcbHeight?: string | number | undefined;
|
|
13410
13592
|
schWidth?: string | number | undefined;
|
|
@@ -13425,6 +13607,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13425
13607
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
13426
13608
|
flexRow?: boolean | undefined;
|
|
13427
13609
|
flexColumn?: boolean | undefined;
|
|
13610
|
+
gap?: string | number | undefined;
|
|
13428
13611
|
} | undefined;
|
|
13429
13612
|
schLayout?: {
|
|
13430
13613
|
grid?: boolean | undefined;
|
|
@@ -13442,6 +13625,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13442
13625
|
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
13443
13626
|
flexRow?: boolean | undefined;
|
|
13444
13627
|
flexColumn?: boolean | undefined;
|
|
13628
|
+
gap?: string | number | undefined;
|
|
13445
13629
|
} | undefined;
|
|
13446
13630
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
13447
13631
|
manualEdits?: {
|
|
@@ -17341,4 +17525,4 @@ declare const platformConfig: z.ZodObject<{
|
|
|
17341
17525
|
cloudAutorouterUrl?: string | undefined;
|
|
17342
17526
|
}>;
|
|
17343
17527
|
|
|
17344
|
-
export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryProps, type BoardProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorProps, type ChipProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConstrainedLayoutProps, type ConstraintProps, type CrystalProps, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type Footprint, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type GroupProps, type HoleProps, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type JumperProps, type LayoutConfig, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetProps, type NetAliasProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PillSmtPadProps, type PinHeaderProps, type PinLabels, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicLineProps, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicTextProps, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TraceHintProps, type TraceProps, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPins, capacitorProps, chipProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_schematic_component_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectSmtPadProps, rectSolderPasteProps, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicLineProps, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };
|
|
17528
|
+
export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryProps, type BoardProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorProps, type ChipProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConstrainedLayoutProps, type ConstraintProps, type CrystalProps, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type Footprint, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type GroupProps, type HoleProps, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type JumperProps, type LayoutConfig, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetProps, type NetAliasProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PillSmtPadProps, type PinHeaderProps, type PinLabels, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicLineProps, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicTextProps, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TraceHintProps, type TraceProps, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPins, capacitorProps, chipProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_schematic_component_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectSmtPadProps, rectSolderPasteProps, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicLineProps, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };
|