@tscircuit/props 0.0.264 → 0.0.265
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +121 -121
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +19 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2846,7 +2846,7 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2846
2846
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
2847
2847
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
2848
2848
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
2849
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
2849
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
2850
2850
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
2851
2851
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
2852
2852
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -2877,7 +2877,7 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2877
2877
|
gridGap?: string | number | undefined;
|
|
2878
2878
|
flexDirection?: "row" | "column" | undefined;
|
|
2879
2879
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2880
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2880
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
2881
2881
|
flexRow?: boolean | undefined;
|
|
2882
2882
|
flexColumn?: boolean | undefined;
|
|
2883
2883
|
gap?: string | number | undefined;
|
|
@@ -2908,7 +2908,7 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2908
2908
|
gridGap?: string | number | undefined;
|
|
2909
2909
|
flexDirection?: "row" | "column" | undefined;
|
|
2910
2910
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2911
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2911
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
2912
2912
|
flexRow?: boolean | undefined;
|
|
2913
2913
|
flexColumn?: boolean | undefined;
|
|
2914
2914
|
gap?: string | number | undefined;
|
|
@@ -2940,7 +2940,7 @@ interface LayoutConfig {
|
|
|
2940
2940
|
flex?: boolean | string;
|
|
2941
2941
|
flexDirection?: "row" | "column";
|
|
2942
2942
|
alignItems?: "start" | "center" | "end" | "stretch";
|
|
2943
|
-
justifyContent?: "start" | "center" | "end" | "stretch";
|
|
2943
|
+
justifyContent?: "start" | "center" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly";
|
|
2944
2944
|
flexRow?: boolean;
|
|
2945
2945
|
flexColumn?: boolean;
|
|
2946
2946
|
gap?: number | string;
|
|
@@ -3162,7 +3162,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3162
3162
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3163
3163
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3164
3164
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3165
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3165
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
3166
3166
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3167
3167
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3168
3168
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -3193,7 +3193,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3193
3193
|
gridGap?: string | number | undefined;
|
|
3194
3194
|
flexDirection?: "row" | "column" | undefined;
|
|
3195
3195
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3196
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3196
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3197
3197
|
flexRow?: boolean | undefined;
|
|
3198
3198
|
flexColumn?: boolean | undefined;
|
|
3199
3199
|
gap?: string | number | undefined;
|
|
@@ -3224,7 +3224,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3224
3224
|
gridGap?: string | number | undefined;
|
|
3225
3225
|
flexDirection?: "row" | "column" | undefined;
|
|
3226
3226
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3227
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3227
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3228
3228
|
flexRow?: boolean | undefined;
|
|
3229
3229
|
flexColumn?: boolean | undefined;
|
|
3230
3230
|
gap?: string | number | undefined;
|
|
@@ -3256,7 +3256,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3256
3256
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3257
3257
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3258
3258
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3259
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3259
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
3260
3260
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3261
3261
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3262
3262
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -3287,7 +3287,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3287
3287
|
gridGap?: string | number | undefined;
|
|
3288
3288
|
flexDirection?: "row" | "column" | undefined;
|
|
3289
3289
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3290
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3290
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3291
3291
|
flexRow?: boolean | undefined;
|
|
3292
3292
|
flexColumn?: boolean | undefined;
|
|
3293
3293
|
gap?: string | number | undefined;
|
|
@@ -3318,7 +3318,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3318
3318
|
gridGap?: string | number | undefined;
|
|
3319
3319
|
flexDirection?: "row" | "column" | undefined;
|
|
3320
3320
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3321
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3321
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3322
3322
|
flexRow?: boolean | undefined;
|
|
3323
3323
|
flexColumn?: boolean | undefined;
|
|
3324
3324
|
gap?: string | number | undefined;
|
|
@@ -3380,7 +3380,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3380
3380
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3381
3381
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3382
3382
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3383
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3383
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
3384
3384
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3385
3385
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3386
3386
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -3426,7 +3426,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3426
3426
|
gridGap?: string | number | undefined;
|
|
3427
3427
|
flexDirection?: "row" | "column" | undefined;
|
|
3428
3428
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3429
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3429
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3430
3430
|
flexRow?: boolean | undefined;
|
|
3431
3431
|
flexColumn?: boolean | undefined;
|
|
3432
3432
|
gap?: string | number | undefined;
|
|
@@ -3462,7 +3462,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3462
3462
|
gridGap?: string | number | undefined;
|
|
3463
3463
|
flexDirection?: "row" | "column" | undefined;
|
|
3464
3464
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3465
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3465
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3466
3466
|
flexRow?: boolean | undefined;
|
|
3467
3467
|
flexColumn?: boolean | undefined;
|
|
3468
3468
|
gap?: string | number | undefined;
|
|
@@ -3494,7 +3494,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3494
3494
|
gridGap?: string | number | undefined;
|
|
3495
3495
|
flexDirection?: "row" | "column" | undefined;
|
|
3496
3496
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3497
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3497
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3498
3498
|
flexRow?: boolean | undefined;
|
|
3499
3499
|
flexColumn?: boolean | undefined;
|
|
3500
3500
|
gap?: string | number | undefined;
|
|
@@ -3554,7 +3554,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3554
3554
|
gridGap?: string | number | undefined;
|
|
3555
3555
|
flexDirection?: "row" | "column" | undefined;
|
|
3556
3556
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3557
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3557
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3558
3558
|
flexRow?: boolean | undefined;
|
|
3559
3559
|
flexColumn?: boolean | undefined;
|
|
3560
3560
|
gap?: string | number | undefined;
|
|
@@ -3590,7 +3590,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3590
3590
|
gridGap?: string | number | undefined;
|
|
3591
3591
|
flexDirection?: "row" | "column" | undefined;
|
|
3592
3592
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3593
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3593
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3594
3594
|
flexRow?: boolean | undefined;
|
|
3595
3595
|
flexColumn?: boolean | undefined;
|
|
3596
3596
|
gap?: string | number | undefined;
|
|
@@ -3622,7 +3622,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3622
3622
|
gridGap?: string | number | undefined;
|
|
3623
3623
|
flexDirection?: "row" | "column" | undefined;
|
|
3624
3624
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3625
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3625
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3626
3626
|
flexRow?: boolean | undefined;
|
|
3627
3627
|
flexColumn?: boolean | undefined;
|
|
3628
3628
|
gap?: string | number | undefined;
|
|
@@ -3692,7 +3692,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3692
3692
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3693
3693
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3694
3694
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3695
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3695
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
3696
3696
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3697
3697
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3698
3698
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -3723,7 +3723,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3723
3723
|
gridGap?: string | number | undefined;
|
|
3724
3724
|
flexDirection?: "row" | "column" | undefined;
|
|
3725
3725
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3726
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3726
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3727
3727
|
flexRow?: boolean | undefined;
|
|
3728
3728
|
flexColumn?: boolean | undefined;
|
|
3729
3729
|
gap?: string | number | undefined;
|
|
@@ -3754,7 +3754,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3754
3754
|
gridGap?: string | number | undefined;
|
|
3755
3755
|
flexDirection?: "row" | "column" | undefined;
|
|
3756
3756
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3757
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3757
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3758
3758
|
flexRow?: boolean | undefined;
|
|
3759
3759
|
flexColumn?: boolean | undefined;
|
|
3760
3760
|
gap?: string | number | undefined;
|
|
@@ -3786,7 +3786,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3786
3786
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3787
3787
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3788
3788
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3789
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3789
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
3790
3790
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3791
3791
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3792
3792
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -3817,7 +3817,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3817
3817
|
gridGap?: string | number | undefined;
|
|
3818
3818
|
flexDirection?: "row" | "column" | undefined;
|
|
3819
3819
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3820
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3820
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3821
3821
|
flexRow?: boolean | undefined;
|
|
3822
3822
|
flexColumn?: boolean | undefined;
|
|
3823
3823
|
gap?: string | number | undefined;
|
|
@@ -3848,7 +3848,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3848
3848
|
gridGap?: string | number | undefined;
|
|
3849
3849
|
flexDirection?: "row" | "column" | undefined;
|
|
3850
3850
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3851
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3851
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3852
3852
|
flexRow?: boolean | undefined;
|
|
3853
3853
|
flexColumn?: boolean | undefined;
|
|
3854
3854
|
gap?: string | number | undefined;
|
|
@@ -3910,7 +3910,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3910
3910
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3911
3911
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3912
3912
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3913
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3913
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
3914
3914
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3915
3915
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3916
3916
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -4179,7 +4179,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4179
4179
|
gridGap?: string | number | undefined;
|
|
4180
4180
|
flexDirection?: "row" | "column" | undefined;
|
|
4181
4181
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4182
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4182
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4183
4183
|
flexRow?: boolean | undefined;
|
|
4184
4184
|
flexColumn?: boolean | undefined;
|
|
4185
4185
|
gap?: string | number | undefined;
|
|
@@ -4215,7 +4215,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4215
4215
|
gridGap?: string | number | undefined;
|
|
4216
4216
|
flexDirection?: "row" | "column" | undefined;
|
|
4217
4217
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4218
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4218
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4219
4219
|
flexRow?: boolean | undefined;
|
|
4220
4220
|
flexColumn?: boolean | undefined;
|
|
4221
4221
|
gap?: string | number | undefined;
|
|
@@ -4247,7 +4247,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4247
4247
|
gridGap?: string | number | undefined;
|
|
4248
4248
|
flexDirection?: "row" | "column" | undefined;
|
|
4249
4249
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4250
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4250
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4251
4251
|
flexRow?: boolean | undefined;
|
|
4252
4252
|
flexColumn?: boolean | undefined;
|
|
4253
4253
|
gap?: string | number | undefined;
|
|
@@ -4363,7 +4363,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4363
4363
|
gridGap?: string | number | undefined;
|
|
4364
4364
|
flexDirection?: "row" | "column" | undefined;
|
|
4365
4365
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4366
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4366
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4367
4367
|
flexRow?: boolean | undefined;
|
|
4368
4368
|
flexColumn?: boolean | undefined;
|
|
4369
4369
|
gap?: string | number | undefined;
|
|
@@ -4399,7 +4399,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4399
4399
|
gridGap?: string | number | undefined;
|
|
4400
4400
|
flexDirection?: "row" | "column" | undefined;
|
|
4401
4401
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4402
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4402
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4403
4403
|
flexRow?: boolean | undefined;
|
|
4404
4404
|
flexColumn?: boolean | undefined;
|
|
4405
4405
|
gap?: string | number | undefined;
|
|
@@ -4431,7 +4431,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4431
4431
|
gridGap?: string | number | undefined;
|
|
4432
4432
|
flexDirection?: "row" | "column" | undefined;
|
|
4433
4433
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4434
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4434
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4435
4435
|
flexRow?: boolean | undefined;
|
|
4436
4436
|
flexColumn?: boolean | undefined;
|
|
4437
4437
|
gap?: string | number | undefined;
|
|
@@ -4558,7 +4558,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4558
4558
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
4559
4559
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
4560
4560
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4561
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4561
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
4562
4562
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4563
4563
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4564
4564
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -4589,7 +4589,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4589
4589
|
gridGap?: string | number | undefined;
|
|
4590
4590
|
flexDirection?: "row" | "column" | undefined;
|
|
4591
4591
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4592
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4592
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4593
4593
|
flexRow?: boolean | undefined;
|
|
4594
4594
|
flexColumn?: boolean | undefined;
|
|
4595
4595
|
gap?: string | number | undefined;
|
|
@@ -4620,7 +4620,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4620
4620
|
gridGap?: string | number | undefined;
|
|
4621
4621
|
flexDirection?: "row" | "column" | undefined;
|
|
4622
4622
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4623
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4623
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4624
4624
|
flexRow?: boolean | undefined;
|
|
4625
4625
|
flexColumn?: boolean | undefined;
|
|
4626
4626
|
gap?: string | number | undefined;
|
|
@@ -4652,7 +4652,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4652
4652
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
4653
4653
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
4654
4654
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4655
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4655
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
4656
4656
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4657
4657
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4658
4658
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -4683,7 +4683,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4683
4683
|
gridGap?: string | number | undefined;
|
|
4684
4684
|
flexDirection?: "row" | "column" | undefined;
|
|
4685
4685
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4686
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4686
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4687
4687
|
flexRow?: boolean | undefined;
|
|
4688
4688
|
flexColumn?: boolean | undefined;
|
|
4689
4689
|
gap?: string | number | undefined;
|
|
@@ -4714,7 +4714,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4714
4714
|
gridGap?: string | number | undefined;
|
|
4715
4715
|
flexDirection?: "row" | "column" | undefined;
|
|
4716
4716
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4717
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4717
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4718
4718
|
flexRow?: boolean | undefined;
|
|
4719
4719
|
flexColumn?: boolean | undefined;
|
|
4720
4720
|
gap?: string | number | undefined;
|
|
@@ -4776,7 +4776,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4776
4776
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
4777
4777
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
4778
4778
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4779
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4779
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
4780
4780
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4781
4781
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4782
4782
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -5048,7 +5048,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5048
5048
|
gridGap?: string | number | undefined;
|
|
5049
5049
|
flexDirection?: "row" | "column" | undefined;
|
|
5050
5050
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5051
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5051
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5052
5052
|
flexRow?: boolean | undefined;
|
|
5053
5053
|
flexColumn?: boolean | undefined;
|
|
5054
5054
|
gap?: string | number | undefined;
|
|
@@ -5084,7 +5084,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5084
5084
|
gridGap?: string | number | undefined;
|
|
5085
5085
|
flexDirection?: "row" | "column" | undefined;
|
|
5086
5086
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5087
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5087
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5088
5088
|
flexRow?: boolean | undefined;
|
|
5089
5089
|
flexColumn?: boolean | undefined;
|
|
5090
5090
|
gap?: string | number | undefined;
|
|
@@ -5116,7 +5116,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5116
5116
|
gridGap?: string | number | undefined;
|
|
5117
5117
|
flexDirection?: "row" | "column" | undefined;
|
|
5118
5118
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5119
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5119
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5120
5120
|
flexRow?: boolean | undefined;
|
|
5121
5121
|
flexColumn?: boolean | undefined;
|
|
5122
5122
|
gap?: string | number | undefined;
|
|
@@ -5233,7 +5233,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5233
5233
|
gridGap?: string | number | undefined;
|
|
5234
5234
|
flexDirection?: "row" | "column" | undefined;
|
|
5235
5235
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5236
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5236
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5237
5237
|
flexRow?: boolean | undefined;
|
|
5238
5238
|
flexColumn?: boolean | undefined;
|
|
5239
5239
|
gap?: string | number | undefined;
|
|
@@ -5269,7 +5269,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5269
5269
|
gridGap?: string | number | undefined;
|
|
5270
5270
|
flexDirection?: "row" | "column" | undefined;
|
|
5271
5271
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5272
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5272
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5273
5273
|
flexRow?: boolean | undefined;
|
|
5274
5274
|
flexColumn?: boolean | undefined;
|
|
5275
5275
|
gap?: string | number | undefined;
|
|
@@ -5301,7 +5301,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5301
5301
|
gridGap?: string | number | undefined;
|
|
5302
5302
|
flexDirection?: "row" | "column" | undefined;
|
|
5303
5303
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5304
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5304
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5305
5305
|
flexRow?: boolean | undefined;
|
|
5306
5306
|
flexColumn?: boolean | undefined;
|
|
5307
5307
|
gap?: string | number | undefined;
|
|
@@ -5429,7 +5429,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5429
5429
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
5430
5430
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
5431
5431
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5432
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5432
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
5433
5433
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5434
5434
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5435
5435
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -5460,7 +5460,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5460
5460
|
gridGap?: string | number | undefined;
|
|
5461
5461
|
flexDirection?: "row" | "column" | undefined;
|
|
5462
5462
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5463
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5463
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5464
5464
|
flexRow?: boolean | undefined;
|
|
5465
5465
|
flexColumn?: boolean | undefined;
|
|
5466
5466
|
gap?: string | number | undefined;
|
|
@@ -5491,7 +5491,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5491
5491
|
gridGap?: string | number | undefined;
|
|
5492
5492
|
flexDirection?: "row" | "column" | undefined;
|
|
5493
5493
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5494
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5494
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5495
5495
|
flexRow?: boolean | undefined;
|
|
5496
5496
|
flexColumn?: boolean | undefined;
|
|
5497
5497
|
gap?: string | number | undefined;
|
|
@@ -5523,7 +5523,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5523
5523
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
5524
5524
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
5525
5525
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5526
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5526
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
5527
5527
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5528
5528
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5529
5529
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -5554,7 +5554,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5554
5554
|
gridGap?: string | number | undefined;
|
|
5555
5555
|
flexDirection?: "row" | "column" | undefined;
|
|
5556
5556
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5557
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5557
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5558
5558
|
flexRow?: boolean | undefined;
|
|
5559
5559
|
flexColumn?: boolean | undefined;
|
|
5560
5560
|
gap?: string | number | undefined;
|
|
@@ -5585,7 +5585,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5585
5585
|
gridGap?: string | number | undefined;
|
|
5586
5586
|
flexDirection?: "row" | "column" | undefined;
|
|
5587
5587
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5588
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5588
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5589
5589
|
flexRow?: boolean | undefined;
|
|
5590
5590
|
flexColumn?: boolean | undefined;
|
|
5591
5591
|
gap?: string | number | undefined;
|
|
@@ -5647,7 +5647,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5647
5647
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
5648
5648
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
5649
5649
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5650
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5650
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
5651
5651
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5652
5652
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5653
5653
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -5695,7 +5695,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5695
5695
|
gridGap?: string | number | undefined;
|
|
5696
5696
|
flexDirection?: "row" | "column" | undefined;
|
|
5697
5697
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5698
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5698
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5699
5699
|
flexRow?: boolean | undefined;
|
|
5700
5700
|
flexColumn?: boolean | undefined;
|
|
5701
5701
|
gap?: string | number | undefined;
|
|
@@ -5731,7 +5731,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5731
5731
|
gridGap?: string | number | undefined;
|
|
5732
5732
|
flexDirection?: "row" | "column" | undefined;
|
|
5733
5733
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5734
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5734
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5735
5735
|
flexRow?: boolean | undefined;
|
|
5736
5736
|
flexColumn?: boolean | undefined;
|
|
5737
5737
|
gap?: string | number | undefined;
|
|
@@ -5763,7 +5763,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5763
5763
|
gridGap?: string | number | undefined;
|
|
5764
5764
|
flexDirection?: "row" | "column" | undefined;
|
|
5765
5765
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5766
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5766
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5767
5767
|
flexRow?: boolean | undefined;
|
|
5768
5768
|
flexColumn?: boolean | undefined;
|
|
5769
5769
|
gap?: string | number | undefined;
|
|
@@ -5824,7 +5824,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5824
5824
|
gridGap?: string | number | undefined;
|
|
5825
5825
|
flexDirection?: "row" | "column" | undefined;
|
|
5826
5826
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5827
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5827
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5828
5828
|
flexRow?: boolean | undefined;
|
|
5829
5829
|
flexColumn?: boolean | undefined;
|
|
5830
5830
|
gap?: string | number | undefined;
|
|
@@ -5860,7 +5860,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5860
5860
|
gridGap?: string | number | undefined;
|
|
5861
5861
|
flexDirection?: "row" | "column" | undefined;
|
|
5862
5862
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5863
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5863
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5864
5864
|
flexRow?: boolean | undefined;
|
|
5865
5865
|
flexColumn?: boolean | undefined;
|
|
5866
5866
|
gap?: string | number | undefined;
|
|
@@ -5892,7 +5892,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5892
5892
|
gridGap?: string | number | undefined;
|
|
5893
5893
|
flexDirection?: "row" | "column" | undefined;
|
|
5894
5894
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5895
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5895
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5896
5896
|
flexRow?: boolean | undefined;
|
|
5897
5897
|
flexColumn?: boolean | undefined;
|
|
5898
5898
|
gap?: string | number | undefined;
|
|
@@ -5961,7 +5961,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5961
5961
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
5962
5962
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
5963
5963
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5964
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5964
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
5965
5965
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5966
5966
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5967
5967
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -5992,7 +5992,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5992
5992
|
gridGap?: string | number | undefined;
|
|
5993
5993
|
flexDirection?: "row" | "column" | undefined;
|
|
5994
5994
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5995
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5995
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5996
5996
|
flexRow?: boolean | undefined;
|
|
5997
5997
|
flexColumn?: boolean | undefined;
|
|
5998
5998
|
gap?: string | number | undefined;
|
|
@@ -6023,7 +6023,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6023
6023
|
gridGap?: string | number | undefined;
|
|
6024
6024
|
flexDirection?: "row" | "column" | undefined;
|
|
6025
6025
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6026
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6026
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6027
6027
|
flexRow?: boolean | undefined;
|
|
6028
6028
|
flexColumn?: boolean | undefined;
|
|
6029
6029
|
gap?: string | number | undefined;
|
|
@@ -6055,7 +6055,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6055
6055
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
6056
6056
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
6057
6057
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
6058
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
6058
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
6059
6059
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
6060
6060
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
6061
6061
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -6086,7 +6086,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6086
6086
|
gridGap?: string | number | undefined;
|
|
6087
6087
|
flexDirection?: "row" | "column" | undefined;
|
|
6088
6088
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6089
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6089
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6090
6090
|
flexRow?: boolean | undefined;
|
|
6091
6091
|
flexColumn?: boolean | undefined;
|
|
6092
6092
|
gap?: string | number | undefined;
|
|
@@ -6117,7 +6117,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6117
6117
|
gridGap?: string | number | undefined;
|
|
6118
6118
|
flexDirection?: "row" | "column" | undefined;
|
|
6119
6119
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6120
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6120
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6121
6121
|
flexRow?: boolean | undefined;
|
|
6122
6122
|
flexColumn?: boolean | undefined;
|
|
6123
6123
|
gap?: string | number | undefined;
|
|
@@ -6179,7 +6179,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6179
6179
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
6180
6180
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
6181
6181
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
6182
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
6182
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
6183
6183
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
6184
6184
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
6185
6185
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -6451,7 +6451,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6451
6451
|
gridGap?: string | number | undefined;
|
|
6452
6452
|
flexDirection?: "row" | "column" | undefined;
|
|
6453
6453
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6454
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6454
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6455
6455
|
flexRow?: boolean | undefined;
|
|
6456
6456
|
flexColumn?: boolean | undefined;
|
|
6457
6457
|
gap?: string | number | undefined;
|
|
@@ -6487,7 +6487,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6487
6487
|
gridGap?: string | number | undefined;
|
|
6488
6488
|
flexDirection?: "row" | "column" | undefined;
|
|
6489
6489
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6490
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6490
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6491
6491
|
flexRow?: boolean | undefined;
|
|
6492
6492
|
flexColumn?: boolean | undefined;
|
|
6493
6493
|
gap?: string | number | undefined;
|
|
@@ -6519,7 +6519,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6519
6519
|
gridGap?: string | number | undefined;
|
|
6520
6520
|
flexDirection?: "row" | "column" | undefined;
|
|
6521
6521
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6522
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6522
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6523
6523
|
flexRow?: boolean | undefined;
|
|
6524
6524
|
flexColumn?: boolean | undefined;
|
|
6525
6525
|
gap?: string | number | undefined;
|
|
@@ -6636,7 +6636,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6636
6636
|
gridGap?: string | number | undefined;
|
|
6637
6637
|
flexDirection?: "row" | "column" | undefined;
|
|
6638
6638
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6639
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6639
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6640
6640
|
flexRow?: boolean | undefined;
|
|
6641
6641
|
flexColumn?: boolean | undefined;
|
|
6642
6642
|
gap?: string | number | undefined;
|
|
@@ -6672,7 +6672,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6672
6672
|
gridGap?: string | number | undefined;
|
|
6673
6673
|
flexDirection?: "row" | "column" | undefined;
|
|
6674
6674
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6675
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6675
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6676
6676
|
flexRow?: boolean | undefined;
|
|
6677
6677
|
flexColumn?: boolean | undefined;
|
|
6678
6678
|
gap?: string | number | undefined;
|
|
@@ -6704,7 +6704,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6704
6704
|
gridGap?: string | number | undefined;
|
|
6705
6705
|
flexDirection?: "row" | "column" | undefined;
|
|
6706
6706
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6707
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6707
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6708
6708
|
flexRow?: boolean | undefined;
|
|
6709
6709
|
flexColumn?: boolean | undefined;
|
|
6710
6710
|
gap?: string | number | undefined;
|
|
@@ -6835,7 +6835,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
6835
6835
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
6836
6836
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
6837
6837
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
6838
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
6838
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
6839
6839
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
6840
6840
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
6841
6841
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -6866,7 +6866,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
6866
6866
|
gridGap?: string | number | undefined;
|
|
6867
6867
|
flexDirection?: "row" | "column" | undefined;
|
|
6868
6868
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6869
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6869
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6870
6870
|
flexRow?: boolean | undefined;
|
|
6871
6871
|
flexColumn?: boolean | undefined;
|
|
6872
6872
|
gap?: string | number | undefined;
|
|
@@ -6897,7 +6897,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
6897
6897
|
gridGap?: string | number | undefined;
|
|
6898
6898
|
flexDirection?: "row" | "column" | undefined;
|
|
6899
6899
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6900
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6900
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6901
6901
|
flexRow?: boolean | undefined;
|
|
6902
6902
|
flexColumn?: boolean | undefined;
|
|
6903
6903
|
gap?: string | number | undefined;
|
|
@@ -6929,7 +6929,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
6929
6929
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
6930
6930
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
6931
6931
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
6932
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
6932
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
6933
6933
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
6934
6934
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
6935
6935
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -6960,7 +6960,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
6960
6960
|
gridGap?: string | number | undefined;
|
|
6961
6961
|
flexDirection?: "row" | "column" | undefined;
|
|
6962
6962
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6963
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6963
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6964
6964
|
flexRow?: boolean | undefined;
|
|
6965
6965
|
flexColumn?: boolean | undefined;
|
|
6966
6966
|
gap?: string | number | undefined;
|
|
@@ -6991,7 +6991,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
6991
6991
|
gridGap?: string | number | undefined;
|
|
6992
6992
|
flexDirection?: "row" | "column" | undefined;
|
|
6993
6993
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6994
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6994
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6995
6995
|
flexRow?: boolean | undefined;
|
|
6996
6996
|
flexColumn?: boolean | undefined;
|
|
6997
6997
|
gap?: string | number | undefined;
|
|
@@ -7053,7 +7053,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7053
7053
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
7054
7054
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
7055
7055
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
7056
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
7056
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
7057
7057
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
7058
7058
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7059
7059
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -7325,7 +7325,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7325
7325
|
gridGap?: string | number | undefined;
|
|
7326
7326
|
flexDirection?: "row" | "column" | undefined;
|
|
7327
7327
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7328
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7328
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7329
7329
|
flexRow?: boolean | undefined;
|
|
7330
7330
|
flexColumn?: boolean | undefined;
|
|
7331
7331
|
gap?: string | number | undefined;
|
|
@@ -7361,7 +7361,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7361
7361
|
gridGap?: string | number | undefined;
|
|
7362
7362
|
flexDirection?: "row" | "column" | undefined;
|
|
7363
7363
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7364
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7364
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7365
7365
|
flexRow?: boolean | undefined;
|
|
7366
7366
|
flexColumn?: boolean | undefined;
|
|
7367
7367
|
gap?: string | number | undefined;
|
|
@@ -7393,7 +7393,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7393
7393
|
gridGap?: string | number | undefined;
|
|
7394
7394
|
flexDirection?: "row" | "column" | undefined;
|
|
7395
7395
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7396
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7396
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7397
7397
|
flexRow?: boolean | undefined;
|
|
7398
7398
|
flexColumn?: boolean | undefined;
|
|
7399
7399
|
gap?: string | number | undefined;
|
|
@@ -7509,7 +7509,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7509
7509
|
gridGap?: string | number | undefined;
|
|
7510
7510
|
flexDirection?: "row" | "column" | undefined;
|
|
7511
7511
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7512
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7512
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7513
7513
|
flexRow?: boolean | undefined;
|
|
7514
7514
|
flexColumn?: boolean | undefined;
|
|
7515
7515
|
gap?: string | number | undefined;
|
|
@@ -7545,7 +7545,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7545
7545
|
gridGap?: string | number | undefined;
|
|
7546
7546
|
flexDirection?: "row" | "column" | undefined;
|
|
7547
7547
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7548
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7548
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7549
7549
|
flexRow?: boolean | undefined;
|
|
7550
7550
|
flexColumn?: boolean | undefined;
|
|
7551
7551
|
gap?: string | number | undefined;
|
|
@@ -7577,7 +7577,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
7577
7577
|
gridGap?: string | number | undefined;
|
|
7578
7578
|
flexDirection?: "row" | "column" | undefined;
|
|
7579
7579
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7580
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7580
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7581
7581
|
flexRow?: boolean | undefined;
|
|
7582
7582
|
flexColumn?: boolean | undefined;
|
|
7583
7583
|
gap?: string | number | undefined;
|
|
@@ -7713,7 +7713,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7713
7713
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
7714
7714
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
7715
7715
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
7716
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
7716
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
7717
7717
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
7718
7718
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7719
7719
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -7744,7 +7744,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7744
7744
|
gridGap?: string | number | undefined;
|
|
7745
7745
|
flexDirection?: "row" | "column" | undefined;
|
|
7746
7746
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7747
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7747
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7748
7748
|
flexRow?: boolean | undefined;
|
|
7749
7749
|
flexColumn?: boolean | undefined;
|
|
7750
7750
|
gap?: string | number | undefined;
|
|
@@ -7775,7 +7775,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7775
7775
|
gridGap?: string | number | undefined;
|
|
7776
7776
|
flexDirection?: "row" | "column" | undefined;
|
|
7777
7777
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7778
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7778
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7779
7779
|
flexRow?: boolean | undefined;
|
|
7780
7780
|
flexColumn?: boolean | undefined;
|
|
7781
7781
|
gap?: string | number | undefined;
|
|
@@ -7807,7 +7807,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7807
7807
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
7808
7808
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
7809
7809
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
7810
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
7810
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
7811
7811
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
7812
7812
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7813
7813
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -7838,7 +7838,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7838
7838
|
gridGap?: string | number | undefined;
|
|
7839
7839
|
flexDirection?: "row" | "column" | undefined;
|
|
7840
7840
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7841
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7841
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7842
7842
|
flexRow?: boolean | undefined;
|
|
7843
7843
|
flexColumn?: boolean | undefined;
|
|
7844
7844
|
gap?: string | number | undefined;
|
|
@@ -7869,7 +7869,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7869
7869
|
gridGap?: string | number | undefined;
|
|
7870
7870
|
flexDirection?: "row" | "column" | undefined;
|
|
7871
7871
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7872
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7872
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7873
7873
|
flexRow?: boolean | undefined;
|
|
7874
7874
|
flexColumn?: boolean | undefined;
|
|
7875
7875
|
gap?: string | number | undefined;
|
|
@@ -7931,7 +7931,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7931
7931
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
7932
7932
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
7933
7933
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
7934
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
7934
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
7935
7935
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
7936
7936
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7937
7937
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -8200,7 +8200,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8200
8200
|
gridGap?: string | number | undefined;
|
|
8201
8201
|
flexDirection?: "row" | "column" | undefined;
|
|
8202
8202
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8203
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8203
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
8204
8204
|
flexRow?: boolean | undefined;
|
|
8205
8205
|
flexColumn?: boolean | undefined;
|
|
8206
8206
|
gap?: string | number | undefined;
|
|
@@ -8236,7 +8236,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8236
8236
|
gridGap?: string | number | undefined;
|
|
8237
8237
|
flexDirection?: "row" | "column" | undefined;
|
|
8238
8238
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8239
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8239
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
8240
8240
|
flexRow?: boolean | undefined;
|
|
8241
8241
|
flexColumn?: boolean | undefined;
|
|
8242
8242
|
gap?: string | number | undefined;
|
|
@@ -8268,7 +8268,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8268
8268
|
gridGap?: string | number | undefined;
|
|
8269
8269
|
flexDirection?: "row" | "column" | undefined;
|
|
8270
8270
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8271
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8271
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
8272
8272
|
flexRow?: boolean | undefined;
|
|
8273
8273
|
flexColumn?: boolean | undefined;
|
|
8274
8274
|
gap?: string | number | undefined;
|
|
@@ -8384,7 +8384,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8384
8384
|
gridGap?: string | number | undefined;
|
|
8385
8385
|
flexDirection?: "row" | "column" | undefined;
|
|
8386
8386
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8387
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8387
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
8388
8388
|
flexRow?: boolean | undefined;
|
|
8389
8389
|
flexColumn?: boolean | undefined;
|
|
8390
8390
|
gap?: string | number | undefined;
|
|
@@ -8420,7 +8420,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8420
8420
|
gridGap?: string | number | undefined;
|
|
8421
8421
|
flexDirection?: "row" | "column" | undefined;
|
|
8422
8422
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8423
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8423
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
8424
8424
|
flexRow?: boolean | undefined;
|
|
8425
8425
|
flexColumn?: boolean | undefined;
|
|
8426
8426
|
gap?: string | number | undefined;
|
|
@@ -8452,7 +8452,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8452
8452
|
gridGap?: string | number | undefined;
|
|
8453
8453
|
flexDirection?: "row" | "column" | undefined;
|
|
8454
8454
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8455
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8455
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
8456
8456
|
flexRow?: boolean | undefined;
|
|
8457
8457
|
flexColumn?: boolean | undefined;
|
|
8458
8458
|
gap?: string | number | undefined;
|
|
@@ -15191,7 +15191,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15191
15191
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
15192
15192
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
15193
15193
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
15194
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
15194
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
15195
15195
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
15196
15196
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
15197
15197
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -15222,7 +15222,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15222
15222
|
gridGap?: string | number | undefined;
|
|
15223
15223
|
flexDirection?: "row" | "column" | undefined;
|
|
15224
15224
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15225
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15225
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15226
15226
|
flexRow?: boolean | undefined;
|
|
15227
15227
|
flexColumn?: boolean | undefined;
|
|
15228
15228
|
gap?: string | number | undefined;
|
|
@@ -15253,7 +15253,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15253
15253
|
gridGap?: string | number | undefined;
|
|
15254
15254
|
flexDirection?: "row" | "column" | undefined;
|
|
15255
15255
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15256
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15256
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15257
15257
|
flexRow?: boolean | undefined;
|
|
15258
15258
|
flexColumn?: boolean | undefined;
|
|
15259
15259
|
gap?: string | number | undefined;
|
|
@@ -15285,7 +15285,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15285
15285
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
15286
15286
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
15287
15287
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
15288
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
15288
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
15289
15289
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
15290
15290
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
15291
15291
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -15316,7 +15316,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15316
15316
|
gridGap?: string | number | undefined;
|
|
15317
15317
|
flexDirection?: "row" | "column" | undefined;
|
|
15318
15318
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15319
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15319
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15320
15320
|
flexRow?: boolean | undefined;
|
|
15321
15321
|
flexColumn?: boolean | undefined;
|
|
15322
15322
|
gap?: string | number | undefined;
|
|
@@ -15347,7 +15347,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15347
15347
|
gridGap?: string | number | undefined;
|
|
15348
15348
|
flexDirection?: "row" | "column" | undefined;
|
|
15349
15349
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15350
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15350
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15351
15351
|
flexRow?: boolean | undefined;
|
|
15352
15352
|
flexColumn?: boolean | undefined;
|
|
15353
15353
|
gap?: string | number | undefined;
|
|
@@ -15409,7 +15409,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15409
15409
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
15410
15410
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
15411
15411
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
15412
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
15412
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
15413
15413
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
15414
15414
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
15415
15415
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -15696,7 +15696,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15696
15696
|
gridGap?: string | number | undefined;
|
|
15697
15697
|
flexDirection?: "row" | "column" | undefined;
|
|
15698
15698
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15699
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15699
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15700
15700
|
flexRow?: boolean | undefined;
|
|
15701
15701
|
flexColumn?: boolean | undefined;
|
|
15702
15702
|
gap?: string | number | undefined;
|
|
@@ -15732,7 +15732,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15732
15732
|
gridGap?: string | number | undefined;
|
|
15733
15733
|
flexDirection?: "row" | "column" | undefined;
|
|
15734
15734
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15735
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15735
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15736
15736
|
flexRow?: boolean | undefined;
|
|
15737
15737
|
flexColumn?: boolean | undefined;
|
|
15738
15738
|
gap?: string | number | undefined;
|
|
@@ -15764,7 +15764,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15764
15764
|
gridGap?: string | number | undefined;
|
|
15765
15765
|
flexDirection?: "row" | "column" | undefined;
|
|
15766
15766
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15767
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15767
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15768
15768
|
flexRow?: boolean | undefined;
|
|
15769
15769
|
flexColumn?: boolean | undefined;
|
|
15770
15770
|
gap?: string | number | undefined;
|
|
@@ -15890,7 +15890,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15890
15890
|
gridGap?: string | number | undefined;
|
|
15891
15891
|
flexDirection?: "row" | "column" | undefined;
|
|
15892
15892
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15893
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15893
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15894
15894
|
flexRow?: boolean | undefined;
|
|
15895
15895
|
flexColumn?: boolean | undefined;
|
|
15896
15896
|
gap?: string | number | undefined;
|
|
@@ -15926,7 +15926,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15926
15926
|
gridGap?: string | number | undefined;
|
|
15927
15927
|
flexDirection?: "row" | "column" | undefined;
|
|
15928
15928
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15929
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15929
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15930
15930
|
flexRow?: boolean | undefined;
|
|
15931
15931
|
flexColumn?: boolean | undefined;
|
|
15932
15932
|
gap?: string | number | undefined;
|
|
@@ -15958,7 +15958,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15958
15958
|
gridGap?: string | number | undefined;
|
|
15959
15959
|
flexDirection?: "row" | "column" | undefined;
|
|
15960
15960
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15961
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15961
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15962
15962
|
flexRow?: boolean | undefined;
|
|
15963
15963
|
flexColumn?: boolean | undefined;
|
|
15964
15964
|
gap?: string | number | undefined;
|
|
@@ -20046,7 +20046,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20046
20046
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
20047
20047
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
20048
20048
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
20049
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
20049
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
20050
20050
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
20051
20051
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
20052
20052
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -20077,7 +20077,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20077
20077
|
gridGap?: string | number | undefined;
|
|
20078
20078
|
flexDirection?: "row" | "column" | undefined;
|
|
20079
20079
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20080
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20080
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
20081
20081
|
flexRow?: boolean | undefined;
|
|
20082
20082
|
flexColumn?: boolean | undefined;
|
|
20083
20083
|
gap?: string | number | undefined;
|
|
@@ -20108,7 +20108,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20108
20108
|
gridGap?: string | number | undefined;
|
|
20109
20109
|
flexDirection?: "row" | "column" | undefined;
|
|
20110
20110
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20111
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20111
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
20112
20112
|
flexRow?: boolean | undefined;
|
|
20113
20113
|
flexColumn?: boolean | undefined;
|
|
20114
20114
|
gap?: string | number | undefined;
|
|
@@ -20140,7 +20140,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20140
20140
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
20141
20141
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
20142
20142
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
20143
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
20143
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
20144
20144
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
20145
20145
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
20146
20146
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -20171,7 +20171,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20171
20171
|
gridGap?: string | number | undefined;
|
|
20172
20172
|
flexDirection?: "row" | "column" | undefined;
|
|
20173
20173
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20174
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20174
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
20175
20175
|
flexRow?: boolean | undefined;
|
|
20176
20176
|
flexColumn?: boolean | undefined;
|
|
20177
20177
|
gap?: string | number | undefined;
|
|
@@ -20202,7 +20202,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20202
20202
|
gridGap?: string | number | undefined;
|
|
20203
20203
|
flexDirection?: "row" | "column" | undefined;
|
|
20204
20204
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20205
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20205
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
20206
20206
|
flexRow?: boolean | undefined;
|
|
20207
20207
|
flexColumn?: boolean | undefined;
|
|
20208
20208
|
gap?: string | number | undefined;
|
|
@@ -20264,7 +20264,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20264
20264
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
20265
20265
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
20266
20266
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
20267
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
20267
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
20268
20268
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
20269
20269
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
20270
20270
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -20533,7 +20533,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20533
20533
|
gridGap?: string | number | undefined;
|
|
20534
20534
|
flexDirection?: "row" | "column" | undefined;
|
|
20535
20535
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20536
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20536
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
20537
20537
|
flexRow?: boolean | undefined;
|
|
20538
20538
|
flexColumn?: boolean | undefined;
|
|
20539
20539
|
gap?: string | number | undefined;
|
|
@@ -20569,7 +20569,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20569
20569
|
gridGap?: string | number | undefined;
|
|
20570
20570
|
flexDirection?: "row" | "column" | undefined;
|
|
20571
20571
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20572
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20572
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
20573
20573
|
flexRow?: boolean | undefined;
|
|
20574
20574
|
flexColumn?: boolean | undefined;
|
|
20575
20575
|
gap?: string | number | undefined;
|
|
@@ -20601,7 +20601,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20601
20601
|
gridGap?: string | number | undefined;
|
|
20602
20602
|
flexDirection?: "row" | "column" | undefined;
|
|
20603
20603
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20604
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20604
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
20605
20605
|
flexRow?: boolean | undefined;
|
|
20606
20606
|
flexColumn?: boolean | undefined;
|
|
20607
20607
|
gap?: string | number | undefined;
|
|
@@ -20717,7 +20717,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20717
20717
|
gridGap?: string | number | undefined;
|
|
20718
20718
|
flexDirection?: "row" | "column" | undefined;
|
|
20719
20719
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20720
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20720
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
20721
20721
|
flexRow?: boolean | undefined;
|
|
20722
20722
|
flexColumn?: boolean | undefined;
|
|
20723
20723
|
gap?: string | number | undefined;
|
|
@@ -20753,7 +20753,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20753
20753
|
gridGap?: string | number | undefined;
|
|
20754
20754
|
flexDirection?: "row" | "column" | undefined;
|
|
20755
20755
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20756
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20756
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
20757
20757
|
flexRow?: boolean | undefined;
|
|
20758
20758
|
flexColumn?: boolean | undefined;
|
|
20759
20759
|
gap?: string | number | undefined;
|
|
@@ -20785,7 +20785,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20785
20785
|
gridGap?: string | number | undefined;
|
|
20786
20786
|
flexDirection?: "row" | "column" | undefined;
|
|
20787
20787
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20788
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20788
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
20789
20789
|
flexRow?: boolean | undefined;
|
|
20790
20790
|
flexColumn?: boolean | undefined;
|
|
20791
20791
|
gap?: string | number | undefined;
|