@tscircuit/props 0.0.208 → 0.0.210
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 +215 -7
- package/dist/index.js +8 -3
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +2 -0
- package/lib/components/schematic-box.ts +8 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2733,6 +2733,7 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2733
2733
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2734
2734
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2735
2735
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
2736
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
2736
2737
|
}, "strip", z.ZodTypeAny, {
|
|
2737
2738
|
grid?: boolean | undefined;
|
|
2738
2739
|
flex?: string | boolean | undefined;
|
|
@@ -2753,6 +2754,7 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2753
2754
|
width?: number | undefined;
|
|
2754
2755
|
height?: number | undefined;
|
|
2755
2756
|
matchAdapt?: boolean | undefined;
|
|
2757
|
+
matchAdaptTemplate?: any;
|
|
2756
2758
|
}, {
|
|
2757
2759
|
grid?: boolean | undefined;
|
|
2758
2760
|
flex?: string | boolean | undefined;
|
|
@@ -2773,6 +2775,7 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2773
2775
|
width?: string | number | undefined;
|
|
2774
2776
|
height?: string | number | undefined;
|
|
2775
2777
|
matchAdapt?: boolean | undefined;
|
|
2778
|
+
matchAdaptTemplate?: any;
|
|
2776
2779
|
}>;
|
|
2777
2780
|
interface LayoutConfig {
|
|
2778
2781
|
layoutMode?: "grid" | "flex" | "match-adapt" | "none";
|
|
@@ -2794,6 +2797,7 @@ interface LayoutConfig {
|
|
|
2794
2797
|
width?: Distance;
|
|
2795
2798
|
height?: Distance;
|
|
2796
2799
|
matchAdapt?: boolean;
|
|
2800
|
+
matchAdaptTemplate?: any;
|
|
2797
2801
|
}
|
|
2798
2802
|
interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
|
|
2799
2803
|
name?: string;
|
|
@@ -2952,6 +2956,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2952
2956
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2953
2957
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2954
2958
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
2959
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
2955
2960
|
}, "strip", z.ZodTypeAny, {
|
|
2956
2961
|
grid?: boolean | undefined;
|
|
2957
2962
|
flex?: string | boolean | undefined;
|
|
@@ -2972,6 +2977,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2972
2977
|
width?: number | undefined;
|
|
2973
2978
|
height?: number | undefined;
|
|
2974
2979
|
matchAdapt?: boolean | undefined;
|
|
2980
|
+
matchAdaptTemplate?: any;
|
|
2975
2981
|
}, {
|
|
2976
2982
|
grid?: boolean | undefined;
|
|
2977
2983
|
flex?: string | boolean | undefined;
|
|
@@ -2992,6 +2998,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2992
2998
|
width?: string | number | undefined;
|
|
2993
2999
|
height?: string | number | undefined;
|
|
2994
3000
|
matchAdapt?: boolean | undefined;
|
|
3001
|
+
matchAdaptTemplate?: any;
|
|
2995
3002
|
}>>;
|
|
2996
3003
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
2997
3004
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
@@ -3013,6 +3020,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3013
3020
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3014
3021
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3015
3022
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
3023
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
3016
3024
|
}, "strip", z.ZodTypeAny, {
|
|
3017
3025
|
grid?: boolean | undefined;
|
|
3018
3026
|
flex?: string | boolean | undefined;
|
|
@@ -3033,6 +3041,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3033
3041
|
width?: number | undefined;
|
|
3034
3042
|
height?: number | undefined;
|
|
3035
3043
|
matchAdapt?: boolean | undefined;
|
|
3044
|
+
matchAdaptTemplate?: any;
|
|
3036
3045
|
}, {
|
|
3037
3046
|
grid?: boolean | undefined;
|
|
3038
3047
|
flex?: string | boolean | undefined;
|
|
@@ -3053,6 +3062,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3053
3062
|
width?: string | number | undefined;
|
|
3054
3063
|
height?: string | number | undefined;
|
|
3055
3064
|
matchAdapt?: boolean | undefined;
|
|
3065
|
+
matchAdaptTemplate?: any;
|
|
3056
3066
|
}>>;
|
|
3057
3067
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
3058
3068
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -3073,6 +3083,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3073
3083
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3074
3084
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3075
3085
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
3086
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
3076
3087
|
name: z.ZodOptional<z.ZodString>;
|
|
3077
3088
|
children: z.ZodOptional<z.ZodAny>;
|
|
3078
3089
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -3107,6 +3118,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3107
3118
|
width?: number | undefined;
|
|
3108
3119
|
height?: number | undefined;
|
|
3109
3120
|
matchAdapt?: boolean | undefined;
|
|
3121
|
+
matchAdaptTemplate?: any;
|
|
3110
3122
|
pcbWidth?: number | undefined;
|
|
3111
3123
|
pcbHeight?: number | undefined;
|
|
3112
3124
|
schWidth?: number | undefined;
|
|
@@ -3131,6 +3143,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3131
3143
|
width?: number | undefined;
|
|
3132
3144
|
height?: number | undefined;
|
|
3133
3145
|
matchAdapt?: boolean | undefined;
|
|
3146
|
+
matchAdaptTemplate?: any;
|
|
3134
3147
|
} | undefined;
|
|
3135
3148
|
schLayout?: {
|
|
3136
3149
|
grid?: boolean | undefined;
|
|
@@ -3152,6 +3165,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3152
3165
|
width?: number | undefined;
|
|
3153
3166
|
height?: number | undefined;
|
|
3154
3167
|
matchAdapt?: boolean | undefined;
|
|
3168
|
+
matchAdaptTemplate?: any;
|
|
3155
3169
|
} | undefined;
|
|
3156
3170
|
}, {
|
|
3157
3171
|
pcbX?: string | number | undefined;
|
|
@@ -3186,6 +3200,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3186
3200
|
width?: string | number | undefined;
|
|
3187
3201
|
height?: string | number | undefined;
|
|
3188
3202
|
matchAdapt?: boolean | undefined;
|
|
3203
|
+
matchAdaptTemplate?: any;
|
|
3189
3204
|
pcbWidth?: string | number | undefined;
|
|
3190
3205
|
pcbHeight?: string | number | undefined;
|
|
3191
3206
|
schWidth?: string | number | undefined;
|
|
@@ -3210,6 +3225,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3210
3225
|
width?: string | number | undefined;
|
|
3211
3226
|
height?: string | number | undefined;
|
|
3212
3227
|
matchAdapt?: boolean | undefined;
|
|
3228
|
+
matchAdaptTemplate?: any;
|
|
3213
3229
|
} | undefined;
|
|
3214
3230
|
schLayout?: {
|
|
3215
3231
|
grid?: boolean | undefined;
|
|
@@ -3231,6 +3247,7 @@ declare const baseGroupProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3231
3247
|
width?: string | number | undefined;
|
|
3232
3248
|
height?: string | number | undefined;
|
|
3233
3249
|
matchAdapt?: boolean | undefined;
|
|
3250
|
+
matchAdaptTemplate?: any;
|
|
3234
3251
|
} | undefined;
|
|
3235
3252
|
}>;
|
|
3236
3253
|
declare const partsEngine: z.ZodType<PartsEngine, z.ZodTypeDef, PartsEngine>;
|
|
@@ -3276,6 +3293,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3276
3293
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3277
3294
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3278
3295
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
3296
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
3279
3297
|
}, "strip", z.ZodTypeAny, {
|
|
3280
3298
|
grid?: boolean | undefined;
|
|
3281
3299
|
flex?: string | boolean | undefined;
|
|
@@ -3296,6 +3314,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3296
3314
|
width?: number | undefined;
|
|
3297
3315
|
height?: number | undefined;
|
|
3298
3316
|
matchAdapt?: boolean | undefined;
|
|
3317
|
+
matchAdaptTemplate?: any;
|
|
3299
3318
|
}, {
|
|
3300
3319
|
grid?: boolean | undefined;
|
|
3301
3320
|
flex?: string | boolean | undefined;
|
|
@@ -3316,6 +3335,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3316
3335
|
width?: string | number | undefined;
|
|
3317
3336
|
height?: string | number | undefined;
|
|
3318
3337
|
matchAdapt?: boolean | undefined;
|
|
3338
|
+
matchAdaptTemplate?: any;
|
|
3319
3339
|
}>>;
|
|
3320
3340
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
3321
3341
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
@@ -3337,6 +3357,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3337
3357
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3338
3358
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3339
3359
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
3360
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
3340
3361
|
}, "strip", z.ZodTypeAny, {
|
|
3341
3362
|
grid?: boolean | undefined;
|
|
3342
3363
|
flex?: string | boolean | undefined;
|
|
@@ -3357,6 +3378,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3357
3378
|
width?: number | undefined;
|
|
3358
3379
|
height?: number | undefined;
|
|
3359
3380
|
matchAdapt?: boolean | undefined;
|
|
3381
|
+
matchAdaptTemplate?: any;
|
|
3360
3382
|
}, {
|
|
3361
3383
|
grid?: boolean | undefined;
|
|
3362
3384
|
flex?: string | boolean | undefined;
|
|
@@ -3377,6 +3399,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3377
3399
|
width?: string | number | undefined;
|
|
3378
3400
|
height?: string | number | undefined;
|
|
3379
3401
|
matchAdapt?: boolean | undefined;
|
|
3402
|
+
matchAdaptTemplate?: any;
|
|
3380
3403
|
}>>;
|
|
3381
3404
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
3382
3405
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -3397,6 +3420,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3397
3420
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3398
3421
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3399
3422
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
3423
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
3400
3424
|
name: z.ZodOptional<z.ZodString>;
|
|
3401
3425
|
children: z.ZodOptional<z.ZodAny>;
|
|
3402
3426
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -3634,6 +3658,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3634
3658
|
width?: number | undefined;
|
|
3635
3659
|
height?: number | undefined;
|
|
3636
3660
|
matchAdapt?: boolean | undefined;
|
|
3661
|
+
matchAdaptTemplate?: any;
|
|
3637
3662
|
pcbWidth?: number | undefined;
|
|
3638
3663
|
pcbHeight?: number | undefined;
|
|
3639
3664
|
schWidth?: number | undefined;
|
|
@@ -3658,6 +3683,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3658
3683
|
width?: number | undefined;
|
|
3659
3684
|
height?: number | undefined;
|
|
3660
3685
|
matchAdapt?: boolean | undefined;
|
|
3686
|
+
matchAdaptTemplate?: any;
|
|
3661
3687
|
} | undefined;
|
|
3662
3688
|
schLayout?: {
|
|
3663
3689
|
grid?: boolean | undefined;
|
|
@@ -3679,6 +3705,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3679
3705
|
width?: number | undefined;
|
|
3680
3706
|
height?: number | undefined;
|
|
3681
3707
|
matchAdapt?: boolean | undefined;
|
|
3708
|
+
matchAdaptTemplate?: any;
|
|
3682
3709
|
} | undefined;
|
|
3683
3710
|
layout?: LayoutBuilder | undefined;
|
|
3684
3711
|
manualEdits?: {
|
|
@@ -3759,6 +3786,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3759
3786
|
width?: string | number | undefined;
|
|
3760
3787
|
height?: string | number | undefined;
|
|
3761
3788
|
matchAdapt?: boolean | undefined;
|
|
3789
|
+
matchAdaptTemplate?: any;
|
|
3762
3790
|
pcbWidth?: string | number | undefined;
|
|
3763
3791
|
pcbHeight?: string | number | undefined;
|
|
3764
3792
|
schWidth?: string | number | undefined;
|
|
@@ -3783,6 +3811,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3783
3811
|
width?: string | number | undefined;
|
|
3784
3812
|
height?: string | number | undefined;
|
|
3785
3813
|
matchAdapt?: boolean | undefined;
|
|
3814
|
+
matchAdaptTemplate?: any;
|
|
3786
3815
|
} | undefined;
|
|
3787
3816
|
schLayout?: {
|
|
3788
3817
|
grid?: boolean | undefined;
|
|
@@ -3804,6 +3833,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3804
3833
|
width?: string | number | undefined;
|
|
3805
3834
|
height?: string | number | undefined;
|
|
3806
3835
|
matchAdapt?: boolean | undefined;
|
|
3836
|
+
matchAdaptTemplate?: any;
|
|
3807
3837
|
} | undefined;
|
|
3808
3838
|
layout?: LayoutBuilder | undefined;
|
|
3809
3839
|
manualEdits?: {
|
|
@@ -3896,6 +3926,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3896
3926
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3897
3927
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3898
3928
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
3929
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
3899
3930
|
}, "strip", z.ZodTypeAny, {
|
|
3900
3931
|
grid?: boolean | undefined;
|
|
3901
3932
|
flex?: string | boolean | undefined;
|
|
@@ -3916,6 +3947,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3916
3947
|
width?: number | undefined;
|
|
3917
3948
|
height?: number | undefined;
|
|
3918
3949
|
matchAdapt?: boolean | undefined;
|
|
3950
|
+
matchAdaptTemplate?: any;
|
|
3919
3951
|
}, {
|
|
3920
3952
|
grid?: boolean | undefined;
|
|
3921
3953
|
flex?: string | boolean | undefined;
|
|
@@ -3936,6 +3968,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3936
3968
|
width?: string | number | undefined;
|
|
3937
3969
|
height?: string | number | undefined;
|
|
3938
3970
|
matchAdapt?: boolean | undefined;
|
|
3971
|
+
matchAdaptTemplate?: any;
|
|
3939
3972
|
}>>;
|
|
3940
3973
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
3941
3974
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
@@ -3957,6 +3990,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3957
3990
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3958
3991
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3959
3992
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
3993
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
3960
3994
|
}, "strip", z.ZodTypeAny, {
|
|
3961
3995
|
grid?: boolean | undefined;
|
|
3962
3996
|
flex?: string | boolean | undefined;
|
|
@@ -3977,6 +4011,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3977
4011
|
width?: number | undefined;
|
|
3978
4012
|
height?: number | undefined;
|
|
3979
4013
|
matchAdapt?: boolean | undefined;
|
|
4014
|
+
matchAdaptTemplate?: any;
|
|
3980
4015
|
}, {
|
|
3981
4016
|
grid?: boolean | undefined;
|
|
3982
4017
|
flex?: string | boolean | undefined;
|
|
@@ -3997,6 +4032,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
3997
4032
|
width?: string | number | undefined;
|
|
3998
4033
|
height?: string | number | undefined;
|
|
3999
4034
|
matchAdapt?: boolean | undefined;
|
|
4035
|
+
matchAdaptTemplate?: any;
|
|
4000
4036
|
}>>;
|
|
4001
4037
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
4002
4038
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -4017,6 +4053,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4017
4053
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4018
4054
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4019
4055
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
4056
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
4020
4057
|
name: z.ZodOptional<z.ZodString>;
|
|
4021
4058
|
children: z.ZodOptional<z.ZodAny>;
|
|
4022
4059
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -4257,6 +4294,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4257
4294
|
width?: number | undefined;
|
|
4258
4295
|
height?: number | undefined;
|
|
4259
4296
|
matchAdapt?: boolean | undefined;
|
|
4297
|
+
matchAdaptTemplate?: any;
|
|
4260
4298
|
pcbWidth?: number | undefined;
|
|
4261
4299
|
pcbHeight?: number | undefined;
|
|
4262
4300
|
schWidth?: number | undefined;
|
|
@@ -4281,6 +4319,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4281
4319
|
width?: number | undefined;
|
|
4282
4320
|
height?: number | undefined;
|
|
4283
4321
|
matchAdapt?: boolean | undefined;
|
|
4322
|
+
matchAdaptTemplate?: any;
|
|
4284
4323
|
} | undefined;
|
|
4285
4324
|
schLayout?: {
|
|
4286
4325
|
grid?: boolean | undefined;
|
|
@@ -4302,6 +4341,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4302
4341
|
width?: number | undefined;
|
|
4303
4342
|
height?: number | undefined;
|
|
4304
4343
|
matchAdapt?: boolean | undefined;
|
|
4344
|
+
matchAdaptTemplate?: any;
|
|
4305
4345
|
} | undefined;
|
|
4306
4346
|
layout?: LayoutBuilder | undefined;
|
|
4307
4347
|
manualEdits?: {
|
|
@@ -4383,6 +4423,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4383
4423
|
width?: string | number | undefined;
|
|
4384
4424
|
height?: string | number | undefined;
|
|
4385
4425
|
matchAdapt?: boolean | undefined;
|
|
4426
|
+
matchAdaptTemplate?: any;
|
|
4386
4427
|
pcbWidth?: string | number | undefined;
|
|
4387
4428
|
pcbHeight?: string | number | undefined;
|
|
4388
4429
|
schWidth?: string | number | undefined;
|
|
@@ -4407,6 +4448,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4407
4448
|
width?: string | number | undefined;
|
|
4408
4449
|
height?: string | number | undefined;
|
|
4409
4450
|
matchAdapt?: boolean | undefined;
|
|
4451
|
+
matchAdaptTemplate?: any;
|
|
4410
4452
|
} | undefined;
|
|
4411
4453
|
schLayout?: {
|
|
4412
4454
|
grid?: boolean | undefined;
|
|
@@ -4428,6 +4470,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4428
4470
|
width?: string | number | undefined;
|
|
4429
4471
|
height?: string | number | undefined;
|
|
4430
4472
|
matchAdapt?: boolean | undefined;
|
|
4473
|
+
matchAdaptTemplate?: any;
|
|
4431
4474
|
} | undefined;
|
|
4432
4475
|
layout?: LayoutBuilder | undefined;
|
|
4433
4476
|
manualEdits?: {
|
|
@@ -4520,6 +4563,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4520
4563
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4521
4564
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4522
4565
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
4566
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
4523
4567
|
}, "strip", z.ZodTypeAny, {
|
|
4524
4568
|
grid?: boolean | undefined;
|
|
4525
4569
|
flex?: string | boolean | undefined;
|
|
@@ -4540,6 +4584,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4540
4584
|
width?: number | undefined;
|
|
4541
4585
|
height?: number | undefined;
|
|
4542
4586
|
matchAdapt?: boolean | undefined;
|
|
4587
|
+
matchAdaptTemplate?: any;
|
|
4543
4588
|
}, {
|
|
4544
4589
|
grid?: boolean | undefined;
|
|
4545
4590
|
flex?: string | boolean | undefined;
|
|
@@ -4560,6 +4605,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4560
4605
|
width?: string | number | undefined;
|
|
4561
4606
|
height?: string | number | undefined;
|
|
4562
4607
|
matchAdapt?: boolean | undefined;
|
|
4608
|
+
matchAdaptTemplate?: any;
|
|
4563
4609
|
}>>;
|
|
4564
4610
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
4565
4611
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
@@ -4581,6 +4627,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4581
4627
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4582
4628
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4583
4629
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
4630
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
4584
4631
|
}, "strip", z.ZodTypeAny, {
|
|
4585
4632
|
grid?: boolean | undefined;
|
|
4586
4633
|
flex?: string | boolean | undefined;
|
|
@@ -4601,6 +4648,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4601
4648
|
width?: number | undefined;
|
|
4602
4649
|
height?: number | undefined;
|
|
4603
4650
|
matchAdapt?: boolean | undefined;
|
|
4651
|
+
matchAdaptTemplate?: any;
|
|
4604
4652
|
}, {
|
|
4605
4653
|
grid?: boolean | undefined;
|
|
4606
4654
|
flex?: string | boolean | undefined;
|
|
@@ -4621,6 +4669,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4621
4669
|
width?: string | number | undefined;
|
|
4622
4670
|
height?: string | number | undefined;
|
|
4623
4671
|
matchAdapt?: boolean | undefined;
|
|
4672
|
+
matchAdaptTemplate?: any;
|
|
4624
4673
|
}>>;
|
|
4625
4674
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
4626
4675
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -4641,6 +4690,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4641
4690
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4642
4691
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4643
4692
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
4693
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
4644
4694
|
name: z.ZodOptional<z.ZodString>;
|
|
4645
4695
|
children: z.ZodOptional<z.ZodAny>;
|
|
4646
4696
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -4677,6 +4727,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4677
4727
|
width?: number | undefined;
|
|
4678
4728
|
height?: number | undefined;
|
|
4679
4729
|
matchAdapt?: boolean | undefined;
|
|
4730
|
+
matchAdaptTemplate?: any;
|
|
4680
4731
|
pcbWidth?: number | undefined;
|
|
4681
4732
|
pcbHeight?: number | undefined;
|
|
4682
4733
|
schWidth?: number | undefined;
|
|
@@ -4701,6 +4752,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4701
4752
|
width?: number | undefined;
|
|
4702
4753
|
height?: number | undefined;
|
|
4703
4754
|
matchAdapt?: boolean | undefined;
|
|
4755
|
+
matchAdaptTemplate?: any;
|
|
4704
4756
|
} | undefined;
|
|
4705
4757
|
schLayout?: {
|
|
4706
4758
|
grid?: boolean | undefined;
|
|
@@ -4722,6 +4774,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4722
4774
|
width?: number | undefined;
|
|
4723
4775
|
height?: number | undefined;
|
|
4724
4776
|
matchAdapt?: boolean | undefined;
|
|
4777
|
+
matchAdaptTemplate?: any;
|
|
4725
4778
|
} | undefined;
|
|
4726
4779
|
subcircuit?: false | undefined;
|
|
4727
4780
|
}, {
|
|
@@ -4757,6 +4810,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4757
4810
|
width?: string | number | undefined;
|
|
4758
4811
|
height?: string | number | undefined;
|
|
4759
4812
|
matchAdapt?: boolean | undefined;
|
|
4813
|
+
matchAdaptTemplate?: any;
|
|
4760
4814
|
pcbWidth?: string | number | undefined;
|
|
4761
4815
|
pcbHeight?: string | number | undefined;
|
|
4762
4816
|
schWidth?: string | number | undefined;
|
|
@@ -4781,6 +4835,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4781
4835
|
width?: string | number | undefined;
|
|
4782
4836
|
height?: string | number | undefined;
|
|
4783
4837
|
matchAdapt?: boolean | undefined;
|
|
4838
|
+
matchAdaptTemplate?: any;
|
|
4784
4839
|
} | undefined;
|
|
4785
4840
|
schLayout?: {
|
|
4786
4841
|
grid?: boolean | undefined;
|
|
@@ -4802,6 +4857,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4802
4857
|
width?: string | number | undefined;
|
|
4803
4858
|
height?: string | number | undefined;
|
|
4804
4859
|
matchAdapt?: boolean | undefined;
|
|
4860
|
+
matchAdaptTemplate?: any;
|
|
4805
4861
|
} | undefined;
|
|
4806
4862
|
subcircuit?: false | undefined;
|
|
4807
4863
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -4846,6 +4902,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4846
4902
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4847
4903
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4848
4904
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
4905
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
4849
4906
|
}, "strip", z.ZodTypeAny, {
|
|
4850
4907
|
grid?: boolean | undefined;
|
|
4851
4908
|
flex?: string | boolean | undefined;
|
|
@@ -4866,6 +4923,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4866
4923
|
width?: number | undefined;
|
|
4867
4924
|
height?: number | undefined;
|
|
4868
4925
|
matchAdapt?: boolean | undefined;
|
|
4926
|
+
matchAdaptTemplate?: any;
|
|
4869
4927
|
}, {
|
|
4870
4928
|
grid?: boolean | undefined;
|
|
4871
4929
|
flex?: string | boolean | undefined;
|
|
@@ -4886,6 +4944,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4886
4944
|
width?: string | number | undefined;
|
|
4887
4945
|
height?: string | number | undefined;
|
|
4888
4946
|
matchAdapt?: boolean | undefined;
|
|
4947
|
+
matchAdaptTemplate?: any;
|
|
4889
4948
|
}>>;
|
|
4890
4949
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
4891
4950
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
@@ -4907,6 +4966,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4907
4966
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4908
4967
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4909
4968
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
4969
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
4910
4970
|
}, "strip", z.ZodTypeAny, {
|
|
4911
4971
|
grid?: boolean | undefined;
|
|
4912
4972
|
flex?: string | boolean | undefined;
|
|
@@ -4927,6 +4987,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4927
4987
|
width?: number | undefined;
|
|
4928
4988
|
height?: number | undefined;
|
|
4929
4989
|
matchAdapt?: boolean | undefined;
|
|
4990
|
+
matchAdaptTemplate?: any;
|
|
4930
4991
|
}, {
|
|
4931
4992
|
grid?: boolean | undefined;
|
|
4932
4993
|
flex?: string | boolean | undefined;
|
|
@@ -4947,6 +5008,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4947
5008
|
width?: string | number | undefined;
|
|
4948
5009
|
height?: string | number | undefined;
|
|
4949
5010
|
matchAdapt?: boolean | undefined;
|
|
5011
|
+
matchAdaptTemplate?: any;
|
|
4950
5012
|
}>>;
|
|
4951
5013
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
4952
5014
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -4967,6 +5029,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
4967
5029
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4968
5030
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4969
5031
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
5032
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
4970
5033
|
name: z.ZodOptional<z.ZodString>;
|
|
4971
5034
|
children: z.ZodOptional<z.ZodAny>;
|
|
4972
5035
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -5207,6 +5270,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5207
5270
|
width?: number | undefined;
|
|
5208
5271
|
height?: number | undefined;
|
|
5209
5272
|
matchAdapt?: boolean | undefined;
|
|
5273
|
+
matchAdaptTemplate?: any;
|
|
5210
5274
|
pcbWidth?: number | undefined;
|
|
5211
5275
|
pcbHeight?: number | undefined;
|
|
5212
5276
|
schWidth?: number | undefined;
|
|
@@ -5231,6 +5295,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5231
5295
|
width?: number | undefined;
|
|
5232
5296
|
height?: number | undefined;
|
|
5233
5297
|
matchAdapt?: boolean | undefined;
|
|
5298
|
+
matchAdaptTemplate?: any;
|
|
5234
5299
|
} | undefined;
|
|
5235
5300
|
schLayout?: {
|
|
5236
5301
|
grid?: boolean | undefined;
|
|
@@ -5252,6 +5317,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5252
5317
|
width?: number | undefined;
|
|
5253
5318
|
height?: number | undefined;
|
|
5254
5319
|
matchAdapt?: boolean | undefined;
|
|
5320
|
+
matchAdaptTemplate?: any;
|
|
5255
5321
|
} | undefined;
|
|
5256
5322
|
layout?: LayoutBuilder | undefined;
|
|
5257
5323
|
manualEdits?: {
|
|
@@ -5333,6 +5399,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5333
5399
|
width?: string | number | undefined;
|
|
5334
5400
|
height?: string | number | undefined;
|
|
5335
5401
|
matchAdapt?: boolean | undefined;
|
|
5402
|
+
matchAdaptTemplate?: any;
|
|
5336
5403
|
pcbWidth?: string | number | undefined;
|
|
5337
5404
|
pcbHeight?: string | number | undefined;
|
|
5338
5405
|
schWidth?: string | number | undefined;
|
|
@@ -5357,6 +5424,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5357
5424
|
width?: string | number | undefined;
|
|
5358
5425
|
height?: string | number | undefined;
|
|
5359
5426
|
matchAdapt?: boolean | undefined;
|
|
5427
|
+
matchAdaptTemplate?: any;
|
|
5360
5428
|
} | undefined;
|
|
5361
5429
|
schLayout?: {
|
|
5362
5430
|
grid?: boolean | undefined;
|
|
@@ -5378,6 +5446,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
5378
5446
|
width?: string | number | undefined;
|
|
5379
5447
|
height?: string | number | undefined;
|
|
5380
5448
|
matchAdapt?: boolean | undefined;
|
|
5449
|
+
matchAdaptTemplate?: any;
|
|
5381
5450
|
} | undefined;
|
|
5382
5451
|
layout?: LayoutBuilder | undefined;
|
|
5383
5452
|
manualEdits?: {
|
|
@@ -5484,6 +5553,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5484
5553
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5485
5554
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5486
5555
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
5556
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
5487
5557
|
}, "strip", z.ZodTypeAny, {
|
|
5488
5558
|
grid?: boolean | undefined;
|
|
5489
5559
|
flex?: string | boolean | undefined;
|
|
@@ -5504,6 +5574,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5504
5574
|
width?: number | undefined;
|
|
5505
5575
|
height?: number | undefined;
|
|
5506
5576
|
matchAdapt?: boolean | undefined;
|
|
5577
|
+
matchAdaptTemplate?: any;
|
|
5507
5578
|
}, {
|
|
5508
5579
|
grid?: boolean | undefined;
|
|
5509
5580
|
flex?: string | boolean | undefined;
|
|
@@ -5524,6 +5595,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5524
5595
|
width?: string | number | undefined;
|
|
5525
5596
|
height?: string | number | undefined;
|
|
5526
5597
|
matchAdapt?: boolean | undefined;
|
|
5598
|
+
matchAdaptTemplate?: any;
|
|
5527
5599
|
}>>;
|
|
5528
5600
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
5529
5601
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
@@ -5545,6 +5617,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5545
5617
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5546
5618
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5547
5619
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
5620
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
5548
5621
|
}, "strip", z.ZodTypeAny, {
|
|
5549
5622
|
grid?: boolean | undefined;
|
|
5550
5623
|
flex?: string | boolean | undefined;
|
|
@@ -5565,6 +5638,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5565
5638
|
width?: number | undefined;
|
|
5566
5639
|
height?: number | undefined;
|
|
5567
5640
|
matchAdapt?: boolean | undefined;
|
|
5641
|
+
matchAdaptTemplate?: any;
|
|
5568
5642
|
}, {
|
|
5569
5643
|
grid?: boolean | undefined;
|
|
5570
5644
|
flex?: string | boolean | undefined;
|
|
@@ -5585,6 +5659,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5585
5659
|
width?: string | number | undefined;
|
|
5586
5660
|
height?: string | number | undefined;
|
|
5587
5661
|
matchAdapt?: boolean | undefined;
|
|
5662
|
+
matchAdaptTemplate?: any;
|
|
5588
5663
|
}>>;
|
|
5589
5664
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
5590
5665
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -5605,6 +5680,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5605
5680
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5606
5681
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5607
5682
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
5683
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
5608
5684
|
name: z.ZodOptional<z.ZodString>;
|
|
5609
5685
|
children: z.ZodOptional<z.ZodAny>;
|
|
5610
5686
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -5859,6 +5935,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5859
5935
|
width?: number | undefined;
|
|
5860
5936
|
height?: number | undefined;
|
|
5861
5937
|
matchAdapt?: boolean | undefined;
|
|
5938
|
+
matchAdaptTemplate?: any;
|
|
5862
5939
|
pcbWidth?: number | undefined;
|
|
5863
5940
|
pcbHeight?: number | undefined;
|
|
5864
5941
|
schWidth?: number | undefined;
|
|
@@ -5883,6 +5960,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5883
5960
|
width?: number | undefined;
|
|
5884
5961
|
height?: number | undefined;
|
|
5885
5962
|
matchAdapt?: boolean | undefined;
|
|
5963
|
+
matchAdaptTemplate?: any;
|
|
5886
5964
|
} | undefined;
|
|
5887
5965
|
schLayout?: {
|
|
5888
5966
|
grid?: boolean | undefined;
|
|
@@ -5904,6 +5982,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5904
5982
|
width?: number | undefined;
|
|
5905
5983
|
height?: number | undefined;
|
|
5906
5984
|
matchAdapt?: boolean | undefined;
|
|
5985
|
+
matchAdaptTemplate?: any;
|
|
5907
5986
|
} | undefined;
|
|
5908
5987
|
layout?: LayoutBuilder | undefined;
|
|
5909
5988
|
manualEdits?: {
|
|
@@ -5990,6 +6069,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5990
6069
|
width?: string | number | undefined;
|
|
5991
6070
|
height?: string | number | undefined;
|
|
5992
6071
|
matchAdapt?: boolean | undefined;
|
|
6072
|
+
matchAdaptTemplate?: any;
|
|
5993
6073
|
pcbWidth?: string | number | undefined;
|
|
5994
6074
|
pcbHeight?: string | number | undefined;
|
|
5995
6075
|
schWidth?: string | number | undefined;
|
|
@@ -6014,6 +6094,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
6014
6094
|
width?: string | number | undefined;
|
|
6015
6095
|
height?: string | number | undefined;
|
|
6016
6096
|
matchAdapt?: boolean | undefined;
|
|
6097
|
+
matchAdaptTemplate?: any;
|
|
6017
6098
|
} | undefined;
|
|
6018
6099
|
schLayout?: {
|
|
6019
6100
|
grid?: boolean | undefined;
|
|
@@ -6035,6 +6116,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
6035
6116
|
width?: string | number | undefined;
|
|
6036
6117
|
height?: string | number | undefined;
|
|
6037
6118
|
matchAdapt?: boolean | undefined;
|
|
6119
|
+
matchAdaptTemplate?: any;
|
|
6038
6120
|
} | undefined;
|
|
6039
6121
|
layout?: LayoutBuilder | undefined;
|
|
6040
6122
|
manualEdits?: {
|
|
@@ -11666,6 +11748,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11666
11748
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11667
11749
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11668
11750
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
11751
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
11669
11752
|
}, "strip", z.ZodTypeAny, {
|
|
11670
11753
|
grid?: boolean | undefined;
|
|
11671
11754
|
flex?: string | boolean | undefined;
|
|
@@ -11686,6 +11769,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11686
11769
|
width?: number | undefined;
|
|
11687
11770
|
height?: number | undefined;
|
|
11688
11771
|
matchAdapt?: boolean | undefined;
|
|
11772
|
+
matchAdaptTemplate?: any;
|
|
11689
11773
|
}, {
|
|
11690
11774
|
grid?: boolean | undefined;
|
|
11691
11775
|
flex?: string | boolean | undefined;
|
|
@@ -11706,6 +11790,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11706
11790
|
width?: string | number | undefined;
|
|
11707
11791
|
height?: string | number | undefined;
|
|
11708
11792
|
matchAdapt?: boolean | undefined;
|
|
11793
|
+
matchAdaptTemplate?: any;
|
|
11709
11794
|
}>>;
|
|
11710
11795
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
11711
11796
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
@@ -11727,6 +11812,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11727
11812
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11728
11813
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11729
11814
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
11815
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
11730
11816
|
}, "strip", z.ZodTypeAny, {
|
|
11731
11817
|
grid?: boolean | undefined;
|
|
11732
11818
|
flex?: string | boolean | undefined;
|
|
@@ -11747,6 +11833,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11747
11833
|
width?: number | undefined;
|
|
11748
11834
|
height?: number | undefined;
|
|
11749
11835
|
matchAdapt?: boolean | undefined;
|
|
11836
|
+
matchAdaptTemplate?: any;
|
|
11750
11837
|
}, {
|
|
11751
11838
|
grid?: boolean | undefined;
|
|
11752
11839
|
flex?: string | boolean | undefined;
|
|
@@ -11767,6 +11854,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11767
11854
|
width?: string | number | undefined;
|
|
11768
11855
|
height?: string | number | undefined;
|
|
11769
11856
|
matchAdapt?: boolean | undefined;
|
|
11857
|
+
matchAdaptTemplate?: any;
|
|
11770
11858
|
}>>;
|
|
11771
11859
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
11772
11860
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -11787,6 +11875,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
11787
11875
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11788
11876
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11789
11877
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
11878
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
11790
11879
|
name: z.ZodOptional<z.ZodString>;
|
|
11791
11880
|
children: z.ZodOptional<z.ZodAny>;
|
|
11792
11881
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -12056,6 +12145,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
12056
12145
|
width?: number | undefined;
|
|
12057
12146
|
height?: number | undefined;
|
|
12058
12147
|
matchAdapt?: boolean | undefined;
|
|
12148
|
+
matchAdaptTemplate?: any;
|
|
12059
12149
|
pcbWidth?: number | undefined;
|
|
12060
12150
|
pcbHeight?: number | undefined;
|
|
12061
12151
|
schWidth?: number | undefined;
|
|
@@ -12080,6 +12170,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
12080
12170
|
width?: number | undefined;
|
|
12081
12171
|
height?: number | undefined;
|
|
12082
12172
|
matchAdapt?: boolean | undefined;
|
|
12173
|
+
matchAdaptTemplate?: any;
|
|
12083
12174
|
} | undefined;
|
|
12084
12175
|
schLayout?: {
|
|
12085
12176
|
grid?: boolean | undefined;
|
|
@@ -12101,6 +12192,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
12101
12192
|
width?: number | undefined;
|
|
12102
12193
|
height?: number | undefined;
|
|
12103
12194
|
matchAdapt?: boolean | undefined;
|
|
12195
|
+
matchAdaptTemplate?: any;
|
|
12104
12196
|
} | undefined;
|
|
12105
12197
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
12106
12198
|
manualEdits?: {
|
|
@@ -12197,6 +12289,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
12197
12289
|
width?: string | number | undefined;
|
|
12198
12290
|
height?: string | number | undefined;
|
|
12199
12291
|
matchAdapt?: boolean | undefined;
|
|
12292
|
+
matchAdaptTemplate?: any;
|
|
12200
12293
|
pcbWidth?: string | number | undefined;
|
|
12201
12294
|
pcbHeight?: string | number | undefined;
|
|
12202
12295
|
schWidth?: string | number | undefined;
|
|
@@ -12221,6 +12314,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
12221
12314
|
width?: string | number | undefined;
|
|
12222
12315
|
height?: string | number | undefined;
|
|
12223
12316
|
matchAdapt?: boolean | undefined;
|
|
12317
|
+
matchAdaptTemplate?: any;
|
|
12224
12318
|
} | undefined;
|
|
12225
12319
|
schLayout?: {
|
|
12226
12320
|
grid?: boolean | undefined;
|
|
@@ -12242,6 +12336,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
12242
12336
|
width?: string | number | undefined;
|
|
12243
12337
|
height?: string | number | undefined;
|
|
12244
12338
|
matchAdapt?: boolean | undefined;
|
|
12339
|
+
matchAdaptTemplate?: any;
|
|
12245
12340
|
} | undefined;
|
|
12246
12341
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
12247
12342
|
manualEdits?: {
|
|
@@ -15965,6 +16060,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15965
16060
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15966
16061
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15967
16062
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
16063
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
15968
16064
|
}, "strip", z.ZodTypeAny, {
|
|
15969
16065
|
grid?: boolean | undefined;
|
|
15970
16066
|
flex?: string | boolean | undefined;
|
|
@@ -15985,6 +16081,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15985
16081
|
width?: number | undefined;
|
|
15986
16082
|
height?: number | undefined;
|
|
15987
16083
|
matchAdapt?: boolean | undefined;
|
|
16084
|
+
matchAdaptTemplate?: any;
|
|
15988
16085
|
}, {
|
|
15989
16086
|
grid?: boolean | undefined;
|
|
15990
16087
|
flex?: string | boolean | undefined;
|
|
@@ -16005,6 +16102,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
16005
16102
|
width?: string | number | undefined;
|
|
16006
16103
|
height?: string | number | undefined;
|
|
16007
16104
|
matchAdapt?: boolean | undefined;
|
|
16105
|
+
matchAdaptTemplate?: any;
|
|
16008
16106
|
}>>;
|
|
16009
16107
|
schLayout: z.ZodOptional<z.ZodObject<{
|
|
16010
16108
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
@@ -16026,6 +16124,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
16026
16124
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16027
16125
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16028
16126
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
16127
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
16029
16128
|
}, "strip", z.ZodTypeAny, {
|
|
16030
16129
|
grid?: boolean | undefined;
|
|
16031
16130
|
flex?: string | boolean | undefined;
|
|
@@ -16046,6 +16145,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
16046
16145
|
width?: number | undefined;
|
|
16047
16146
|
height?: number | undefined;
|
|
16048
16147
|
matchAdapt?: boolean | undefined;
|
|
16148
|
+
matchAdaptTemplate?: any;
|
|
16049
16149
|
}, {
|
|
16050
16150
|
grid?: boolean | undefined;
|
|
16051
16151
|
flex?: string | boolean | undefined;
|
|
@@ -16066,6 +16166,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
16066
16166
|
width?: string | number | undefined;
|
|
16067
16167
|
height?: string | number | undefined;
|
|
16068
16168
|
matchAdapt?: boolean | undefined;
|
|
16169
|
+
matchAdaptTemplate?: any;
|
|
16069
16170
|
}>>;
|
|
16070
16171
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "none"]>>;
|
|
16071
16172
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -16086,6 +16187,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
16086
16187
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16087
16188
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16088
16189
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
16190
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
16089
16191
|
name: z.ZodOptional<z.ZodString>;
|
|
16090
16192
|
children: z.ZodOptional<z.ZodAny>;
|
|
16091
16193
|
key: z.ZodOptional<z.ZodAny>;
|
|
@@ -16323,6 +16425,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
16323
16425
|
width?: number | undefined;
|
|
16324
16426
|
height?: number | undefined;
|
|
16325
16427
|
matchAdapt?: boolean | undefined;
|
|
16428
|
+
matchAdaptTemplate?: any;
|
|
16326
16429
|
pcbWidth?: number | undefined;
|
|
16327
16430
|
pcbHeight?: number | undefined;
|
|
16328
16431
|
schWidth?: number | undefined;
|
|
@@ -16347,6 +16450,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
16347
16450
|
width?: number | undefined;
|
|
16348
16451
|
height?: number | undefined;
|
|
16349
16452
|
matchAdapt?: boolean | undefined;
|
|
16453
|
+
matchAdaptTemplate?: any;
|
|
16350
16454
|
} | undefined;
|
|
16351
16455
|
schLayout?: {
|
|
16352
16456
|
grid?: boolean | undefined;
|
|
@@ -16368,6 +16472,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
16368
16472
|
width?: number | undefined;
|
|
16369
16473
|
height?: number | undefined;
|
|
16370
16474
|
matchAdapt?: boolean | undefined;
|
|
16475
|
+
matchAdaptTemplate?: any;
|
|
16371
16476
|
} | undefined;
|
|
16372
16477
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
16373
16478
|
manualEdits?: {
|
|
@@ -16448,6 +16553,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
16448
16553
|
width?: string | number | undefined;
|
|
16449
16554
|
height?: string | number | undefined;
|
|
16450
16555
|
matchAdapt?: boolean | undefined;
|
|
16556
|
+
matchAdaptTemplate?: any;
|
|
16451
16557
|
pcbWidth?: string | number | undefined;
|
|
16452
16558
|
pcbHeight?: string | number | undefined;
|
|
16453
16559
|
schWidth?: string | number | undefined;
|
|
@@ -16472,6 +16578,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
16472
16578
|
width?: string | number | undefined;
|
|
16473
16579
|
height?: string | number | undefined;
|
|
16474
16580
|
matchAdapt?: boolean | undefined;
|
|
16581
|
+
matchAdaptTemplate?: any;
|
|
16475
16582
|
} | undefined;
|
|
16476
16583
|
schLayout?: {
|
|
16477
16584
|
grid?: boolean | undefined;
|
|
@@ -16493,6 +16600,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
16493
16600
|
width?: string | number | undefined;
|
|
16494
16601
|
height?: string | number | undefined;
|
|
16495
16602
|
matchAdapt?: boolean | undefined;
|
|
16603
|
+
matchAdaptTemplate?: any;
|
|
16496
16604
|
} | undefined;
|
|
16497
16605
|
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
16498
16606
|
manualEdits?: {
|
|
@@ -20735,7 +20843,47 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
20735
20843
|
paddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20736
20844
|
paddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20737
20845
|
title: z.ZodOptional<z.ZodString>;
|
|
20738
|
-
|
|
20846
|
+
titleAnchorPosition: z.ZodOptional<z.ZodObject<{
|
|
20847
|
+
x: z.ZodOptional<z.ZodObject<{
|
|
20848
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
20849
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
20850
|
+
}, "strip", z.ZodTypeAny, {
|
|
20851
|
+
x: number;
|
|
20852
|
+
y: number;
|
|
20853
|
+
}, {
|
|
20854
|
+
x: string | number;
|
|
20855
|
+
y: string | number;
|
|
20856
|
+
}>>;
|
|
20857
|
+
y: z.ZodOptional<z.ZodObject<{
|
|
20858
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
20859
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
20860
|
+
}, "strip", z.ZodTypeAny, {
|
|
20861
|
+
x: number;
|
|
20862
|
+
y: number;
|
|
20863
|
+
}, {
|
|
20864
|
+
x: string | number;
|
|
20865
|
+
y: string | number;
|
|
20866
|
+
}>>;
|
|
20867
|
+
}, "strip", z.ZodTypeAny, {
|
|
20868
|
+
x?: {
|
|
20869
|
+
x: number;
|
|
20870
|
+
y: number;
|
|
20871
|
+
} | undefined;
|
|
20872
|
+
y?: {
|
|
20873
|
+
x: number;
|
|
20874
|
+
y: number;
|
|
20875
|
+
} | undefined;
|
|
20876
|
+
}, {
|
|
20877
|
+
x?: {
|
|
20878
|
+
x: string | number;
|
|
20879
|
+
y: string | number;
|
|
20880
|
+
} | undefined;
|
|
20881
|
+
y?: {
|
|
20882
|
+
x: string | number;
|
|
20883
|
+
y: string | number;
|
|
20884
|
+
} | undefined;
|
|
20885
|
+
}>>;
|
|
20886
|
+
titleAnchorAlignment: z.ZodDefault<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
20739
20887
|
titleColor: z.ZodOptional<z.ZodString>;
|
|
20740
20888
|
titleFontSize: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20741
20889
|
titleInside: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -20743,7 +20891,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
20743
20891
|
}, "strip", z.ZodTypeAny, {
|
|
20744
20892
|
schX: number;
|
|
20745
20893
|
schY: number;
|
|
20746
|
-
|
|
20894
|
+
titleAnchorAlignment: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center";
|
|
20747
20895
|
titleInside: boolean;
|
|
20748
20896
|
strokeStyle: "solid" | "dashed";
|
|
20749
20897
|
width?: number | undefined;
|
|
@@ -20755,6 +20903,16 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
20755
20903
|
paddingTop?: number | undefined;
|
|
20756
20904
|
paddingBottom?: number | undefined;
|
|
20757
20905
|
title?: string | undefined;
|
|
20906
|
+
titleAnchorPosition?: {
|
|
20907
|
+
x?: {
|
|
20908
|
+
x: number;
|
|
20909
|
+
y: number;
|
|
20910
|
+
} | undefined;
|
|
20911
|
+
y?: {
|
|
20912
|
+
x: number;
|
|
20913
|
+
y: number;
|
|
20914
|
+
} | undefined;
|
|
20915
|
+
} | undefined;
|
|
20758
20916
|
titleColor?: string | undefined;
|
|
20759
20917
|
titleFontSize?: number | undefined;
|
|
20760
20918
|
}, {
|
|
@@ -20769,7 +20927,17 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
20769
20927
|
paddingTop?: string | number | undefined;
|
|
20770
20928
|
paddingBottom?: string | number | undefined;
|
|
20771
20929
|
title?: string | undefined;
|
|
20772
|
-
|
|
20930
|
+
titleAnchorPosition?: {
|
|
20931
|
+
x?: {
|
|
20932
|
+
x: string | number;
|
|
20933
|
+
y: string | number;
|
|
20934
|
+
} | undefined;
|
|
20935
|
+
y?: {
|
|
20936
|
+
x: string | number;
|
|
20937
|
+
y: string | number;
|
|
20938
|
+
} | undefined;
|
|
20939
|
+
} | undefined;
|
|
20940
|
+
titleAnchorAlignment?: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | undefined;
|
|
20773
20941
|
titleColor?: string | undefined;
|
|
20774
20942
|
titleFontSize?: string | number | undefined;
|
|
20775
20943
|
titleInside?: boolean | undefined;
|
|
@@ -20777,7 +20945,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
20777
20945
|
}>, {
|
|
20778
20946
|
schX: number;
|
|
20779
20947
|
schY: number;
|
|
20780
|
-
|
|
20948
|
+
titleAnchorAlignment: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center";
|
|
20781
20949
|
titleInside: boolean;
|
|
20782
20950
|
strokeStyle: "solid" | "dashed";
|
|
20783
20951
|
width?: number | undefined;
|
|
@@ -20789,6 +20957,16 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
20789
20957
|
paddingTop?: number | undefined;
|
|
20790
20958
|
paddingBottom?: number | undefined;
|
|
20791
20959
|
title?: string | undefined;
|
|
20960
|
+
titleAnchorPosition?: {
|
|
20961
|
+
x?: {
|
|
20962
|
+
x: number;
|
|
20963
|
+
y: number;
|
|
20964
|
+
} | undefined;
|
|
20965
|
+
y?: {
|
|
20966
|
+
x: number;
|
|
20967
|
+
y: number;
|
|
20968
|
+
} | undefined;
|
|
20969
|
+
} | undefined;
|
|
20792
20970
|
titleColor?: string | undefined;
|
|
20793
20971
|
titleFontSize?: number | undefined;
|
|
20794
20972
|
}, {
|
|
@@ -20803,7 +20981,17 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
20803
20981
|
paddingTop?: string | number | undefined;
|
|
20804
20982
|
paddingBottom?: string | number | undefined;
|
|
20805
20983
|
title?: string | undefined;
|
|
20806
|
-
|
|
20984
|
+
titleAnchorPosition?: {
|
|
20985
|
+
x?: {
|
|
20986
|
+
x: string | number;
|
|
20987
|
+
y: string | number;
|
|
20988
|
+
} | undefined;
|
|
20989
|
+
y?: {
|
|
20990
|
+
x: string | number;
|
|
20991
|
+
y: string | number;
|
|
20992
|
+
} | undefined;
|
|
20993
|
+
} | undefined;
|
|
20994
|
+
titleAnchorAlignment?: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | undefined;
|
|
20807
20995
|
titleColor?: string | undefined;
|
|
20808
20996
|
titleFontSize?: string | number | undefined;
|
|
20809
20997
|
titleInside?: boolean | undefined;
|
|
@@ -20811,7 +20999,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
20811
20999
|
}>, {
|
|
20812
21000
|
schX: number;
|
|
20813
21001
|
schY: number;
|
|
20814
|
-
|
|
21002
|
+
titleAnchorAlignment: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center";
|
|
20815
21003
|
titleInside: boolean;
|
|
20816
21004
|
strokeStyle: "solid" | "dashed";
|
|
20817
21005
|
width?: number | undefined;
|
|
@@ -20823,6 +21011,16 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
20823
21011
|
paddingTop?: number | undefined;
|
|
20824
21012
|
paddingBottom?: number | undefined;
|
|
20825
21013
|
title?: string | undefined;
|
|
21014
|
+
titleAnchorPosition?: {
|
|
21015
|
+
x?: {
|
|
21016
|
+
x: number;
|
|
21017
|
+
y: number;
|
|
21018
|
+
} | undefined;
|
|
21019
|
+
y?: {
|
|
21020
|
+
x: number;
|
|
21021
|
+
y: number;
|
|
21022
|
+
} | undefined;
|
|
21023
|
+
} | undefined;
|
|
20826
21024
|
titleColor?: string | undefined;
|
|
20827
21025
|
titleFontSize?: number | undefined;
|
|
20828
21026
|
}, {
|
|
@@ -20837,7 +21035,17 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
20837
21035
|
paddingTop?: string | number | undefined;
|
|
20838
21036
|
paddingBottom?: string | number | undefined;
|
|
20839
21037
|
title?: string | undefined;
|
|
20840
|
-
|
|
21038
|
+
titleAnchorPosition?: {
|
|
21039
|
+
x?: {
|
|
21040
|
+
x: string | number;
|
|
21041
|
+
y: string | number;
|
|
21042
|
+
} | undefined;
|
|
21043
|
+
y?: {
|
|
21044
|
+
x: string | number;
|
|
21045
|
+
y: string | number;
|
|
21046
|
+
} | undefined;
|
|
21047
|
+
} | undefined;
|
|
21048
|
+
titleAnchorAlignment?: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | undefined;
|
|
20841
21049
|
titleColor?: string | undefined;
|
|
20842
21050
|
titleFontSize?: string | number | undefined;
|
|
20843
21051
|
titleInside?: boolean | undefined;
|