@tscircuit/props 0.0.271 → 0.0.273
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/README.md +7 -0
- package/dist/index.d.ts +305 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +8 -0
- package/lib/components/pin-header.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2896,6 +2896,8 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2896
2896
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
2897
2897
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
2898
2898
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2899
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2900
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
2899
2901
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
2900
2902
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
2901
2903
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -2928,6 +2930,8 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2928
2930
|
gridTemplateColumns?: string | undefined;
|
|
2929
2931
|
gridTemplate?: string | undefined;
|
|
2930
2932
|
gridGap?: string | number | undefined;
|
|
2933
|
+
gridRowGap?: string | number | undefined;
|
|
2934
|
+
gridColumnGap?: string | number | undefined;
|
|
2931
2935
|
flexDirection?: "row" | "column" | undefined;
|
|
2932
2936
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2933
2937
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -2959,6 +2963,8 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2959
2963
|
gridTemplateColumns?: string | undefined;
|
|
2960
2964
|
gridTemplate?: string | undefined;
|
|
2961
2965
|
gridGap?: string | number | undefined;
|
|
2966
|
+
gridRowGap?: string | number | undefined;
|
|
2967
|
+
gridColumnGap?: string | number | undefined;
|
|
2962
2968
|
flexDirection?: "row" | "column" | undefined;
|
|
2963
2969
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2964
2970
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -2990,6 +2996,8 @@ interface LayoutConfig {
|
|
|
2990
2996
|
gridTemplateColumns?: string;
|
|
2991
2997
|
gridTemplate?: string;
|
|
2992
2998
|
gridGap?: number | string;
|
|
2999
|
+
gridRowGap?: number | string;
|
|
3000
|
+
gridColumnGap?: number | string;
|
|
2993
3001
|
flex?: boolean | string;
|
|
2994
3002
|
flexDirection?: "row" | "column";
|
|
2995
3003
|
alignItems?: "start" | "center" | "end" | "stretch";
|
|
@@ -3062,6 +3070,8 @@ interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
|
|
|
3062
3070
|
pcbGridTemplateColumns?: string;
|
|
3063
3071
|
pcbGridTemplate?: string;
|
|
3064
3072
|
pcbGridGap?: number | string;
|
|
3073
|
+
pcbGridRowGap?: number | string;
|
|
3074
|
+
pcbGridColumnGap?: number | string;
|
|
3065
3075
|
pcbFlex?: boolean | string;
|
|
3066
3076
|
pcbFlexDirection?: "row" | "column";
|
|
3067
3077
|
pcbAlignItems?: "start" | "center" | "end" | "stretch";
|
|
@@ -3228,6 +3238,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3228
3238
|
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
3229
3239
|
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
3230
3240
|
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3241
|
+
pcbGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3242
|
+
pcbGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3231
3243
|
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3232
3244
|
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3233
3245
|
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -3249,6 +3261,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3249
3261
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
3250
3262
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
3251
3263
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3264
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3265
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3252
3266
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3253
3267
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3254
3268
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -3281,6 +3295,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3281
3295
|
gridTemplateColumns?: string | undefined;
|
|
3282
3296
|
gridTemplate?: string | undefined;
|
|
3283
3297
|
gridGap?: string | number | undefined;
|
|
3298
|
+
gridRowGap?: string | number | undefined;
|
|
3299
|
+
gridColumnGap?: string | number | undefined;
|
|
3284
3300
|
flexDirection?: "row" | "column" | undefined;
|
|
3285
3301
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3286
3302
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -3312,6 +3328,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3312
3328
|
gridTemplateColumns?: string | undefined;
|
|
3313
3329
|
gridTemplate?: string | undefined;
|
|
3314
3330
|
gridGap?: string | number | undefined;
|
|
3331
|
+
gridRowGap?: string | number | undefined;
|
|
3332
|
+
gridColumnGap?: string | number | undefined;
|
|
3315
3333
|
flexDirection?: "row" | "column" | undefined;
|
|
3316
3334
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3317
3335
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -3343,6 +3361,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3343
3361
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
3344
3362
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
3345
3363
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3364
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3365
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3346
3366
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3347
3367
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3348
3368
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -3375,6 +3395,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3375
3395
|
gridTemplateColumns?: string | undefined;
|
|
3376
3396
|
gridTemplate?: string | undefined;
|
|
3377
3397
|
gridGap?: string | number | undefined;
|
|
3398
|
+
gridRowGap?: string | number | undefined;
|
|
3399
|
+
gridColumnGap?: string | number | undefined;
|
|
3378
3400
|
flexDirection?: "row" | "column" | undefined;
|
|
3379
3401
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3380
3402
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -3406,6 +3428,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3406
3428
|
gridTemplateColumns?: string | undefined;
|
|
3407
3429
|
gridTemplate?: string | undefined;
|
|
3408
3430
|
gridGap?: string | number | undefined;
|
|
3431
|
+
gridRowGap?: string | number | undefined;
|
|
3432
|
+
gridColumnGap?: string | number | undefined;
|
|
3409
3433
|
flexDirection?: "row" | "column" | undefined;
|
|
3410
3434
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3411
3435
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -3466,6 +3490,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3466
3490
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
3467
3491
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
3468
3492
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3493
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3494
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3469
3495
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3470
3496
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3471
3497
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -3515,6 +3541,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3515
3541
|
gridTemplateColumns?: string | undefined;
|
|
3516
3542
|
gridTemplate?: string | undefined;
|
|
3517
3543
|
gridGap?: string | number | undefined;
|
|
3544
|
+
gridRowGap?: string | number | undefined;
|
|
3545
|
+
gridColumnGap?: string | number | undefined;
|
|
3518
3546
|
flexDirection?: "row" | "column" | undefined;
|
|
3519
3547
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3520
3548
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -3551,6 +3579,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3551
3579
|
gridTemplateColumns?: string | undefined;
|
|
3552
3580
|
gridTemplate?: string | undefined;
|
|
3553
3581
|
gridGap?: string | number | undefined;
|
|
3582
|
+
gridRowGap?: string | number | undefined;
|
|
3583
|
+
gridColumnGap?: string | number | undefined;
|
|
3554
3584
|
flexDirection?: "row" | "column" | undefined;
|
|
3555
3585
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3556
3586
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -3583,6 +3613,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3583
3613
|
gridTemplateColumns?: string | undefined;
|
|
3584
3614
|
gridTemplate?: string | undefined;
|
|
3585
3615
|
gridGap?: string | number | undefined;
|
|
3616
|
+
gridRowGap?: string | number | undefined;
|
|
3617
|
+
gridColumnGap?: string | number | undefined;
|
|
3586
3618
|
flexDirection?: "row" | "column" | undefined;
|
|
3587
3619
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3588
3620
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -3626,6 +3658,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3626
3658
|
pcbGridTemplateColumns?: string | undefined;
|
|
3627
3659
|
pcbGridTemplate?: string | undefined;
|
|
3628
3660
|
pcbGridGap?: string | number | undefined;
|
|
3661
|
+
pcbGridRowGap?: string | number | undefined;
|
|
3662
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
3629
3663
|
pcbFlex?: string | boolean | undefined;
|
|
3630
3664
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
3631
3665
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
@@ -3660,6 +3694,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3660
3694
|
gridTemplateColumns?: string | undefined;
|
|
3661
3695
|
gridTemplate?: string | undefined;
|
|
3662
3696
|
gridGap?: string | number | undefined;
|
|
3697
|
+
gridRowGap?: string | number | undefined;
|
|
3698
|
+
gridColumnGap?: string | number | undefined;
|
|
3663
3699
|
flexDirection?: "row" | "column" | undefined;
|
|
3664
3700
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3665
3701
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -3696,6 +3732,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3696
3732
|
gridTemplateColumns?: string | undefined;
|
|
3697
3733
|
gridTemplate?: string | undefined;
|
|
3698
3734
|
gridGap?: string | number | undefined;
|
|
3735
|
+
gridRowGap?: string | number | undefined;
|
|
3736
|
+
gridColumnGap?: string | number | undefined;
|
|
3699
3737
|
flexDirection?: "row" | "column" | undefined;
|
|
3700
3738
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3701
3739
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -3728,6 +3766,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3728
3766
|
gridTemplateColumns?: string | undefined;
|
|
3729
3767
|
gridTemplate?: string | undefined;
|
|
3730
3768
|
gridGap?: string | number | undefined;
|
|
3769
|
+
gridRowGap?: string | number | undefined;
|
|
3770
|
+
gridColumnGap?: string | number | undefined;
|
|
3731
3771
|
flexDirection?: "row" | "column" | undefined;
|
|
3732
3772
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3733
3773
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -3771,6 +3811,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3771
3811
|
pcbGridTemplateColumns?: string | undefined;
|
|
3772
3812
|
pcbGridTemplate?: string | undefined;
|
|
3773
3813
|
pcbGridGap?: string | number | undefined;
|
|
3814
|
+
pcbGridRowGap?: string | number | undefined;
|
|
3815
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
3774
3816
|
pcbFlex?: string | boolean | undefined;
|
|
3775
3817
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
3776
3818
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
@@ -3809,6 +3851,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3809
3851
|
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
3810
3852
|
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
3811
3853
|
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3854
|
+
pcbGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3855
|
+
pcbGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3812
3856
|
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3813
3857
|
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3814
3858
|
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -3830,6 +3874,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3830
3874
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
3831
3875
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
3832
3876
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3877
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3878
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3833
3879
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3834
3880
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3835
3881
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -3862,6 +3908,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3862
3908
|
gridTemplateColumns?: string | undefined;
|
|
3863
3909
|
gridTemplate?: string | undefined;
|
|
3864
3910
|
gridGap?: string | number | undefined;
|
|
3911
|
+
gridRowGap?: string | number | undefined;
|
|
3912
|
+
gridColumnGap?: string | number | undefined;
|
|
3865
3913
|
flexDirection?: "row" | "column" | undefined;
|
|
3866
3914
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3867
3915
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -3893,6 +3941,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3893
3941
|
gridTemplateColumns?: string | undefined;
|
|
3894
3942
|
gridTemplate?: string | undefined;
|
|
3895
3943
|
gridGap?: string | number | undefined;
|
|
3944
|
+
gridRowGap?: string | number | undefined;
|
|
3945
|
+
gridColumnGap?: string | number | undefined;
|
|
3896
3946
|
flexDirection?: "row" | "column" | undefined;
|
|
3897
3947
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3898
3948
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -3924,6 +3974,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3924
3974
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
3925
3975
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
3926
3976
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3977
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3978
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3927
3979
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3928
3980
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3929
3981
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -3956,6 +4008,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3956
4008
|
gridTemplateColumns?: string | undefined;
|
|
3957
4009
|
gridTemplate?: string | undefined;
|
|
3958
4010
|
gridGap?: string | number | undefined;
|
|
4011
|
+
gridRowGap?: string | number | undefined;
|
|
4012
|
+
gridColumnGap?: string | number | undefined;
|
|
3959
4013
|
flexDirection?: "row" | "column" | undefined;
|
|
3960
4014
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3961
4015
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -3987,6 +4041,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3987
4041
|
gridTemplateColumns?: string | undefined;
|
|
3988
4042
|
gridTemplate?: string | undefined;
|
|
3989
4043
|
gridGap?: string | number | undefined;
|
|
4044
|
+
gridRowGap?: string | number | undefined;
|
|
4045
|
+
gridColumnGap?: string | number | undefined;
|
|
3990
4046
|
flexDirection?: "row" | "column" | undefined;
|
|
3991
4047
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3992
4048
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -4047,6 +4103,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4047
4103
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
4048
4104
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
4049
4105
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4106
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4107
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4050
4108
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
4051
4109
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4052
4110
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -4319,6 +4377,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4319
4377
|
gridTemplateColumns?: string | undefined;
|
|
4320
4378
|
gridTemplate?: string | undefined;
|
|
4321
4379
|
gridGap?: string | number | undefined;
|
|
4380
|
+
gridRowGap?: string | number | undefined;
|
|
4381
|
+
gridColumnGap?: string | number | undefined;
|
|
4322
4382
|
flexDirection?: "row" | "column" | undefined;
|
|
4323
4383
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4324
4384
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -4355,6 +4415,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4355
4415
|
gridTemplateColumns?: string | undefined;
|
|
4356
4416
|
gridTemplate?: string | undefined;
|
|
4357
4417
|
gridGap?: string | number | undefined;
|
|
4418
|
+
gridRowGap?: string | number | undefined;
|
|
4419
|
+
gridColumnGap?: string | number | undefined;
|
|
4358
4420
|
flexDirection?: "row" | "column" | undefined;
|
|
4359
4421
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4360
4422
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -4387,6 +4449,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4387
4449
|
gridTemplateColumns?: string | undefined;
|
|
4388
4450
|
gridTemplate?: string | undefined;
|
|
4389
4451
|
gridGap?: string | number | undefined;
|
|
4452
|
+
gridRowGap?: string | number | undefined;
|
|
4453
|
+
gridColumnGap?: string | number | undefined;
|
|
4390
4454
|
flexDirection?: "row" | "column" | undefined;
|
|
4391
4455
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4392
4456
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -4430,6 +4494,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4430
4494
|
pcbGridTemplateColumns?: string | undefined;
|
|
4431
4495
|
pcbGridTemplate?: string | undefined;
|
|
4432
4496
|
pcbGridGap?: string | number | undefined;
|
|
4497
|
+
pcbGridRowGap?: string | number | undefined;
|
|
4498
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
4433
4499
|
pcbFlex?: string | boolean | undefined;
|
|
4434
4500
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
4435
4501
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
@@ -4520,6 +4586,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4520
4586
|
gridTemplateColumns?: string | undefined;
|
|
4521
4587
|
gridTemplate?: string | undefined;
|
|
4522
4588
|
gridGap?: string | number | undefined;
|
|
4589
|
+
gridRowGap?: string | number | undefined;
|
|
4590
|
+
gridColumnGap?: string | number | undefined;
|
|
4523
4591
|
flexDirection?: "row" | "column" | undefined;
|
|
4524
4592
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4525
4593
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -4556,6 +4624,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4556
4624
|
gridTemplateColumns?: string | undefined;
|
|
4557
4625
|
gridTemplate?: string | undefined;
|
|
4558
4626
|
gridGap?: string | number | undefined;
|
|
4627
|
+
gridRowGap?: string | number | undefined;
|
|
4628
|
+
gridColumnGap?: string | number | undefined;
|
|
4559
4629
|
flexDirection?: "row" | "column" | undefined;
|
|
4560
4630
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4561
4631
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -4588,6 +4658,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4588
4658
|
gridTemplateColumns?: string | undefined;
|
|
4589
4659
|
gridTemplate?: string | undefined;
|
|
4590
4660
|
gridGap?: string | number | undefined;
|
|
4661
|
+
gridRowGap?: string | number | undefined;
|
|
4662
|
+
gridColumnGap?: string | number | undefined;
|
|
4591
4663
|
flexDirection?: "row" | "column" | undefined;
|
|
4592
4664
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4593
4665
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -4631,6 +4703,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4631
4703
|
pcbGridTemplateColumns?: string | undefined;
|
|
4632
4704
|
pcbGridTemplate?: string | undefined;
|
|
4633
4705
|
pcbGridGap?: string | number | undefined;
|
|
4706
|
+
pcbGridRowGap?: string | number | undefined;
|
|
4707
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
4634
4708
|
pcbFlex?: string | boolean | undefined;
|
|
4635
4709
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
4636
4710
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
@@ -4726,6 +4800,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4726
4800
|
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
4727
4801
|
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
4728
4802
|
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4803
|
+
pcbGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4804
|
+
pcbGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4729
4805
|
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
4730
4806
|
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
4731
4807
|
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -4747,6 +4823,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4747
4823
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
4748
4824
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
4749
4825
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4826
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4827
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4750
4828
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
4751
4829
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
4752
4830
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -4779,6 +4857,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4779
4857
|
gridTemplateColumns?: string | undefined;
|
|
4780
4858
|
gridTemplate?: string | undefined;
|
|
4781
4859
|
gridGap?: string | number | undefined;
|
|
4860
|
+
gridRowGap?: string | number | undefined;
|
|
4861
|
+
gridColumnGap?: string | number | undefined;
|
|
4782
4862
|
flexDirection?: "row" | "column" | undefined;
|
|
4783
4863
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4784
4864
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -4810,6 +4890,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4810
4890
|
gridTemplateColumns?: string | undefined;
|
|
4811
4891
|
gridTemplate?: string | undefined;
|
|
4812
4892
|
gridGap?: string | number | undefined;
|
|
4893
|
+
gridRowGap?: string | number | undefined;
|
|
4894
|
+
gridColumnGap?: string | number | undefined;
|
|
4813
4895
|
flexDirection?: "row" | "column" | undefined;
|
|
4814
4896
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4815
4897
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -4841,6 +4923,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4841
4923
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
4842
4924
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
4843
4925
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4926
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4927
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4844
4928
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
4845
4929
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
4846
4930
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -4873,6 +4957,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4873
4957
|
gridTemplateColumns?: string | undefined;
|
|
4874
4958
|
gridTemplate?: string | undefined;
|
|
4875
4959
|
gridGap?: string | number | undefined;
|
|
4960
|
+
gridRowGap?: string | number | undefined;
|
|
4961
|
+
gridColumnGap?: string | number | undefined;
|
|
4876
4962
|
flexDirection?: "row" | "column" | undefined;
|
|
4877
4963
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4878
4964
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -4904,6 +4990,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4904
4990
|
gridTemplateColumns?: string | undefined;
|
|
4905
4991
|
gridTemplate?: string | undefined;
|
|
4906
4992
|
gridGap?: string | number | undefined;
|
|
4993
|
+
gridRowGap?: string | number | undefined;
|
|
4994
|
+
gridColumnGap?: string | number | undefined;
|
|
4907
4995
|
flexDirection?: "row" | "column" | undefined;
|
|
4908
4996
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4909
4997
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -4964,6 +5052,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4964
5052
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
4965
5053
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
4966
5054
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5055
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5056
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4967
5057
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
4968
5058
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4969
5059
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -5239,6 +5329,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5239
5329
|
gridTemplateColumns?: string | undefined;
|
|
5240
5330
|
gridTemplate?: string | undefined;
|
|
5241
5331
|
gridGap?: string | number | undefined;
|
|
5332
|
+
gridRowGap?: string | number | undefined;
|
|
5333
|
+
gridColumnGap?: string | number | undefined;
|
|
5242
5334
|
flexDirection?: "row" | "column" | undefined;
|
|
5243
5335
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5244
5336
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -5275,6 +5367,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5275
5367
|
gridTemplateColumns?: string | undefined;
|
|
5276
5368
|
gridTemplate?: string | undefined;
|
|
5277
5369
|
gridGap?: string | number | undefined;
|
|
5370
|
+
gridRowGap?: string | number | undefined;
|
|
5371
|
+
gridColumnGap?: string | number | undefined;
|
|
5278
5372
|
flexDirection?: "row" | "column" | undefined;
|
|
5279
5373
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5280
5374
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -5307,6 +5401,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5307
5401
|
gridTemplateColumns?: string | undefined;
|
|
5308
5402
|
gridTemplate?: string | undefined;
|
|
5309
5403
|
gridGap?: string | number | undefined;
|
|
5404
|
+
gridRowGap?: string | number | undefined;
|
|
5405
|
+
gridColumnGap?: string | number | undefined;
|
|
5310
5406
|
flexDirection?: "row" | "column" | undefined;
|
|
5311
5407
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5312
5408
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -5350,6 +5446,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5350
5446
|
pcbGridTemplateColumns?: string | undefined;
|
|
5351
5447
|
pcbGridTemplate?: string | undefined;
|
|
5352
5448
|
pcbGridGap?: string | number | undefined;
|
|
5449
|
+
pcbGridRowGap?: string | number | undefined;
|
|
5450
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
5353
5451
|
pcbFlex?: string | boolean | undefined;
|
|
5354
5452
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
5355
5453
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
@@ -5441,6 +5539,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5441
5539
|
gridTemplateColumns?: string | undefined;
|
|
5442
5540
|
gridTemplate?: string | undefined;
|
|
5443
5541
|
gridGap?: string | number | undefined;
|
|
5542
|
+
gridRowGap?: string | number | undefined;
|
|
5543
|
+
gridColumnGap?: string | number | undefined;
|
|
5444
5544
|
flexDirection?: "row" | "column" | undefined;
|
|
5445
5545
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5446
5546
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -5477,6 +5577,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5477
5577
|
gridTemplateColumns?: string | undefined;
|
|
5478
5578
|
gridTemplate?: string | undefined;
|
|
5479
5579
|
gridGap?: string | number | undefined;
|
|
5580
|
+
gridRowGap?: string | number | undefined;
|
|
5581
|
+
gridColumnGap?: string | number | undefined;
|
|
5480
5582
|
flexDirection?: "row" | "column" | undefined;
|
|
5481
5583
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5482
5584
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -5509,6 +5611,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5509
5611
|
gridTemplateColumns?: string | undefined;
|
|
5510
5612
|
gridTemplate?: string | undefined;
|
|
5511
5613
|
gridGap?: string | number | undefined;
|
|
5614
|
+
gridRowGap?: string | number | undefined;
|
|
5615
|
+
gridColumnGap?: string | number | undefined;
|
|
5512
5616
|
flexDirection?: "row" | "column" | undefined;
|
|
5513
5617
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5514
5618
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -5552,6 +5656,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5552
5656
|
pcbGridTemplateColumns?: string | undefined;
|
|
5553
5657
|
pcbGridTemplate?: string | undefined;
|
|
5554
5658
|
pcbGridGap?: string | number | undefined;
|
|
5659
|
+
pcbGridRowGap?: string | number | undefined;
|
|
5660
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
5555
5661
|
pcbFlex?: string | boolean | undefined;
|
|
5556
5662
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
5557
5663
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
@@ -5648,6 +5754,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5648
5754
|
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
5649
5755
|
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
5650
5756
|
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5757
|
+
pcbGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5758
|
+
pcbGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5651
5759
|
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
5652
5760
|
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
5653
5761
|
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -5669,6 +5777,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5669
5777
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
5670
5778
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
5671
5779
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5780
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5781
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5672
5782
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
5673
5783
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
5674
5784
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -5701,6 +5811,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5701
5811
|
gridTemplateColumns?: string | undefined;
|
|
5702
5812
|
gridTemplate?: string | undefined;
|
|
5703
5813
|
gridGap?: string | number | undefined;
|
|
5814
|
+
gridRowGap?: string | number | undefined;
|
|
5815
|
+
gridColumnGap?: string | number | undefined;
|
|
5704
5816
|
flexDirection?: "row" | "column" | undefined;
|
|
5705
5817
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5706
5818
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -5732,6 +5844,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5732
5844
|
gridTemplateColumns?: string | undefined;
|
|
5733
5845
|
gridTemplate?: string | undefined;
|
|
5734
5846
|
gridGap?: string | number | undefined;
|
|
5847
|
+
gridRowGap?: string | number | undefined;
|
|
5848
|
+
gridColumnGap?: string | number | undefined;
|
|
5735
5849
|
flexDirection?: "row" | "column" | undefined;
|
|
5736
5850
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5737
5851
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -5763,6 +5877,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5763
5877
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
5764
5878
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
5765
5879
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5880
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5881
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5766
5882
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
5767
5883
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
5768
5884
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -5795,6 +5911,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5795
5911
|
gridTemplateColumns?: string | undefined;
|
|
5796
5912
|
gridTemplate?: string | undefined;
|
|
5797
5913
|
gridGap?: string | number | undefined;
|
|
5914
|
+
gridRowGap?: string | number | undefined;
|
|
5915
|
+
gridColumnGap?: string | number | undefined;
|
|
5798
5916
|
flexDirection?: "row" | "column" | undefined;
|
|
5799
5917
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5800
5918
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -5826,6 +5944,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5826
5944
|
gridTemplateColumns?: string | undefined;
|
|
5827
5945
|
gridTemplate?: string | undefined;
|
|
5828
5946
|
gridGap?: string | number | undefined;
|
|
5947
|
+
gridRowGap?: string | number | undefined;
|
|
5948
|
+
gridColumnGap?: string | number | undefined;
|
|
5829
5949
|
flexDirection?: "row" | "column" | undefined;
|
|
5830
5950
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5831
5951
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -5886,6 +6006,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5886
6006
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
5887
6007
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
5888
6008
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6009
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6010
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5889
6011
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
5890
6012
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5891
6013
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -5937,6 +6059,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5937
6059
|
gridTemplateColumns?: string | undefined;
|
|
5938
6060
|
gridTemplate?: string | undefined;
|
|
5939
6061
|
gridGap?: string | number | undefined;
|
|
6062
|
+
gridRowGap?: string | number | undefined;
|
|
6063
|
+
gridColumnGap?: string | number | undefined;
|
|
5940
6064
|
flexDirection?: "row" | "column" | undefined;
|
|
5941
6065
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5942
6066
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -5973,6 +6097,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5973
6097
|
gridTemplateColumns?: string | undefined;
|
|
5974
6098
|
gridTemplate?: string | undefined;
|
|
5975
6099
|
gridGap?: string | number | undefined;
|
|
6100
|
+
gridRowGap?: string | number | undefined;
|
|
6101
|
+
gridColumnGap?: string | number | undefined;
|
|
5976
6102
|
flexDirection?: "row" | "column" | undefined;
|
|
5977
6103
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5978
6104
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -6005,6 +6131,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6005
6131
|
gridTemplateColumns?: string | undefined;
|
|
6006
6132
|
gridTemplate?: string | undefined;
|
|
6007
6133
|
gridGap?: string | number | undefined;
|
|
6134
|
+
gridRowGap?: string | number | undefined;
|
|
6135
|
+
gridColumnGap?: string | number | undefined;
|
|
6008
6136
|
flexDirection?: "row" | "column" | undefined;
|
|
6009
6137
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6010
6138
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -6048,6 +6176,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6048
6176
|
pcbGridTemplateColumns?: string | undefined;
|
|
6049
6177
|
pcbGridTemplate?: string | undefined;
|
|
6050
6178
|
pcbGridGap?: string | number | undefined;
|
|
6179
|
+
pcbGridRowGap?: string | number | undefined;
|
|
6180
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
6051
6181
|
pcbFlex?: string | boolean | undefined;
|
|
6052
6182
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
6053
6183
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
@@ -6083,6 +6213,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6083
6213
|
gridTemplateColumns?: string | undefined;
|
|
6084
6214
|
gridTemplate?: string | undefined;
|
|
6085
6215
|
gridGap?: string | number | undefined;
|
|
6216
|
+
gridRowGap?: string | number | undefined;
|
|
6217
|
+
gridColumnGap?: string | number | undefined;
|
|
6086
6218
|
flexDirection?: "row" | "column" | undefined;
|
|
6087
6219
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6088
6220
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -6119,6 +6251,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6119
6251
|
gridTemplateColumns?: string | undefined;
|
|
6120
6252
|
gridTemplate?: string | undefined;
|
|
6121
6253
|
gridGap?: string | number | undefined;
|
|
6254
|
+
gridRowGap?: string | number | undefined;
|
|
6255
|
+
gridColumnGap?: string | number | undefined;
|
|
6122
6256
|
flexDirection?: "row" | "column" | undefined;
|
|
6123
6257
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6124
6258
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -6151,6 +6285,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6151
6285
|
gridTemplateColumns?: string | undefined;
|
|
6152
6286
|
gridTemplate?: string | undefined;
|
|
6153
6287
|
gridGap?: string | number | undefined;
|
|
6288
|
+
gridRowGap?: string | number | undefined;
|
|
6289
|
+
gridColumnGap?: string | number | undefined;
|
|
6154
6290
|
flexDirection?: "row" | "column" | undefined;
|
|
6155
6291
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6156
6292
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -6194,6 +6330,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6194
6330
|
pcbGridTemplateColumns?: string | undefined;
|
|
6195
6331
|
pcbGridTemplate?: string | undefined;
|
|
6196
6332
|
pcbGridGap?: string | number | undefined;
|
|
6333
|
+
pcbGridRowGap?: string | number | undefined;
|
|
6334
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
6197
6335
|
pcbFlex?: string | boolean | undefined;
|
|
6198
6336
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
6199
6337
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
@@ -6231,6 +6369,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6231
6369
|
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
6232
6370
|
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
6233
6371
|
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6372
|
+
pcbGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6373
|
+
pcbGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6234
6374
|
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
6235
6375
|
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
6236
6376
|
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -6252,6 +6392,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6252
6392
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
6253
6393
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
6254
6394
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6395
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6396
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6255
6397
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
6256
6398
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
6257
6399
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -6284,6 +6426,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6284
6426
|
gridTemplateColumns?: string | undefined;
|
|
6285
6427
|
gridTemplate?: string | undefined;
|
|
6286
6428
|
gridGap?: string | number | undefined;
|
|
6429
|
+
gridRowGap?: string | number | undefined;
|
|
6430
|
+
gridColumnGap?: string | number | undefined;
|
|
6287
6431
|
flexDirection?: "row" | "column" | undefined;
|
|
6288
6432
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6289
6433
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -6315,6 +6459,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6315
6459
|
gridTemplateColumns?: string | undefined;
|
|
6316
6460
|
gridTemplate?: string | undefined;
|
|
6317
6461
|
gridGap?: string | number | undefined;
|
|
6462
|
+
gridRowGap?: string | number | undefined;
|
|
6463
|
+
gridColumnGap?: string | number | undefined;
|
|
6318
6464
|
flexDirection?: "row" | "column" | undefined;
|
|
6319
6465
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6320
6466
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -6346,6 +6492,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6346
6492
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
6347
6493
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
6348
6494
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6495
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6496
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6349
6497
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
6350
6498
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
6351
6499
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -6378,6 +6526,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6378
6526
|
gridTemplateColumns?: string | undefined;
|
|
6379
6527
|
gridTemplate?: string | undefined;
|
|
6380
6528
|
gridGap?: string | number | undefined;
|
|
6529
|
+
gridRowGap?: string | number | undefined;
|
|
6530
|
+
gridColumnGap?: string | number | undefined;
|
|
6381
6531
|
flexDirection?: "row" | "column" | undefined;
|
|
6382
6532
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6383
6533
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -6409,6 +6559,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6409
6559
|
gridTemplateColumns?: string | undefined;
|
|
6410
6560
|
gridTemplate?: string | undefined;
|
|
6411
6561
|
gridGap?: string | number | undefined;
|
|
6562
|
+
gridRowGap?: string | number | undefined;
|
|
6563
|
+
gridColumnGap?: string | number | undefined;
|
|
6412
6564
|
flexDirection?: "row" | "column" | undefined;
|
|
6413
6565
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6414
6566
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -6469,6 +6621,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6469
6621
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
6470
6622
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
6471
6623
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6624
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6625
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6472
6626
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
6473
6627
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
6474
6628
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -6744,6 +6898,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6744
6898
|
gridTemplateColumns?: string | undefined;
|
|
6745
6899
|
gridTemplate?: string | undefined;
|
|
6746
6900
|
gridGap?: string | number | undefined;
|
|
6901
|
+
gridRowGap?: string | number | undefined;
|
|
6902
|
+
gridColumnGap?: string | number | undefined;
|
|
6747
6903
|
flexDirection?: "row" | "column" | undefined;
|
|
6748
6904
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6749
6905
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -6780,6 +6936,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6780
6936
|
gridTemplateColumns?: string | undefined;
|
|
6781
6937
|
gridTemplate?: string | undefined;
|
|
6782
6938
|
gridGap?: string | number | undefined;
|
|
6939
|
+
gridRowGap?: string | number | undefined;
|
|
6940
|
+
gridColumnGap?: string | number | undefined;
|
|
6783
6941
|
flexDirection?: "row" | "column" | undefined;
|
|
6784
6942
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6785
6943
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -6812,6 +6970,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6812
6970
|
gridTemplateColumns?: string | undefined;
|
|
6813
6971
|
gridTemplate?: string | undefined;
|
|
6814
6972
|
gridGap?: string | number | undefined;
|
|
6973
|
+
gridRowGap?: string | number | undefined;
|
|
6974
|
+
gridColumnGap?: string | number | undefined;
|
|
6815
6975
|
flexDirection?: "row" | "column" | undefined;
|
|
6816
6976
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6817
6977
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -6855,6 +7015,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6855
7015
|
pcbGridTemplateColumns?: string | undefined;
|
|
6856
7016
|
pcbGridTemplate?: string | undefined;
|
|
6857
7017
|
pcbGridGap?: string | number | undefined;
|
|
7018
|
+
pcbGridRowGap?: string | number | undefined;
|
|
7019
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
6858
7020
|
pcbFlex?: string | boolean | undefined;
|
|
6859
7021
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
6860
7022
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
@@ -6946,6 +7108,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6946
7108
|
gridTemplateColumns?: string | undefined;
|
|
6947
7109
|
gridTemplate?: string | undefined;
|
|
6948
7110
|
gridGap?: string | number | undefined;
|
|
7111
|
+
gridRowGap?: string | number | undefined;
|
|
7112
|
+
gridColumnGap?: string | number | undefined;
|
|
6949
7113
|
flexDirection?: "row" | "column" | undefined;
|
|
6950
7114
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6951
7115
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -6982,6 +7146,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6982
7146
|
gridTemplateColumns?: string | undefined;
|
|
6983
7147
|
gridTemplate?: string | undefined;
|
|
6984
7148
|
gridGap?: string | number | undefined;
|
|
7149
|
+
gridRowGap?: string | number | undefined;
|
|
7150
|
+
gridColumnGap?: string | number | undefined;
|
|
6985
7151
|
flexDirection?: "row" | "column" | undefined;
|
|
6986
7152
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6987
7153
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -7014,6 +7180,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
7014
7180
|
gridTemplateColumns?: string | undefined;
|
|
7015
7181
|
gridTemplate?: string | undefined;
|
|
7016
7182
|
gridGap?: string | number | undefined;
|
|
7183
|
+
gridRowGap?: string | number | undefined;
|
|
7184
|
+
gridColumnGap?: string | number | undefined;
|
|
7017
7185
|
flexDirection?: "row" | "column" | undefined;
|
|
7018
7186
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7019
7187
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -7057,6 +7225,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
7057
7225
|
pcbGridTemplateColumns?: string | undefined;
|
|
7058
7226
|
pcbGridTemplate?: string | undefined;
|
|
7059
7227
|
pcbGridGap?: string | number | undefined;
|
|
7228
|
+
pcbGridRowGap?: string | number | undefined;
|
|
7229
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
7060
7230
|
pcbFlex?: string | boolean | undefined;
|
|
7061
7231
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
7062
7232
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
@@ -7158,6 +7328,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
7158
7328
|
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
7159
7329
|
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
7160
7330
|
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7331
|
+
pcbGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7332
|
+
pcbGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7161
7333
|
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
7162
7334
|
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
7163
7335
|
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -7179,6 +7351,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
7179
7351
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
7180
7352
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
7181
7353
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7354
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7355
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7182
7356
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
7183
7357
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
7184
7358
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -7211,6 +7385,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
7211
7385
|
gridTemplateColumns?: string | undefined;
|
|
7212
7386
|
gridTemplate?: string | undefined;
|
|
7213
7387
|
gridGap?: string | number | undefined;
|
|
7388
|
+
gridRowGap?: string | number | undefined;
|
|
7389
|
+
gridColumnGap?: string | number | undefined;
|
|
7214
7390
|
flexDirection?: "row" | "column" | undefined;
|
|
7215
7391
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7216
7392
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -7242,6 +7418,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
7242
7418
|
gridTemplateColumns?: string | undefined;
|
|
7243
7419
|
gridTemplate?: string | undefined;
|
|
7244
7420
|
gridGap?: string | number | undefined;
|
|
7421
|
+
gridRowGap?: string | number | undefined;
|
|
7422
|
+
gridColumnGap?: string | number | undefined;
|
|
7245
7423
|
flexDirection?: "row" | "column" | undefined;
|
|
7246
7424
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7247
7425
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -7273,6 +7451,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
7273
7451
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
7274
7452
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
7275
7453
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7454
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7455
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7276
7456
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
7277
7457
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
7278
7458
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -7305,6 +7485,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
7305
7485
|
gridTemplateColumns?: string | undefined;
|
|
7306
7486
|
gridTemplate?: string | undefined;
|
|
7307
7487
|
gridGap?: string | number | undefined;
|
|
7488
|
+
gridRowGap?: string | number | undefined;
|
|
7489
|
+
gridColumnGap?: string | number | undefined;
|
|
7308
7490
|
flexDirection?: "row" | "column" | undefined;
|
|
7309
7491
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7310
7492
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -7336,6 +7518,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
7336
7518
|
gridTemplateColumns?: string | undefined;
|
|
7337
7519
|
gridTemplate?: string | undefined;
|
|
7338
7520
|
gridGap?: string | number | undefined;
|
|
7521
|
+
gridRowGap?: string | number | undefined;
|
|
7522
|
+
gridColumnGap?: string | number | undefined;
|
|
7339
7523
|
flexDirection?: "row" | "column" | undefined;
|
|
7340
7524
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7341
7525
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -7396,6 +7580,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
7396
7580
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
7397
7581
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
7398
7582
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7583
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7584
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7399
7585
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
7400
7586
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
7401
7587
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -7673,6 +7859,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
7673
7859
|
gridTemplateColumns?: string | undefined;
|
|
7674
7860
|
gridTemplate?: string | undefined;
|
|
7675
7861
|
gridGap?: string | number | undefined;
|
|
7862
|
+
gridRowGap?: string | number | undefined;
|
|
7863
|
+
gridColumnGap?: string | number | undefined;
|
|
7676
7864
|
flexDirection?: "row" | "column" | undefined;
|
|
7677
7865
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7678
7866
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -7709,6 +7897,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
7709
7897
|
gridTemplateColumns?: string | undefined;
|
|
7710
7898
|
gridTemplate?: string | undefined;
|
|
7711
7899
|
gridGap?: string | number | undefined;
|
|
7900
|
+
gridRowGap?: string | number | undefined;
|
|
7901
|
+
gridColumnGap?: string | number | undefined;
|
|
7712
7902
|
flexDirection?: "row" | "column" | undefined;
|
|
7713
7903
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7714
7904
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -7741,6 +7931,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
7741
7931
|
gridTemplateColumns?: string | undefined;
|
|
7742
7932
|
gridTemplate?: string | undefined;
|
|
7743
7933
|
gridGap?: string | number | undefined;
|
|
7934
|
+
gridRowGap?: string | number | undefined;
|
|
7935
|
+
gridColumnGap?: string | number | undefined;
|
|
7744
7936
|
flexDirection?: "row" | "column" | undefined;
|
|
7745
7937
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7746
7938
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -7784,6 +7976,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
7784
7976
|
pcbGridTemplateColumns?: string | undefined;
|
|
7785
7977
|
pcbGridTemplate?: string | undefined;
|
|
7786
7978
|
pcbGridGap?: string | number | undefined;
|
|
7979
|
+
pcbGridRowGap?: string | number | undefined;
|
|
7980
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
7787
7981
|
pcbFlex?: string | boolean | undefined;
|
|
7788
7982
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
7789
7983
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
@@ -7874,6 +8068,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
7874
8068
|
gridTemplateColumns?: string | undefined;
|
|
7875
8069
|
gridTemplate?: string | undefined;
|
|
7876
8070
|
gridGap?: string | number | undefined;
|
|
8071
|
+
gridRowGap?: string | number | undefined;
|
|
8072
|
+
gridColumnGap?: string | number | undefined;
|
|
7877
8073
|
flexDirection?: "row" | "column" | undefined;
|
|
7878
8074
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7879
8075
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -7910,6 +8106,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
7910
8106
|
gridTemplateColumns?: string | undefined;
|
|
7911
8107
|
gridTemplate?: string | undefined;
|
|
7912
8108
|
gridGap?: string | number | undefined;
|
|
8109
|
+
gridRowGap?: string | number | undefined;
|
|
8110
|
+
gridColumnGap?: string | number | undefined;
|
|
7913
8111
|
flexDirection?: "row" | "column" | undefined;
|
|
7914
8112
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7915
8113
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -7942,6 +8140,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
7942
8140
|
gridTemplateColumns?: string | undefined;
|
|
7943
8141
|
gridTemplate?: string | undefined;
|
|
7944
8142
|
gridGap?: string | number | undefined;
|
|
8143
|
+
gridRowGap?: string | number | undefined;
|
|
8144
|
+
gridColumnGap?: string | number | undefined;
|
|
7945
8145
|
flexDirection?: "row" | "column" | undefined;
|
|
7946
8146
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7947
8147
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -7985,6 +8185,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
7985
8185
|
pcbGridTemplateColumns?: string | undefined;
|
|
7986
8186
|
pcbGridTemplate?: string | undefined;
|
|
7987
8187
|
pcbGridGap?: string | number | undefined;
|
|
8188
|
+
pcbGridRowGap?: string | number | undefined;
|
|
8189
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
7988
8190
|
pcbFlex?: string | boolean | undefined;
|
|
7989
8191
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
7990
8192
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
@@ -8090,6 +8292,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8090
8292
|
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
8091
8293
|
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
8092
8294
|
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8295
|
+
pcbGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8296
|
+
pcbGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8093
8297
|
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
8094
8298
|
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
8095
8299
|
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -8111,6 +8315,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8111
8315
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
8112
8316
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
8113
8317
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8318
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8319
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8114
8320
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
8115
8321
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
8116
8322
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -8143,6 +8349,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8143
8349
|
gridTemplateColumns?: string | undefined;
|
|
8144
8350
|
gridTemplate?: string | undefined;
|
|
8145
8351
|
gridGap?: string | number | undefined;
|
|
8352
|
+
gridRowGap?: string | number | undefined;
|
|
8353
|
+
gridColumnGap?: string | number | undefined;
|
|
8146
8354
|
flexDirection?: "row" | "column" | undefined;
|
|
8147
8355
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8148
8356
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -8174,6 +8382,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8174
8382
|
gridTemplateColumns?: string | undefined;
|
|
8175
8383
|
gridTemplate?: string | undefined;
|
|
8176
8384
|
gridGap?: string | number | undefined;
|
|
8385
|
+
gridRowGap?: string | number | undefined;
|
|
8386
|
+
gridColumnGap?: string | number | undefined;
|
|
8177
8387
|
flexDirection?: "row" | "column" | undefined;
|
|
8178
8388
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8179
8389
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -8205,6 +8415,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8205
8415
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
8206
8416
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
8207
8417
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8418
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8419
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8208
8420
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
8209
8421
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
8210
8422
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -8237,6 +8449,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8237
8449
|
gridTemplateColumns?: string | undefined;
|
|
8238
8450
|
gridTemplate?: string | undefined;
|
|
8239
8451
|
gridGap?: string | number | undefined;
|
|
8452
|
+
gridRowGap?: string | number | undefined;
|
|
8453
|
+
gridColumnGap?: string | number | undefined;
|
|
8240
8454
|
flexDirection?: "row" | "column" | undefined;
|
|
8241
8455
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8242
8456
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -8268,6 +8482,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8268
8482
|
gridTemplateColumns?: string | undefined;
|
|
8269
8483
|
gridTemplate?: string | undefined;
|
|
8270
8484
|
gridGap?: string | number | undefined;
|
|
8485
|
+
gridRowGap?: string | number | undefined;
|
|
8486
|
+
gridColumnGap?: string | number | undefined;
|
|
8271
8487
|
flexDirection?: "row" | "column" | undefined;
|
|
8272
8488
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8273
8489
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -8328,6 +8544,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8328
8544
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
8329
8545
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
8330
8546
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8547
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8548
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8331
8549
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
8332
8550
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
8333
8551
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -8600,6 +8818,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8600
8818
|
gridTemplateColumns?: string | undefined;
|
|
8601
8819
|
gridTemplate?: string | undefined;
|
|
8602
8820
|
gridGap?: string | number | undefined;
|
|
8821
|
+
gridRowGap?: string | number | undefined;
|
|
8822
|
+
gridColumnGap?: string | number | undefined;
|
|
8603
8823
|
flexDirection?: "row" | "column" | undefined;
|
|
8604
8824
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8605
8825
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -8636,6 +8856,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8636
8856
|
gridTemplateColumns?: string | undefined;
|
|
8637
8857
|
gridTemplate?: string | undefined;
|
|
8638
8858
|
gridGap?: string | number | undefined;
|
|
8859
|
+
gridRowGap?: string | number | undefined;
|
|
8860
|
+
gridColumnGap?: string | number | undefined;
|
|
8639
8861
|
flexDirection?: "row" | "column" | undefined;
|
|
8640
8862
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8641
8863
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -8668,6 +8890,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8668
8890
|
gridTemplateColumns?: string | undefined;
|
|
8669
8891
|
gridTemplate?: string | undefined;
|
|
8670
8892
|
gridGap?: string | number | undefined;
|
|
8893
|
+
gridRowGap?: string | number | undefined;
|
|
8894
|
+
gridColumnGap?: string | number | undefined;
|
|
8671
8895
|
flexDirection?: "row" | "column" | undefined;
|
|
8672
8896
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8673
8897
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -8711,6 +8935,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8711
8935
|
pcbGridTemplateColumns?: string | undefined;
|
|
8712
8936
|
pcbGridTemplate?: string | undefined;
|
|
8713
8937
|
pcbGridGap?: string | number | undefined;
|
|
8938
|
+
pcbGridRowGap?: string | number | undefined;
|
|
8939
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
8714
8940
|
pcbFlex?: string | boolean | undefined;
|
|
8715
8941
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
8716
8942
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
@@ -8801,6 +9027,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8801
9027
|
gridTemplateColumns?: string | undefined;
|
|
8802
9028
|
gridTemplate?: string | undefined;
|
|
8803
9029
|
gridGap?: string | number | undefined;
|
|
9030
|
+
gridRowGap?: string | number | undefined;
|
|
9031
|
+
gridColumnGap?: string | number | undefined;
|
|
8804
9032
|
flexDirection?: "row" | "column" | undefined;
|
|
8805
9033
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8806
9034
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -8837,6 +9065,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8837
9065
|
gridTemplateColumns?: string | undefined;
|
|
8838
9066
|
gridTemplate?: string | undefined;
|
|
8839
9067
|
gridGap?: string | number | undefined;
|
|
9068
|
+
gridRowGap?: string | number | undefined;
|
|
9069
|
+
gridColumnGap?: string | number | undefined;
|
|
8840
9070
|
flexDirection?: "row" | "column" | undefined;
|
|
8841
9071
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8842
9072
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -8869,6 +9099,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8869
9099
|
gridTemplateColumns?: string | undefined;
|
|
8870
9100
|
gridTemplate?: string | undefined;
|
|
8871
9101
|
gridGap?: string | number | undefined;
|
|
9102
|
+
gridRowGap?: string | number | undefined;
|
|
9103
|
+
gridColumnGap?: string | number | undefined;
|
|
8872
9104
|
flexDirection?: "row" | "column" | undefined;
|
|
8873
9105
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8874
9106
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -8912,6 +9144,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8912
9144
|
pcbGridTemplateColumns?: string | undefined;
|
|
8913
9145
|
pcbGridTemplate?: string | undefined;
|
|
8914
9146
|
pcbGridGap?: string | number | undefined;
|
|
9147
|
+
pcbGridRowGap?: string | number | undefined;
|
|
9148
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
8915
9149
|
pcbFlex?: string | boolean | undefined;
|
|
8916
9150
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
8917
9151
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
@@ -15759,6 +15993,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15759
15993
|
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
15760
15994
|
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
15761
15995
|
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15996
|
+
pcbGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15997
|
+
pcbGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15762
15998
|
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
15763
15999
|
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
15764
16000
|
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -15780,6 +16016,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15780
16016
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
15781
16017
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
15782
16018
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
16019
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
16020
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15783
16021
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
15784
16022
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
15785
16023
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -15812,6 +16050,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15812
16050
|
gridTemplateColumns?: string | undefined;
|
|
15813
16051
|
gridTemplate?: string | undefined;
|
|
15814
16052
|
gridGap?: string | number | undefined;
|
|
16053
|
+
gridRowGap?: string | number | undefined;
|
|
16054
|
+
gridColumnGap?: string | number | undefined;
|
|
15815
16055
|
flexDirection?: "row" | "column" | undefined;
|
|
15816
16056
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15817
16057
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -15843,6 +16083,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15843
16083
|
gridTemplateColumns?: string | undefined;
|
|
15844
16084
|
gridTemplate?: string | undefined;
|
|
15845
16085
|
gridGap?: string | number | undefined;
|
|
16086
|
+
gridRowGap?: string | number | undefined;
|
|
16087
|
+
gridColumnGap?: string | number | undefined;
|
|
15846
16088
|
flexDirection?: "row" | "column" | undefined;
|
|
15847
16089
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15848
16090
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -15874,6 +16116,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15874
16116
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
15875
16117
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
15876
16118
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
16119
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
16120
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15877
16121
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
15878
16122
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
15879
16123
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -15906,6 +16150,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15906
16150
|
gridTemplateColumns?: string | undefined;
|
|
15907
16151
|
gridTemplate?: string | undefined;
|
|
15908
16152
|
gridGap?: string | number | undefined;
|
|
16153
|
+
gridRowGap?: string | number | undefined;
|
|
16154
|
+
gridColumnGap?: string | number | undefined;
|
|
15909
16155
|
flexDirection?: "row" | "column" | undefined;
|
|
15910
16156
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15911
16157
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -15937,6 +16183,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15937
16183
|
gridTemplateColumns?: string | undefined;
|
|
15938
16184
|
gridTemplate?: string | undefined;
|
|
15939
16185
|
gridGap?: string | number | undefined;
|
|
16186
|
+
gridRowGap?: string | number | undefined;
|
|
16187
|
+
gridColumnGap?: string | number | undefined;
|
|
15940
16188
|
flexDirection?: "row" | "column" | undefined;
|
|
15941
16189
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15942
16190
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -15997,6 +16245,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15997
16245
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
15998
16246
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
15999
16247
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
16248
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
16249
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
16000
16250
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
16001
16251
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
16002
16252
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -16289,6 +16539,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16289
16539
|
gridTemplateColumns?: string | undefined;
|
|
16290
16540
|
gridTemplate?: string | undefined;
|
|
16291
16541
|
gridGap?: string | number | undefined;
|
|
16542
|
+
gridRowGap?: string | number | undefined;
|
|
16543
|
+
gridColumnGap?: string | number | undefined;
|
|
16292
16544
|
flexDirection?: "row" | "column" | undefined;
|
|
16293
16545
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
16294
16546
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -16325,6 +16577,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16325
16577
|
gridTemplateColumns?: string | undefined;
|
|
16326
16578
|
gridTemplate?: string | undefined;
|
|
16327
16579
|
gridGap?: string | number | undefined;
|
|
16580
|
+
gridRowGap?: string | number | undefined;
|
|
16581
|
+
gridColumnGap?: string | number | undefined;
|
|
16328
16582
|
flexDirection?: "row" | "column" | undefined;
|
|
16329
16583
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
16330
16584
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -16357,6 +16611,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16357
16611
|
gridTemplateColumns?: string | undefined;
|
|
16358
16612
|
gridTemplate?: string | undefined;
|
|
16359
16613
|
gridGap?: string | number | undefined;
|
|
16614
|
+
gridRowGap?: string | number | undefined;
|
|
16615
|
+
gridColumnGap?: string | number | undefined;
|
|
16360
16616
|
flexDirection?: "row" | "column" | undefined;
|
|
16361
16617
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
16362
16618
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -16400,6 +16656,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16400
16656
|
pcbGridTemplateColumns?: string | undefined;
|
|
16401
16657
|
pcbGridTemplate?: string | undefined;
|
|
16402
16658
|
pcbGridGap?: string | number | undefined;
|
|
16659
|
+
pcbGridRowGap?: string | number | undefined;
|
|
16660
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
16403
16661
|
pcbFlex?: string | boolean | undefined;
|
|
16404
16662
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
16405
16663
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
@@ -16500,6 +16758,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16500
16758
|
gridTemplateColumns?: string | undefined;
|
|
16501
16759
|
gridTemplate?: string | undefined;
|
|
16502
16760
|
gridGap?: string | number | undefined;
|
|
16761
|
+
gridRowGap?: string | number | undefined;
|
|
16762
|
+
gridColumnGap?: string | number | undefined;
|
|
16503
16763
|
flexDirection?: "row" | "column" | undefined;
|
|
16504
16764
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
16505
16765
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -16536,6 +16796,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16536
16796
|
gridTemplateColumns?: string | undefined;
|
|
16537
16797
|
gridTemplate?: string | undefined;
|
|
16538
16798
|
gridGap?: string | number | undefined;
|
|
16799
|
+
gridRowGap?: string | number | undefined;
|
|
16800
|
+
gridColumnGap?: string | number | undefined;
|
|
16539
16801
|
flexDirection?: "row" | "column" | undefined;
|
|
16540
16802
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
16541
16803
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -16568,6 +16830,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16568
16830
|
gridTemplateColumns?: string | undefined;
|
|
16569
16831
|
gridTemplate?: string | undefined;
|
|
16570
16832
|
gridGap?: string | number | undefined;
|
|
16833
|
+
gridRowGap?: string | number | undefined;
|
|
16834
|
+
gridColumnGap?: string | number | undefined;
|
|
16571
16835
|
flexDirection?: "row" | "column" | undefined;
|
|
16572
16836
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
16573
16837
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -16611,6 +16875,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16611
16875
|
pcbGridTemplateColumns?: string | undefined;
|
|
16612
16876
|
pcbGridTemplate?: string | undefined;
|
|
16613
16877
|
pcbGridGap?: string | number | undefined;
|
|
16878
|
+
pcbGridRowGap?: string | number | undefined;
|
|
16879
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
16614
16880
|
pcbFlex?: string | boolean | undefined;
|
|
16615
16881
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
16616
16882
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
@@ -19154,6 +19420,10 @@ interface PinHeaderProps extends CommonComponentProps {
|
|
|
19154
19420
|
* Whether the header has two rows of pins
|
|
19155
19421
|
*/
|
|
19156
19422
|
doubleRow?: boolean;
|
|
19423
|
+
/**
|
|
19424
|
+
* If true, the header is a right-angle style connector
|
|
19425
|
+
*/
|
|
19426
|
+
rightAngle?: boolean;
|
|
19157
19427
|
/**
|
|
19158
19428
|
* Diameter of the through-hole for each pin
|
|
19159
19429
|
*/
|
|
@@ -19485,6 +19755,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
19485
19755
|
showSilkscreenPinLabels: z.ZodOptional<z.ZodBoolean>;
|
|
19486
19756
|
pcbPinLabels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
19487
19757
|
doubleRow: z.ZodOptional<z.ZodBoolean>;
|
|
19758
|
+
rightAngle: z.ZodOptional<z.ZodBoolean>;
|
|
19488
19759
|
holeDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19489
19760
|
platedDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19490
19761
|
pinLabels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -19749,6 +20020,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
19749
20020
|
schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
19750
20021
|
showSilkscreenPinLabels?: boolean | undefined;
|
|
19751
20022
|
doubleRow?: boolean | undefined;
|
|
20023
|
+
rightAngle?: boolean | undefined;
|
|
19752
20024
|
platedDiameter?: number | undefined;
|
|
19753
20025
|
facingDirection?: "left" | "right" | undefined;
|
|
19754
20026
|
}, {
|
|
@@ -19881,6 +20153,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
19881
20153
|
schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
19882
20154
|
showSilkscreenPinLabels?: boolean | undefined;
|
|
19883
20155
|
doubleRow?: boolean | undefined;
|
|
20156
|
+
rightAngle?: boolean | undefined;
|
|
19884
20157
|
platedDiameter?: string | number | undefined;
|
|
19885
20158
|
facingDirection?: "left" | "right" | undefined;
|
|
19886
20159
|
}>;
|
|
@@ -20834,6 +21107,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20834
21107
|
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
20835
21108
|
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
20836
21109
|
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21110
|
+
pcbGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21111
|
+
pcbGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20837
21112
|
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
20838
21113
|
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
20839
21114
|
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -20855,6 +21130,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20855
21130
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
20856
21131
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
20857
21132
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21133
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21134
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20858
21135
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
20859
21136
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
20860
21137
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -20887,6 +21164,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20887
21164
|
gridTemplateColumns?: string | undefined;
|
|
20888
21165
|
gridTemplate?: string | undefined;
|
|
20889
21166
|
gridGap?: string | number | undefined;
|
|
21167
|
+
gridRowGap?: string | number | undefined;
|
|
21168
|
+
gridColumnGap?: string | number | undefined;
|
|
20890
21169
|
flexDirection?: "row" | "column" | undefined;
|
|
20891
21170
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20892
21171
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -20918,6 +21197,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20918
21197
|
gridTemplateColumns?: string | undefined;
|
|
20919
21198
|
gridTemplate?: string | undefined;
|
|
20920
21199
|
gridGap?: string | number | undefined;
|
|
21200
|
+
gridRowGap?: string | number | undefined;
|
|
21201
|
+
gridColumnGap?: string | number | undefined;
|
|
20921
21202
|
flexDirection?: "row" | "column" | undefined;
|
|
20922
21203
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20923
21204
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -20949,6 +21230,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20949
21230
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
20950
21231
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
20951
21232
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21233
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21234
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20952
21235
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
20953
21236
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
20954
21237
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
@@ -20981,6 +21264,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20981
21264
|
gridTemplateColumns?: string | undefined;
|
|
20982
21265
|
gridTemplate?: string | undefined;
|
|
20983
21266
|
gridGap?: string | number | undefined;
|
|
21267
|
+
gridRowGap?: string | number | undefined;
|
|
21268
|
+
gridColumnGap?: string | number | undefined;
|
|
20984
21269
|
flexDirection?: "row" | "column" | undefined;
|
|
20985
21270
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20986
21271
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -21012,6 +21297,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21012
21297
|
gridTemplateColumns?: string | undefined;
|
|
21013
21298
|
gridTemplate?: string | undefined;
|
|
21014
21299
|
gridGap?: string | number | undefined;
|
|
21300
|
+
gridRowGap?: string | number | undefined;
|
|
21301
|
+
gridColumnGap?: string | number | undefined;
|
|
21015
21302
|
flexDirection?: "row" | "column" | undefined;
|
|
21016
21303
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
21017
21304
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -21072,6 +21359,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21072
21359
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
21073
21360
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
21074
21361
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21362
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21363
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21075
21364
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
21076
21365
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
21077
21366
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -21344,6 +21633,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21344
21633
|
gridTemplateColumns?: string | undefined;
|
|
21345
21634
|
gridTemplate?: string | undefined;
|
|
21346
21635
|
gridGap?: string | number | undefined;
|
|
21636
|
+
gridRowGap?: string | number | undefined;
|
|
21637
|
+
gridColumnGap?: string | number | undefined;
|
|
21347
21638
|
flexDirection?: "row" | "column" | undefined;
|
|
21348
21639
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
21349
21640
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -21380,6 +21671,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21380
21671
|
gridTemplateColumns?: string | undefined;
|
|
21381
21672
|
gridTemplate?: string | undefined;
|
|
21382
21673
|
gridGap?: string | number | undefined;
|
|
21674
|
+
gridRowGap?: string | number | undefined;
|
|
21675
|
+
gridColumnGap?: string | number | undefined;
|
|
21383
21676
|
flexDirection?: "row" | "column" | undefined;
|
|
21384
21677
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
21385
21678
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -21412,6 +21705,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21412
21705
|
gridTemplateColumns?: string | undefined;
|
|
21413
21706
|
gridTemplate?: string | undefined;
|
|
21414
21707
|
gridGap?: string | number | undefined;
|
|
21708
|
+
gridRowGap?: string | number | undefined;
|
|
21709
|
+
gridColumnGap?: string | number | undefined;
|
|
21415
21710
|
flexDirection?: "row" | "column" | undefined;
|
|
21416
21711
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
21417
21712
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -21455,6 +21750,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21455
21750
|
pcbGridTemplateColumns?: string | undefined;
|
|
21456
21751
|
pcbGridTemplate?: string | undefined;
|
|
21457
21752
|
pcbGridGap?: string | number | undefined;
|
|
21753
|
+
pcbGridRowGap?: string | number | undefined;
|
|
21754
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
21458
21755
|
pcbFlex?: string | boolean | undefined;
|
|
21459
21756
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
21460
21757
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
@@ -21545,6 +21842,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21545
21842
|
gridTemplateColumns?: string | undefined;
|
|
21546
21843
|
gridTemplate?: string | undefined;
|
|
21547
21844
|
gridGap?: string | number | undefined;
|
|
21845
|
+
gridRowGap?: string | number | undefined;
|
|
21846
|
+
gridColumnGap?: string | number | undefined;
|
|
21548
21847
|
flexDirection?: "row" | "column" | undefined;
|
|
21549
21848
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
21550
21849
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -21581,6 +21880,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21581
21880
|
gridTemplateColumns?: string | undefined;
|
|
21582
21881
|
gridTemplate?: string | undefined;
|
|
21583
21882
|
gridGap?: string | number | undefined;
|
|
21883
|
+
gridRowGap?: string | number | undefined;
|
|
21884
|
+
gridColumnGap?: string | number | undefined;
|
|
21584
21885
|
flexDirection?: "row" | "column" | undefined;
|
|
21585
21886
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
21586
21887
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -21613,6 +21914,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21613
21914
|
gridTemplateColumns?: string | undefined;
|
|
21614
21915
|
gridTemplate?: string | undefined;
|
|
21615
21916
|
gridGap?: string | number | undefined;
|
|
21917
|
+
gridRowGap?: string | number | undefined;
|
|
21918
|
+
gridColumnGap?: string | number | undefined;
|
|
21616
21919
|
flexDirection?: "row" | "column" | undefined;
|
|
21617
21920
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
21618
21921
|
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
@@ -21656,6 +21959,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21656
21959
|
pcbGridTemplateColumns?: string | undefined;
|
|
21657
21960
|
pcbGridTemplate?: string | undefined;
|
|
21658
21961
|
pcbGridGap?: string | number | undefined;
|
|
21962
|
+
pcbGridRowGap?: string | number | undefined;
|
|
21963
|
+
pcbGridColumnGap?: string | number | undefined;
|
|
21659
21964
|
pcbFlex?: string | boolean | undefined;
|
|
21660
21965
|
pcbFlexDirection?: "row" | "column" | undefined;
|
|
21661
21966
|
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|