@tscircuit/props 0.0.263 → 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/README.md +302 -334
- package/dist/index.d.ts +484 -121
- package/dist/index.js +12 -1
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +32 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2846,10 +2846,13 @@ 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]>>;
|
|
2853
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
2854
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
2855
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
2853
2856
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2854
2857
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2855
2858
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -2874,10 +2877,13 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2874
2877
|
gridGap?: string | number | undefined;
|
|
2875
2878
|
flexDirection?: "row" | "column" | undefined;
|
|
2876
2879
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2877
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2880
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
2878
2881
|
flexRow?: boolean | undefined;
|
|
2879
2882
|
flexColumn?: boolean | undefined;
|
|
2880
2883
|
gap?: string | number | undefined;
|
|
2884
|
+
pack?: boolean | undefined;
|
|
2885
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
2886
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
2881
2887
|
padding?: number | undefined;
|
|
2882
2888
|
paddingLeft?: number | undefined;
|
|
2883
2889
|
paddingRight?: number | undefined;
|
|
@@ -2902,10 +2908,13 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
2902
2908
|
gridGap?: string | number | undefined;
|
|
2903
2909
|
flexDirection?: "row" | "column" | undefined;
|
|
2904
2910
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2905
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
2911
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
2906
2912
|
flexRow?: boolean | undefined;
|
|
2907
2913
|
flexColumn?: boolean | undefined;
|
|
2908
2914
|
gap?: string | number | undefined;
|
|
2915
|
+
pack?: boolean | undefined;
|
|
2916
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
2917
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
2909
2918
|
padding?: string | number | undefined;
|
|
2910
2919
|
paddingLeft?: string | number | undefined;
|
|
2911
2920
|
paddingRight?: string | number | undefined;
|
|
@@ -2931,10 +2940,13 @@ interface LayoutConfig {
|
|
|
2931
2940
|
flex?: boolean | string;
|
|
2932
2941
|
flexDirection?: "row" | "column";
|
|
2933
2942
|
alignItems?: "start" | "center" | "end" | "stretch";
|
|
2934
|
-
justifyContent?: "start" | "center" | "end" | "stretch";
|
|
2943
|
+
justifyContent?: "start" | "center" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly";
|
|
2935
2944
|
flexRow?: boolean;
|
|
2936
2945
|
flexColumn?: boolean;
|
|
2937
2946
|
gap?: number | string;
|
|
2947
|
+
pack?: boolean;
|
|
2948
|
+
packOrderStrategy?: "largest_to_smallest";
|
|
2949
|
+
packPlacementStrategy?: "shortest_connection_along_outline";
|
|
2938
2950
|
padding?: Distance;
|
|
2939
2951
|
paddingLeft?: Distance;
|
|
2940
2952
|
paddingRight?: Distance;
|
|
@@ -3150,10 +3162,13 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3150
3162
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3151
3163
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3152
3164
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3153
|
-
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"]>>;
|
|
3154
3166
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3155
3167
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3156
3168
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3169
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
3170
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
3171
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
3157
3172
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3158
3173
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3159
3174
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3178,10 +3193,13 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3178
3193
|
gridGap?: string | number | undefined;
|
|
3179
3194
|
flexDirection?: "row" | "column" | undefined;
|
|
3180
3195
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3181
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3196
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3182
3197
|
flexRow?: boolean | undefined;
|
|
3183
3198
|
flexColumn?: boolean | undefined;
|
|
3184
3199
|
gap?: string | number | undefined;
|
|
3200
|
+
pack?: boolean | undefined;
|
|
3201
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3202
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3185
3203
|
padding?: number | undefined;
|
|
3186
3204
|
paddingLeft?: number | undefined;
|
|
3187
3205
|
paddingRight?: number | undefined;
|
|
@@ -3206,10 +3224,13 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3206
3224
|
gridGap?: string | number | undefined;
|
|
3207
3225
|
flexDirection?: "row" | "column" | undefined;
|
|
3208
3226
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3209
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3227
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3210
3228
|
flexRow?: boolean | undefined;
|
|
3211
3229
|
flexColumn?: boolean | undefined;
|
|
3212
3230
|
gap?: string | number | undefined;
|
|
3231
|
+
pack?: boolean | undefined;
|
|
3232
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3233
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3213
3234
|
padding?: string | number | undefined;
|
|
3214
3235
|
paddingLeft?: string | number | undefined;
|
|
3215
3236
|
paddingRight?: string | number | undefined;
|
|
@@ -3235,10 +3256,13 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3235
3256
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3236
3257
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3237
3258
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3238
|
-
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"]>>;
|
|
3239
3260
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3240
3261
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3241
3262
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3263
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
3264
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
3265
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
3242
3266
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3243
3267
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3244
3268
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3263,10 +3287,13 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3263
3287
|
gridGap?: string | number | undefined;
|
|
3264
3288
|
flexDirection?: "row" | "column" | undefined;
|
|
3265
3289
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3266
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3290
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3267
3291
|
flexRow?: boolean | undefined;
|
|
3268
3292
|
flexColumn?: boolean | undefined;
|
|
3269
3293
|
gap?: string | number | undefined;
|
|
3294
|
+
pack?: boolean | undefined;
|
|
3295
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3296
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3270
3297
|
padding?: number | undefined;
|
|
3271
3298
|
paddingLeft?: number | undefined;
|
|
3272
3299
|
paddingRight?: number | undefined;
|
|
@@ -3291,10 +3318,13 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3291
3318
|
gridGap?: string | number | undefined;
|
|
3292
3319
|
flexDirection?: "row" | "column" | undefined;
|
|
3293
3320
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3294
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3321
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3295
3322
|
flexRow?: boolean | undefined;
|
|
3296
3323
|
flexColumn?: boolean | undefined;
|
|
3297
3324
|
gap?: string | number | undefined;
|
|
3325
|
+
pack?: boolean | undefined;
|
|
3326
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3327
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3298
3328
|
padding?: string | number | undefined;
|
|
3299
3329
|
paddingLeft?: string | number | undefined;
|
|
3300
3330
|
paddingRight?: string | number | undefined;
|
|
@@ -3350,10 +3380,13 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3350
3380
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3351
3381
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3352
3382
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3353
|
-
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"]>>;
|
|
3354
3384
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3355
3385
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3356
3386
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3387
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
3388
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
3389
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
3357
3390
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3358
3391
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3359
3392
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3393,10 +3426,13 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3393
3426
|
gridGap?: string | number | undefined;
|
|
3394
3427
|
flexDirection?: "row" | "column" | undefined;
|
|
3395
3428
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3396
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3429
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3397
3430
|
flexRow?: boolean | undefined;
|
|
3398
3431
|
flexColumn?: boolean | undefined;
|
|
3399
3432
|
gap?: string | number | undefined;
|
|
3433
|
+
pack?: boolean | undefined;
|
|
3434
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3435
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3400
3436
|
padding?: number | undefined;
|
|
3401
3437
|
paddingLeft?: number | undefined;
|
|
3402
3438
|
paddingRight?: number | undefined;
|
|
@@ -3426,10 +3462,13 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3426
3462
|
gridGap?: string | number | undefined;
|
|
3427
3463
|
flexDirection?: "row" | "column" | undefined;
|
|
3428
3464
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3429
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3465
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3430
3466
|
flexRow?: boolean | undefined;
|
|
3431
3467
|
flexColumn?: boolean | undefined;
|
|
3432
3468
|
gap?: string | number | undefined;
|
|
3469
|
+
pack?: boolean | undefined;
|
|
3470
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3471
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3433
3472
|
padding?: number | undefined;
|
|
3434
3473
|
paddingLeft?: number | undefined;
|
|
3435
3474
|
paddingRight?: number | undefined;
|
|
@@ -3455,10 +3494,13 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3455
3494
|
gridGap?: string | number | undefined;
|
|
3456
3495
|
flexDirection?: "row" | "column" | undefined;
|
|
3457
3496
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3458
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3497
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3459
3498
|
flexRow?: boolean | undefined;
|
|
3460
3499
|
flexColumn?: boolean | undefined;
|
|
3461
3500
|
gap?: string | number | undefined;
|
|
3501
|
+
pack?: boolean | undefined;
|
|
3502
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3503
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3462
3504
|
padding?: number | undefined;
|
|
3463
3505
|
paddingLeft?: number | undefined;
|
|
3464
3506
|
paddingRight?: number | undefined;
|
|
@@ -3512,10 +3554,13 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3512
3554
|
gridGap?: string | number | undefined;
|
|
3513
3555
|
flexDirection?: "row" | "column" | undefined;
|
|
3514
3556
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3515
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3557
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3516
3558
|
flexRow?: boolean | undefined;
|
|
3517
3559
|
flexColumn?: boolean | undefined;
|
|
3518
3560
|
gap?: string | number | undefined;
|
|
3561
|
+
pack?: boolean | undefined;
|
|
3562
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3563
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3519
3564
|
padding?: string | number | undefined;
|
|
3520
3565
|
paddingLeft?: string | number | undefined;
|
|
3521
3566
|
paddingRight?: string | number | undefined;
|
|
@@ -3545,10 +3590,13 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3545
3590
|
gridGap?: string | number | undefined;
|
|
3546
3591
|
flexDirection?: "row" | "column" | undefined;
|
|
3547
3592
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3548
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3593
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3549
3594
|
flexRow?: boolean | undefined;
|
|
3550
3595
|
flexColumn?: boolean | undefined;
|
|
3551
3596
|
gap?: string | number | undefined;
|
|
3597
|
+
pack?: boolean | undefined;
|
|
3598
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3599
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3552
3600
|
padding?: string | number | undefined;
|
|
3553
3601
|
paddingLeft?: string | number | undefined;
|
|
3554
3602
|
paddingRight?: string | number | undefined;
|
|
@@ -3574,10 +3622,13 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3574
3622
|
gridGap?: string | number | undefined;
|
|
3575
3623
|
flexDirection?: "row" | "column" | undefined;
|
|
3576
3624
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3577
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3625
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3578
3626
|
flexRow?: boolean | undefined;
|
|
3579
3627
|
flexColumn?: boolean | undefined;
|
|
3580
3628
|
gap?: string | number | undefined;
|
|
3629
|
+
pack?: boolean | undefined;
|
|
3630
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3631
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3581
3632
|
padding?: string | number | undefined;
|
|
3582
3633
|
paddingLeft?: string | number | undefined;
|
|
3583
3634
|
paddingRight?: string | number | undefined;
|
|
@@ -3641,10 +3692,13 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3641
3692
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3642
3693
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3643
3694
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3644
|
-
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"]>>;
|
|
3645
3696
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3646
3697
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3647
3698
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3699
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
3700
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
3701
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
3648
3702
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3649
3703
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3650
3704
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3669,10 +3723,13 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3669
3723
|
gridGap?: string | number | undefined;
|
|
3670
3724
|
flexDirection?: "row" | "column" | undefined;
|
|
3671
3725
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3672
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3726
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3673
3727
|
flexRow?: boolean | undefined;
|
|
3674
3728
|
flexColumn?: boolean | undefined;
|
|
3675
3729
|
gap?: string | number | undefined;
|
|
3730
|
+
pack?: boolean | undefined;
|
|
3731
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3732
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3676
3733
|
padding?: number | undefined;
|
|
3677
3734
|
paddingLeft?: number | undefined;
|
|
3678
3735
|
paddingRight?: number | undefined;
|
|
@@ -3697,10 +3754,13 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3697
3754
|
gridGap?: string | number | undefined;
|
|
3698
3755
|
flexDirection?: "row" | "column" | undefined;
|
|
3699
3756
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3700
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3757
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3701
3758
|
flexRow?: boolean | undefined;
|
|
3702
3759
|
flexColumn?: boolean | undefined;
|
|
3703
3760
|
gap?: string | number | undefined;
|
|
3761
|
+
pack?: boolean | undefined;
|
|
3762
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3763
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3704
3764
|
padding?: string | number | undefined;
|
|
3705
3765
|
paddingLeft?: string | number | undefined;
|
|
3706
3766
|
paddingRight?: string | number | undefined;
|
|
@@ -3726,10 +3786,13 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3726
3786
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3727
3787
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3728
3788
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3729
|
-
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"]>>;
|
|
3730
3790
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3731
3791
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3732
3792
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3793
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
3794
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
3795
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
3733
3796
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3734
3797
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3735
3798
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3754,10 +3817,13 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3754
3817
|
gridGap?: string | number | undefined;
|
|
3755
3818
|
flexDirection?: "row" | "column" | undefined;
|
|
3756
3819
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3757
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3820
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3758
3821
|
flexRow?: boolean | undefined;
|
|
3759
3822
|
flexColumn?: boolean | undefined;
|
|
3760
3823
|
gap?: string | number | undefined;
|
|
3824
|
+
pack?: boolean | undefined;
|
|
3825
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3826
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3761
3827
|
padding?: number | undefined;
|
|
3762
3828
|
paddingLeft?: number | undefined;
|
|
3763
3829
|
paddingRight?: number | undefined;
|
|
@@ -3782,10 +3848,13 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3782
3848
|
gridGap?: string | number | undefined;
|
|
3783
3849
|
flexDirection?: "row" | "column" | undefined;
|
|
3784
3850
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3785
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3851
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3786
3852
|
flexRow?: boolean | undefined;
|
|
3787
3853
|
flexColumn?: boolean | undefined;
|
|
3788
3854
|
gap?: string | number | undefined;
|
|
3855
|
+
pack?: boolean | undefined;
|
|
3856
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
3857
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
3789
3858
|
padding?: string | number | undefined;
|
|
3790
3859
|
paddingLeft?: string | number | undefined;
|
|
3791
3860
|
paddingRight?: string | number | undefined;
|
|
@@ -3841,10 +3910,13 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3841
3910
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3842
3911
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3843
3912
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3844
|
-
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"]>>;
|
|
3845
3914
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3846
3915
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3847
3916
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3917
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
3918
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
3919
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
3848
3920
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3849
3921
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3850
3922
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -4107,10 +4179,13 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4107
4179
|
gridGap?: string | number | undefined;
|
|
4108
4180
|
flexDirection?: "row" | "column" | undefined;
|
|
4109
4181
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4110
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4182
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4111
4183
|
flexRow?: boolean | undefined;
|
|
4112
4184
|
flexColumn?: boolean | undefined;
|
|
4113
4185
|
gap?: string | number | undefined;
|
|
4186
|
+
pack?: boolean | undefined;
|
|
4187
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4188
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4114
4189
|
padding?: number | undefined;
|
|
4115
4190
|
paddingLeft?: number | undefined;
|
|
4116
4191
|
paddingRight?: number | undefined;
|
|
@@ -4140,10 +4215,13 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4140
4215
|
gridGap?: string | number | undefined;
|
|
4141
4216
|
flexDirection?: "row" | "column" | undefined;
|
|
4142
4217
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4143
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4218
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4144
4219
|
flexRow?: boolean | undefined;
|
|
4145
4220
|
flexColumn?: boolean | undefined;
|
|
4146
4221
|
gap?: string | number | undefined;
|
|
4222
|
+
pack?: boolean | undefined;
|
|
4223
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4224
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4147
4225
|
padding?: number | undefined;
|
|
4148
4226
|
paddingLeft?: number | undefined;
|
|
4149
4227
|
paddingRight?: number | undefined;
|
|
@@ -4169,10 +4247,13 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4169
4247
|
gridGap?: string | number | undefined;
|
|
4170
4248
|
flexDirection?: "row" | "column" | undefined;
|
|
4171
4249
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4172
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4250
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4173
4251
|
flexRow?: boolean | undefined;
|
|
4174
4252
|
flexColumn?: boolean | undefined;
|
|
4175
4253
|
gap?: string | number | undefined;
|
|
4254
|
+
pack?: boolean | undefined;
|
|
4255
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4256
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4176
4257
|
padding?: number | undefined;
|
|
4177
4258
|
paddingLeft?: number | undefined;
|
|
4178
4259
|
paddingRight?: number | undefined;
|
|
@@ -4282,10 +4363,13 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4282
4363
|
gridGap?: string | number | undefined;
|
|
4283
4364
|
flexDirection?: "row" | "column" | undefined;
|
|
4284
4365
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4285
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4366
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4286
4367
|
flexRow?: boolean | undefined;
|
|
4287
4368
|
flexColumn?: boolean | undefined;
|
|
4288
4369
|
gap?: string | number | undefined;
|
|
4370
|
+
pack?: boolean | undefined;
|
|
4371
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4372
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4289
4373
|
padding?: string | number | undefined;
|
|
4290
4374
|
paddingLeft?: string | number | undefined;
|
|
4291
4375
|
paddingRight?: string | number | undefined;
|
|
@@ -4315,10 +4399,13 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4315
4399
|
gridGap?: string | number | undefined;
|
|
4316
4400
|
flexDirection?: "row" | "column" | undefined;
|
|
4317
4401
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4318
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4402
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4319
4403
|
flexRow?: boolean | undefined;
|
|
4320
4404
|
flexColumn?: boolean | undefined;
|
|
4321
4405
|
gap?: string | number | undefined;
|
|
4406
|
+
pack?: boolean | undefined;
|
|
4407
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4408
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4322
4409
|
padding?: string | number | undefined;
|
|
4323
4410
|
paddingLeft?: string | number | undefined;
|
|
4324
4411
|
paddingRight?: string | number | undefined;
|
|
@@ -4344,10 +4431,13 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4344
4431
|
gridGap?: string | number | undefined;
|
|
4345
4432
|
flexDirection?: "row" | "column" | undefined;
|
|
4346
4433
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4347
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4434
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4348
4435
|
flexRow?: boolean | undefined;
|
|
4349
4436
|
flexColumn?: boolean | undefined;
|
|
4350
4437
|
gap?: string | number | undefined;
|
|
4438
|
+
pack?: boolean | undefined;
|
|
4439
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4440
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4351
4441
|
padding?: string | number | undefined;
|
|
4352
4442
|
paddingLeft?: string | number | undefined;
|
|
4353
4443
|
paddingRight?: string | number | undefined;
|
|
@@ -4468,10 +4558,13 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4468
4558
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
4469
4559
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
4470
4560
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4471
|
-
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"]>>;
|
|
4472
4562
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4473
4563
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4474
4564
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4565
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
4566
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
4567
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
4475
4568
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4476
4569
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4477
4570
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -4496,10 +4589,13 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4496
4589
|
gridGap?: string | number | undefined;
|
|
4497
4590
|
flexDirection?: "row" | "column" | undefined;
|
|
4498
4591
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4499
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4592
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4500
4593
|
flexRow?: boolean | undefined;
|
|
4501
4594
|
flexColumn?: boolean | undefined;
|
|
4502
4595
|
gap?: string | number | undefined;
|
|
4596
|
+
pack?: boolean | undefined;
|
|
4597
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4598
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4503
4599
|
padding?: number | undefined;
|
|
4504
4600
|
paddingLeft?: number | undefined;
|
|
4505
4601
|
paddingRight?: number | undefined;
|
|
@@ -4524,10 +4620,13 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4524
4620
|
gridGap?: string | number | undefined;
|
|
4525
4621
|
flexDirection?: "row" | "column" | undefined;
|
|
4526
4622
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4527
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4623
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4528
4624
|
flexRow?: boolean | undefined;
|
|
4529
4625
|
flexColumn?: boolean | undefined;
|
|
4530
4626
|
gap?: string | number | undefined;
|
|
4627
|
+
pack?: boolean | undefined;
|
|
4628
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4629
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4531
4630
|
padding?: string | number | undefined;
|
|
4532
4631
|
paddingLeft?: string | number | undefined;
|
|
4533
4632
|
paddingRight?: string | number | undefined;
|
|
@@ -4553,10 +4652,13 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4553
4652
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
4554
4653
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
4555
4654
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4556
|
-
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"]>>;
|
|
4557
4656
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4558
4657
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4559
4658
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4659
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
4660
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
4661
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
4560
4662
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4561
4663
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4562
4664
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -4581,10 +4683,13 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4581
4683
|
gridGap?: string | number | undefined;
|
|
4582
4684
|
flexDirection?: "row" | "column" | undefined;
|
|
4583
4685
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4584
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4686
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4585
4687
|
flexRow?: boolean | undefined;
|
|
4586
4688
|
flexColumn?: boolean | undefined;
|
|
4587
4689
|
gap?: string | number | undefined;
|
|
4690
|
+
pack?: boolean | undefined;
|
|
4691
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4692
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4588
4693
|
padding?: number | undefined;
|
|
4589
4694
|
paddingLeft?: number | undefined;
|
|
4590
4695
|
paddingRight?: number | undefined;
|
|
@@ -4609,10 +4714,13 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4609
4714
|
gridGap?: string | number | undefined;
|
|
4610
4715
|
flexDirection?: "row" | "column" | undefined;
|
|
4611
4716
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4612
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4717
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4613
4718
|
flexRow?: boolean | undefined;
|
|
4614
4719
|
flexColumn?: boolean | undefined;
|
|
4615
4720
|
gap?: string | number | undefined;
|
|
4721
|
+
pack?: boolean | undefined;
|
|
4722
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
4723
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4616
4724
|
padding?: string | number | undefined;
|
|
4617
4725
|
paddingLeft?: string | number | undefined;
|
|
4618
4726
|
paddingRight?: string | number | undefined;
|
|
@@ -4668,10 +4776,13 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4668
4776
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
4669
4777
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
4670
4778
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4671
|
-
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"]>>;
|
|
4672
4780
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4673
4781
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4674
4782
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4783
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
4784
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
4785
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
4675
4786
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4676
4787
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4677
4788
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -4937,10 +5048,13 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4937
5048
|
gridGap?: string | number | undefined;
|
|
4938
5049
|
flexDirection?: "row" | "column" | undefined;
|
|
4939
5050
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4940
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5051
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4941
5052
|
flexRow?: boolean | undefined;
|
|
4942
5053
|
flexColumn?: boolean | undefined;
|
|
4943
5054
|
gap?: string | number | undefined;
|
|
5055
|
+
pack?: boolean | undefined;
|
|
5056
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5057
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4944
5058
|
padding?: number | undefined;
|
|
4945
5059
|
paddingLeft?: number | undefined;
|
|
4946
5060
|
paddingRight?: number | undefined;
|
|
@@ -4970,10 +5084,13 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4970
5084
|
gridGap?: string | number | undefined;
|
|
4971
5085
|
flexDirection?: "row" | "column" | undefined;
|
|
4972
5086
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4973
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5087
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4974
5088
|
flexRow?: boolean | undefined;
|
|
4975
5089
|
flexColumn?: boolean | undefined;
|
|
4976
5090
|
gap?: string | number | undefined;
|
|
5091
|
+
pack?: boolean | undefined;
|
|
5092
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5093
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
4977
5094
|
padding?: number | undefined;
|
|
4978
5095
|
paddingLeft?: number | undefined;
|
|
4979
5096
|
paddingRight?: number | undefined;
|
|
@@ -4999,10 +5116,13 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4999
5116
|
gridGap?: string | number | undefined;
|
|
5000
5117
|
flexDirection?: "row" | "column" | undefined;
|
|
5001
5118
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5002
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5119
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5003
5120
|
flexRow?: boolean | undefined;
|
|
5004
5121
|
flexColumn?: boolean | undefined;
|
|
5005
5122
|
gap?: string | number | undefined;
|
|
5123
|
+
pack?: boolean | undefined;
|
|
5124
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5125
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5006
5126
|
padding?: number | undefined;
|
|
5007
5127
|
paddingLeft?: number | undefined;
|
|
5008
5128
|
paddingRight?: number | undefined;
|
|
@@ -5113,10 +5233,13 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5113
5233
|
gridGap?: string | number | undefined;
|
|
5114
5234
|
flexDirection?: "row" | "column" | undefined;
|
|
5115
5235
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5116
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5236
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5117
5237
|
flexRow?: boolean | undefined;
|
|
5118
5238
|
flexColumn?: boolean | undefined;
|
|
5119
5239
|
gap?: string | number | undefined;
|
|
5240
|
+
pack?: boolean | undefined;
|
|
5241
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5242
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5120
5243
|
padding?: string | number | undefined;
|
|
5121
5244
|
paddingLeft?: string | number | undefined;
|
|
5122
5245
|
paddingRight?: string | number | undefined;
|
|
@@ -5146,10 +5269,13 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5146
5269
|
gridGap?: string | number | undefined;
|
|
5147
5270
|
flexDirection?: "row" | "column" | undefined;
|
|
5148
5271
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5149
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5272
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5150
5273
|
flexRow?: boolean | undefined;
|
|
5151
5274
|
flexColumn?: boolean | undefined;
|
|
5152
5275
|
gap?: string | number | undefined;
|
|
5276
|
+
pack?: boolean | undefined;
|
|
5277
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5278
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5153
5279
|
padding?: string | number | undefined;
|
|
5154
5280
|
paddingLeft?: string | number | undefined;
|
|
5155
5281
|
paddingRight?: string | number | undefined;
|
|
@@ -5175,10 +5301,13 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5175
5301
|
gridGap?: string | number | undefined;
|
|
5176
5302
|
flexDirection?: "row" | "column" | undefined;
|
|
5177
5303
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5178
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5304
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5179
5305
|
flexRow?: boolean | undefined;
|
|
5180
5306
|
flexColumn?: boolean | undefined;
|
|
5181
5307
|
gap?: string | number | undefined;
|
|
5308
|
+
pack?: boolean | undefined;
|
|
5309
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5310
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5182
5311
|
padding?: string | number | undefined;
|
|
5183
5312
|
paddingLeft?: string | number | undefined;
|
|
5184
5313
|
paddingRight?: string | number | undefined;
|
|
@@ -5300,10 +5429,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5300
5429
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
5301
5430
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
5302
5431
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5303
|
-
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"]>>;
|
|
5304
5433
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5305
5434
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5306
5435
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5436
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
5437
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
5438
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
5307
5439
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5308
5440
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5309
5441
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5328,10 +5460,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5328
5460
|
gridGap?: string | number | undefined;
|
|
5329
5461
|
flexDirection?: "row" | "column" | undefined;
|
|
5330
5462
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5331
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5463
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5332
5464
|
flexRow?: boolean | undefined;
|
|
5333
5465
|
flexColumn?: boolean | undefined;
|
|
5334
5466
|
gap?: string | number | undefined;
|
|
5467
|
+
pack?: boolean | undefined;
|
|
5468
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5469
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5335
5470
|
padding?: number | undefined;
|
|
5336
5471
|
paddingLeft?: number | undefined;
|
|
5337
5472
|
paddingRight?: number | undefined;
|
|
@@ -5356,10 +5491,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5356
5491
|
gridGap?: string | number | undefined;
|
|
5357
5492
|
flexDirection?: "row" | "column" | undefined;
|
|
5358
5493
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5359
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5494
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5360
5495
|
flexRow?: boolean | undefined;
|
|
5361
5496
|
flexColumn?: boolean | undefined;
|
|
5362
5497
|
gap?: string | number | undefined;
|
|
5498
|
+
pack?: boolean | undefined;
|
|
5499
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5500
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5363
5501
|
padding?: string | number | undefined;
|
|
5364
5502
|
paddingLeft?: string | number | undefined;
|
|
5365
5503
|
paddingRight?: string | number | undefined;
|
|
@@ -5385,10 +5523,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5385
5523
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
5386
5524
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
5387
5525
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5388
|
-
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"]>>;
|
|
5389
5527
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5390
5528
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5391
5529
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5530
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
5531
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
5532
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
5392
5533
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5393
5534
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5394
5535
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5413,10 +5554,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5413
5554
|
gridGap?: string | number | undefined;
|
|
5414
5555
|
flexDirection?: "row" | "column" | undefined;
|
|
5415
5556
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5416
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5557
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5417
5558
|
flexRow?: boolean | undefined;
|
|
5418
5559
|
flexColumn?: boolean | undefined;
|
|
5419
5560
|
gap?: string | number | undefined;
|
|
5561
|
+
pack?: boolean | undefined;
|
|
5562
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5563
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5420
5564
|
padding?: number | undefined;
|
|
5421
5565
|
paddingLeft?: number | undefined;
|
|
5422
5566
|
paddingRight?: number | undefined;
|
|
@@ -5441,10 +5585,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5441
5585
|
gridGap?: string | number | undefined;
|
|
5442
5586
|
flexDirection?: "row" | "column" | undefined;
|
|
5443
5587
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5444
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5588
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5445
5589
|
flexRow?: boolean | undefined;
|
|
5446
5590
|
flexColumn?: boolean | undefined;
|
|
5447
5591
|
gap?: string | number | undefined;
|
|
5592
|
+
pack?: boolean | undefined;
|
|
5593
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5594
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5448
5595
|
padding?: string | number | undefined;
|
|
5449
5596
|
paddingLeft?: string | number | undefined;
|
|
5450
5597
|
paddingRight?: string | number | undefined;
|
|
@@ -5500,10 +5647,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5500
5647
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
5501
5648
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
5502
5649
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5503
|
-
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"]>>;
|
|
5504
5651
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5505
5652
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5506
5653
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5654
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
5655
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
5656
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
5507
5657
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5508
5658
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5509
5659
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5545,10 +5695,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5545
5695
|
gridGap?: string | number | undefined;
|
|
5546
5696
|
flexDirection?: "row" | "column" | undefined;
|
|
5547
5697
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5548
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5698
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5549
5699
|
flexRow?: boolean | undefined;
|
|
5550
5700
|
flexColumn?: boolean | undefined;
|
|
5551
5701
|
gap?: string | number | undefined;
|
|
5702
|
+
pack?: boolean | undefined;
|
|
5703
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5704
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5552
5705
|
padding?: number | undefined;
|
|
5553
5706
|
paddingLeft?: number | undefined;
|
|
5554
5707
|
paddingRight?: number | undefined;
|
|
@@ -5578,10 +5731,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5578
5731
|
gridGap?: string | number | undefined;
|
|
5579
5732
|
flexDirection?: "row" | "column" | undefined;
|
|
5580
5733
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5581
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5734
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5582
5735
|
flexRow?: boolean | undefined;
|
|
5583
5736
|
flexColumn?: boolean | undefined;
|
|
5584
5737
|
gap?: string | number | undefined;
|
|
5738
|
+
pack?: boolean | undefined;
|
|
5739
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5740
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5585
5741
|
padding?: number | undefined;
|
|
5586
5742
|
paddingLeft?: number | undefined;
|
|
5587
5743
|
paddingRight?: number | undefined;
|
|
@@ -5607,10 +5763,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5607
5763
|
gridGap?: string | number | undefined;
|
|
5608
5764
|
flexDirection?: "row" | "column" | undefined;
|
|
5609
5765
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5610
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5766
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5611
5767
|
flexRow?: boolean | undefined;
|
|
5612
5768
|
flexColumn?: boolean | undefined;
|
|
5613
5769
|
gap?: string | number | undefined;
|
|
5770
|
+
pack?: boolean | undefined;
|
|
5771
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5772
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5614
5773
|
padding?: number | undefined;
|
|
5615
5774
|
paddingLeft?: number | undefined;
|
|
5616
5775
|
paddingRight?: number | undefined;
|
|
@@ -5665,10 +5824,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5665
5824
|
gridGap?: string | number | undefined;
|
|
5666
5825
|
flexDirection?: "row" | "column" | undefined;
|
|
5667
5826
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5668
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5827
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5669
5828
|
flexRow?: boolean | undefined;
|
|
5670
5829
|
flexColumn?: boolean | undefined;
|
|
5671
5830
|
gap?: string | number | undefined;
|
|
5831
|
+
pack?: boolean | undefined;
|
|
5832
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5833
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5672
5834
|
padding?: string | number | undefined;
|
|
5673
5835
|
paddingLeft?: string | number | undefined;
|
|
5674
5836
|
paddingRight?: string | number | undefined;
|
|
@@ -5698,10 +5860,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5698
5860
|
gridGap?: string | number | undefined;
|
|
5699
5861
|
flexDirection?: "row" | "column" | undefined;
|
|
5700
5862
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5701
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5863
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5702
5864
|
flexRow?: boolean | undefined;
|
|
5703
5865
|
flexColumn?: boolean | undefined;
|
|
5704
5866
|
gap?: string | number | undefined;
|
|
5867
|
+
pack?: boolean | undefined;
|
|
5868
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5869
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5705
5870
|
padding?: string | number | undefined;
|
|
5706
5871
|
paddingLeft?: string | number | undefined;
|
|
5707
5872
|
paddingRight?: string | number | undefined;
|
|
@@ -5727,10 +5892,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5727
5892
|
gridGap?: string | number | undefined;
|
|
5728
5893
|
flexDirection?: "row" | "column" | undefined;
|
|
5729
5894
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5730
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5895
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5731
5896
|
flexRow?: boolean | undefined;
|
|
5732
5897
|
flexColumn?: boolean | undefined;
|
|
5733
5898
|
gap?: string | number | undefined;
|
|
5899
|
+
pack?: boolean | undefined;
|
|
5900
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
5901
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5734
5902
|
padding?: string | number | undefined;
|
|
5735
5903
|
paddingLeft?: string | number | undefined;
|
|
5736
5904
|
paddingRight?: string | number | undefined;
|
|
@@ -5793,10 +5961,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5793
5961
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
5794
5962
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
5795
5963
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5796
|
-
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"]>>;
|
|
5797
5965
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5798
5966
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5799
5967
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5968
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
5969
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
5970
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
5800
5971
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5801
5972
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5802
5973
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5821,10 +5992,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5821
5992
|
gridGap?: string | number | undefined;
|
|
5822
5993
|
flexDirection?: "row" | "column" | undefined;
|
|
5823
5994
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5824
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5995
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5825
5996
|
flexRow?: boolean | undefined;
|
|
5826
5997
|
flexColumn?: boolean | undefined;
|
|
5827
5998
|
gap?: string | number | undefined;
|
|
5999
|
+
pack?: boolean | undefined;
|
|
6000
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6001
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5828
6002
|
padding?: number | undefined;
|
|
5829
6003
|
paddingLeft?: number | undefined;
|
|
5830
6004
|
paddingRight?: number | undefined;
|
|
@@ -5849,10 +6023,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5849
6023
|
gridGap?: string | number | undefined;
|
|
5850
6024
|
flexDirection?: "row" | "column" | undefined;
|
|
5851
6025
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5852
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6026
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5853
6027
|
flexRow?: boolean | undefined;
|
|
5854
6028
|
flexColumn?: boolean | undefined;
|
|
5855
6029
|
gap?: string | number | undefined;
|
|
6030
|
+
pack?: boolean | undefined;
|
|
6031
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6032
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5856
6033
|
padding?: string | number | undefined;
|
|
5857
6034
|
paddingLeft?: string | number | undefined;
|
|
5858
6035
|
paddingRight?: string | number | undefined;
|
|
@@ -5878,10 +6055,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5878
6055
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
5879
6056
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
5880
6057
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5881
|
-
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"]>>;
|
|
5882
6059
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5883
6060
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5884
6061
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6062
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
6063
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
6064
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
5885
6065
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5886
6066
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5887
6067
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5906,10 +6086,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5906
6086
|
gridGap?: string | number | undefined;
|
|
5907
6087
|
flexDirection?: "row" | "column" | undefined;
|
|
5908
6088
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5909
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6089
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5910
6090
|
flexRow?: boolean | undefined;
|
|
5911
6091
|
flexColumn?: boolean | undefined;
|
|
5912
6092
|
gap?: string | number | undefined;
|
|
6093
|
+
pack?: boolean | undefined;
|
|
6094
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6095
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5913
6096
|
padding?: number | undefined;
|
|
5914
6097
|
paddingLeft?: number | undefined;
|
|
5915
6098
|
paddingRight?: number | undefined;
|
|
@@ -5934,10 +6117,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5934
6117
|
gridGap?: string | number | undefined;
|
|
5935
6118
|
flexDirection?: "row" | "column" | undefined;
|
|
5936
6119
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5937
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6120
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5938
6121
|
flexRow?: boolean | undefined;
|
|
5939
6122
|
flexColumn?: boolean | undefined;
|
|
5940
6123
|
gap?: string | number | undefined;
|
|
6124
|
+
pack?: boolean | undefined;
|
|
6125
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6126
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
5941
6127
|
padding?: string | number | undefined;
|
|
5942
6128
|
paddingLeft?: string | number | undefined;
|
|
5943
6129
|
paddingRight?: string | number | undefined;
|
|
@@ -5993,10 +6179,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5993
6179
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
5994
6180
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
5995
6181
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5996
|
-
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"]>>;
|
|
5997
6183
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5998
6184
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5999
6185
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6186
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
6187
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
6188
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
6000
6189
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6001
6190
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6002
6191
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6262,10 +6451,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6262
6451
|
gridGap?: string | number | undefined;
|
|
6263
6452
|
flexDirection?: "row" | "column" | undefined;
|
|
6264
6453
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6265
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6454
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6266
6455
|
flexRow?: boolean | undefined;
|
|
6267
6456
|
flexColumn?: boolean | undefined;
|
|
6268
6457
|
gap?: string | number | undefined;
|
|
6458
|
+
pack?: boolean | undefined;
|
|
6459
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6460
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6269
6461
|
padding?: number | undefined;
|
|
6270
6462
|
paddingLeft?: number | undefined;
|
|
6271
6463
|
paddingRight?: number | undefined;
|
|
@@ -6295,10 +6487,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6295
6487
|
gridGap?: string | number | undefined;
|
|
6296
6488
|
flexDirection?: "row" | "column" | undefined;
|
|
6297
6489
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6298
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6490
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6299
6491
|
flexRow?: boolean | undefined;
|
|
6300
6492
|
flexColumn?: boolean | undefined;
|
|
6301
6493
|
gap?: string | number | undefined;
|
|
6494
|
+
pack?: boolean | undefined;
|
|
6495
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6496
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6302
6497
|
padding?: number | undefined;
|
|
6303
6498
|
paddingLeft?: number | undefined;
|
|
6304
6499
|
paddingRight?: number | undefined;
|
|
@@ -6324,10 +6519,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6324
6519
|
gridGap?: string | number | undefined;
|
|
6325
6520
|
flexDirection?: "row" | "column" | undefined;
|
|
6326
6521
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6327
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6522
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6328
6523
|
flexRow?: boolean | undefined;
|
|
6329
6524
|
flexColumn?: boolean | undefined;
|
|
6330
6525
|
gap?: string | number | undefined;
|
|
6526
|
+
pack?: boolean | undefined;
|
|
6527
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6528
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6331
6529
|
padding?: number | undefined;
|
|
6332
6530
|
paddingLeft?: number | undefined;
|
|
6333
6531
|
paddingRight?: number | undefined;
|
|
@@ -6438,10 +6636,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6438
6636
|
gridGap?: string | number | undefined;
|
|
6439
6637
|
flexDirection?: "row" | "column" | undefined;
|
|
6440
6638
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6441
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6639
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6442
6640
|
flexRow?: boolean | undefined;
|
|
6443
6641
|
flexColumn?: boolean | undefined;
|
|
6444
6642
|
gap?: string | number | undefined;
|
|
6643
|
+
pack?: boolean | undefined;
|
|
6644
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6645
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6445
6646
|
padding?: string | number | undefined;
|
|
6446
6647
|
paddingLeft?: string | number | undefined;
|
|
6447
6648
|
paddingRight?: string | number | undefined;
|
|
@@ -6471,10 +6672,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6471
6672
|
gridGap?: string | number | undefined;
|
|
6472
6673
|
flexDirection?: "row" | "column" | undefined;
|
|
6473
6674
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6474
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6675
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6475
6676
|
flexRow?: boolean | undefined;
|
|
6476
6677
|
flexColumn?: boolean | undefined;
|
|
6477
6678
|
gap?: string | number | undefined;
|
|
6679
|
+
pack?: boolean | undefined;
|
|
6680
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6681
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6478
6682
|
padding?: string | number | undefined;
|
|
6479
6683
|
paddingLeft?: string | number | undefined;
|
|
6480
6684
|
paddingRight?: string | number | undefined;
|
|
@@ -6500,10 +6704,13 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6500
6704
|
gridGap?: string | number | undefined;
|
|
6501
6705
|
flexDirection?: "row" | "column" | undefined;
|
|
6502
6706
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6503
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6707
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6504
6708
|
flexRow?: boolean | undefined;
|
|
6505
6709
|
flexColumn?: boolean | undefined;
|
|
6506
6710
|
gap?: string | number | undefined;
|
|
6711
|
+
pack?: boolean | undefined;
|
|
6712
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6713
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6507
6714
|
padding?: string | number | undefined;
|
|
6508
6715
|
paddingLeft?: string | number | undefined;
|
|
6509
6716
|
paddingRight?: string | number | undefined;
|
|
@@ -6628,10 +6835,13 @@ declare const boardProps: z.ZodObject<{
|
|
|
6628
6835
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
6629
6836
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
6630
6837
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
6631
|
-
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"]>>;
|
|
6632
6839
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
6633
6840
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
6634
6841
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6842
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
6843
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
6844
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
6635
6845
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6636
6846
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6637
6847
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6656,10 +6866,13 @@ declare const boardProps: z.ZodObject<{
|
|
|
6656
6866
|
gridGap?: string | number | undefined;
|
|
6657
6867
|
flexDirection?: "row" | "column" | undefined;
|
|
6658
6868
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6659
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6869
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6660
6870
|
flexRow?: boolean | undefined;
|
|
6661
6871
|
flexColumn?: boolean | undefined;
|
|
6662
6872
|
gap?: string | number | undefined;
|
|
6873
|
+
pack?: boolean | undefined;
|
|
6874
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6875
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6663
6876
|
padding?: number | undefined;
|
|
6664
6877
|
paddingLeft?: number | undefined;
|
|
6665
6878
|
paddingRight?: number | undefined;
|
|
@@ -6684,10 +6897,13 @@ declare const boardProps: z.ZodObject<{
|
|
|
6684
6897
|
gridGap?: string | number | undefined;
|
|
6685
6898
|
flexDirection?: "row" | "column" | undefined;
|
|
6686
6899
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6687
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6900
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6688
6901
|
flexRow?: boolean | undefined;
|
|
6689
6902
|
flexColumn?: boolean | undefined;
|
|
6690
6903
|
gap?: string | number | undefined;
|
|
6904
|
+
pack?: boolean | undefined;
|
|
6905
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6906
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6691
6907
|
padding?: string | number | undefined;
|
|
6692
6908
|
paddingLeft?: string | number | undefined;
|
|
6693
6909
|
paddingRight?: string | number | undefined;
|
|
@@ -6713,10 +6929,13 @@ declare const boardProps: z.ZodObject<{
|
|
|
6713
6929
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
6714
6930
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
6715
6931
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
6716
|
-
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"]>>;
|
|
6717
6933
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
6718
6934
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
6719
6935
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6936
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
6937
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
6938
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
6720
6939
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6721
6940
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6722
6941
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6741,10 +6960,13 @@ declare const boardProps: z.ZodObject<{
|
|
|
6741
6960
|
gridGap?: string | number | undefined;
|
|
6742
6961
|
flexDirection?: "row" | "column" | undefined;
|
|
6743
6962
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6744
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6963
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6745
6964
|
flexRow?: boolean | undefined;
|
|
6746
6965
|
flexColumn?: boolean | undefined;
|
|
6747
6966
|
gap?: string | number | undefined;
|
|
6967
|
+
pack?: boolean | undefined;
|
|
6968
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
6969
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6748
6970
|
padding?: number | undefined;
|
|
6749
6971
|
paddingLeft?: number | undefined;
|
|
6750
6972
|
paddingRight?: number | undefined;
|
|
@@ -6769,10 +6991,13 @@ declare const boardProps: z.ZodObject<{
|
|
|
6769
6991
|
gridGap?: string | number | undefined;
|
|
6770
6992
|
flexDirection?: "row" | "column" | undefined;
|
|
6771
6993
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6772
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6994
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6773
6995
|
flexRow?: boolean | undefined;
|
|
6774
6996
|
flexColumn?: boolean | undefined;
|
|
6775
6997
|
gap?: string | number | undefined;
|
|
6998
|
+
pack?: boolean | undefined;
|
|
6999
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7000
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
6776
7001
|
padding?: string | number | undefined;
|
|
6777
7002
|
paddingLeft?: string | number | undefined;
|
|
6778
7003
|
paddingRight?: string | number | undefined;
|
|
@@ -6828,10 +7053,13 @@ declare const boardProps: z.ZodObject<{
|
|
|
6828
7053
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
6829
7054
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
6830
7055
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
6831
|
-
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"]>>;
|
|
6832
7057
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
6833
7058
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
6834
7059
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7060
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
7061
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
7062
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
6835
7063
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6836
7064
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6837
7065
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7097,10 +7325,13 @@ declare const boardProps: z.ZodObject<{
|
|
|
7097
7325
|
gridGap?: string | number | undefined;
|
|
7098
7326
|
flexDirection?: "row" | "column" | undefined;
|
|
7099
7327
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7100
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7328
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7101
7329
|
flexRow?: boolean | undefined;
|
|
7102
7330
|
flexColumn?: boolean | undefined;
|
|
7103
7331
|
gap?: string | number | undefined;
|
|
7332
|
+
pack?: boolean | undefined;
|
|
7333
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7334
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7104
7335
|
padding?: number | undefined;
|
|
7105
7336
|
paddingLeft?: number | undefined;
|
|
7106
7337
|
paddingRight?: number | undefined;
|
|
@@ -7130,10 +7361,13 @@ declare const boardProps: z.ZodObject<{
|
|
|
7130
7361
|
gridGap?: string | number | undefined;
|
|
7131
7362
|
flexDirection?: "row" | "column" | undefined;
|
|
7132
7363
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7133
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7364
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7134
7365
|
flexRow?: boolean | undefined;
|
|
7135
7366
|
flexColumn?: boolean | undefined;
|
|
7136
7367
|
gap?: string | number | undefined;
|
|
7368
|
+
pack?: boolean | undefined;
|
|
7369
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7370
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7137
7371
|
padding?: number | undefined;
|
|
7138
7372
|
paddingLeft?: number | undefined;
|
|
7139
7373
|
paddingRight?: number | undefined;
|
|
@@ -7159,10 +7393,13 @@ declare const boardProps: z.ZodObject<{
|
|
|
7159
7393
|
gridGap?: string | number | undefined;
|
|
7160
7394
|
flexDirection?: "row" | "column" | undefined;
|
|
7161
7395
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7162
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7396
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7163
7397
|
flexRow?: boolean | undefined;
|
|
7164
7398
|
flexColumn?: boolean | undefined;
|
|
7165
7399
|
gap?: string | number | undefined;
|
|
7400
|
+
pack?: boolean | undefined;
|
|
7401
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7402
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7166
7403
|
padding?: number | undefined;
|
|
7167
7404
|
paddingLeft?: number | undefined;
|
|
7168
7405
|
paddingRight?: number | undefined;
|
|
@@ -7272,10 +7509,13 @@ declare const boardProps: z.ZodObject<{
|
|
|
7272
7509
|
gridGap?: string | number | undefined;
|
|
7273
7510
|
flexDirection?: "row" | "column" | undefined;
|
|
7274
7511
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7275
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7512
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7276
7513
|
flexRow?: boolean | undefined;
|
|
7277
7514
|
flexColumn?: boolean | undefined;
|
|
7278
7515
|
gap?: string | number | undefined;
|
|
7516
|
+
pack?: boolean | undefined;
|
|
7517
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7518
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7279
7519
|
padding?: string | number | undefined;
|
|
7280
7520
|
paddingLeft?: string | number | undefined;
|
|
7281
7521
|
paddingRight?: string | number | undefined;
|
|
@@ -7305,10 +7545,13 @@ declare const boardProps: z.ZodObject<{
|
|
|
7305
7545
|
gridGap?: string | number | undefined;
|
|
7306
7546
|
flexDirection?: "row" | "column" | undefined;
|
|
7307
7547
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7308
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7548
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7309
7549
|
flexRow?: boolean | undefined;
|
|
7310
7550
|
flexColumn?: boolean | undefined;
|
|
7311
7551
|
gap?: string | number | undefined;
|
|
7552
|
+
pack?: boolean | undefined;
|
|
7553
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7554
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7312
7555
|
padding?: string | number | undefined;
|
|
7313
7556
|
paddingLeft?: string | number | undefined;
|
|
7314
7557
|
paddingRight?: string | number | undefined;
|
|
@@ -7334,10 +7577,13 @@ declare const boardProps: z.ZodObject<{
|
|
|
7334
7577
|
gridGap?: string | number | undefined;
|
|
7335
7578
|
flexDirection?: "row" | "column" | undefined;
|
|
7336
7579
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7337
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7580
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7338
7581
|
flexRow?: boolean | undefined;
|
|
7339
7582
|
flexColumn?: boolean | undefined;
|
|
7340
7583
|
gap?: string | number | undefined;
|
|
7584
|
+
pack?: boolean | undefined;
|
|
7585
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7586
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7341
7587
|
padding?: string | number | undefined;
|
|
7342
7588
|
paddingLeft?: string | number | undefined;
|
|
7343
7589
|
paddingRight?: string | number | undefined;
|
|
@@ -7467,10 +7713,13 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7467
7713
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
7468
7714
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
7469
7715
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
7470
|
-
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"]>>;
|
|
7471
7717
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
7472
7718
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7473
7719
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7720
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
7721
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
7722
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
7474
7723
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7475
7724
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7476
7725
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7495,10 +7744,13 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7495
7744
|
gridGap?: string | number | undefined;
|
|
7496
7745
|
flexDirection?: "row" | "column" | undefined;
|
|
7497
7746
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7498
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7747
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7499
7748
|
flexRow?: boolean | undefined;
|
|
7500
7749
|
flexColumn?: boolean | undefined;
|
|
7501
7750
|
gap?: string | number | undefined;
|
|
7751
|
+
pack?: boolean | undefined;
|
|
7752
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7753
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7502
7754
|
padding?: number | undefined;
|
|
7503
7755
|
paddingLeft?: number | undefined;
|
|
7504
7756
|
paddingRight?: number | undefined;
|
|
@@ -7523,10 +7775,13 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7523
7775
|
gridGap?: string | number | undefined;
|
|
7524
7776
|
flexDirection?: "row" | "column" | undefined;
|
|
7525
7777
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7526
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7778
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7527
7779
|
flexRow?: boolean | undefined;
|
|
7528
7780
|
flexColumn?: boolean | undefined;
|
|
7529
7781
|
gap?: string | number | undefined;
|
|
7782
|
+
pack?: boolean | undefined;
|
|
7783
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7784
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7530
7785
|
padding?: string | number | undefined;
|
|
7531
7786
|
paddingLeft?: string | number | undefined;
|
|
7532
7787
|
paddingRight?: string | number | undefined;
|
|
@@ -7552,10 +7807,13 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7552
7807
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
7553
7808
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
7554
7809
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
7555
|
-
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"]>>;
|
|
7556
7811
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
7557
7812
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7558
7813
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7814
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
7815
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
7816
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
7559
7817
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7560
7818
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7561
7819
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7580,10 +7838,13 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7580
7838
|
gridGap?: string | number | undefined;
|
|
7581
7839
|
flexDirection?: "row" | "column" | undefined;
|
|
7582
7840
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7583
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7841
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7584
7842
|
flexRow?: boolean | undefined;
|
|
7585
7843
|
flexColumn?: boolean | undefined;
|
|
7586
7844
|
gap?: string | number | undefined;
|
|
7845
|
+
pack?: boolean | undefined;
|
|
7846
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7847
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7587
7848
|
padding?: number | undefined;
|
|
7588
7849
|
paddingLeft?: number | undefined;
|
|
7589
7850
|
paddingRight?: number | undefined;
|
|
@@ -7608,10 +7869,13 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7608
7869
|
gridGap?: string | number | undefined;
|
|
7609
7870
|
flexDirection?: "row" | "column" | undefined;
|
|
7610
7871
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7611
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7872
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7612
7873
|
flexRow?: boolean | undefined;
|
|
7613
7874
|
flexColumn?: boolean | undefined;
|
|
7614
7875
|
gap?: string | number | undefined;
|
|
7876
|
+
pack?: boolean | undefined;
|
|
7877
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
7878
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7615
7879
|
padding?: string | number | undefined;
|
|
7616
7880
|
paddingLeft?: string | number | undefined;
|
|
7617
7881
|
paddingRight?: string | number | undefined;
|
|
@@ -7667,10 +7931,13 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7667
7931
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
7668
7932
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
7669
7933
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
7670
|
-
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"]>>;
|
|
7671
7935
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
7672
7936
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7673
7937
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7938
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
7939
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
7940
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
7674
7941
|
paddingX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7675
7942
|
paddingY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7676
7943
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7933,10 +8200,13 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7933
8200
|
gridGap?: string | number | undefined;
|
|
7934
8201
|
flexDirection?: "row" | "column" | undefined;
|
|
7935
8202
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7936
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8203
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7937
8204
|
flexRow?: boolean | undefined;
|
|
7938
8205
|
flexColumn?: boolean | undefined;
|
|
7939
8206
|
gap?: string | number | undefined;
|
|
8207
|
+
pack?: boolean | undefined;
|
|
8208
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8209
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7940
8210
|
padding?: number | undefined;
|
|
7941
8211
|
paddingLeft?: number | undefined;
|
|
7942
8212
|
paddingRight?: number | undefined;
|
|
@@ -7966,10 +8236,13 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7966
8236
|
gridGap?: string | number | undefined;
|
|
7967
8237
|
flexDirection?: "row" | "column" | undefined;
|
|
7968
8238
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7969
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8239
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7970
8240
|
flexRow?: boolean | undefined;
|
|
7971
8241
|
flexColumn?: boolean | undefined;
|
|
7972
8242
|
gap?: string | number | undefined;
|
|
8243
|
+
pack?: boolean | undefined;
|
|
8244
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8245
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
7973
8246
|
padding?: number | undefined;
|
|
7974
8247
|
paddingLeft?: number | undefined;
|
|
7975
8248
|
paddingRight?: number | undefined;
|
|
@@ -7995,10 +8268,13 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7995
8268
|
gridGap?: string | number | undefined;
|
|
7996
8269
|
flexDirection?: "row" | "column" | undefined;
|
|
7997
8270
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7998
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8271
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7999
8272
|
flexRow?: boolean | undefined;
|
|
8000
8273
|
flexColumn?: boolean | undefined;
|
|
8001
8274
|
gap?: string | number | undefined;
|
|
8275
|
+
pack?: boolean | undefined;
|
|
8276
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8277
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
8002
8278
|
padding?: number | undefined;
|
|
8003
8279
|
paddingLeft?: number | undefined;
|
|
8004
8280
|
paddingRight?: number | undefined;
|
|
@@ -8108,10 +8384,13 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8108
8384
|
gridGap?: string | number | undefined;
|
|
8109
8385
|
flexDirection?: "row" | "column" | undefined;
|
|
8110
8386
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8111
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8387
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
8112
8388
|
flexRow?: boolean | undefined;
|
|
8113
8389
|
flexColumn?: boolean | undefined;
|
|
8114
8390
|
gap?: string | number | undefined;
|
|
8391
|
+
pack?: boolean | undefined;
|
|
8392
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8393
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
8115
8394
|
padding?: string | number | undefined;
|
|
8116
8395
|
paddingLeft?: string | number | undefined;
|
|
8117
8396
|
paddingRight?: string | number | undefined;
|
|
@@ -8141,10 +8420,13 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8141
8420
|
gridGap?: string | number | undefined;
|
|
8142
8421
|
flexDirection?: "row" | "column" | undefined;
|
|
8143
8422
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8144
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8423
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
8145
8424
|
flexRow?: boolean | undefined;
|
|
8146
8425
|
flexColumn?: boolean | undefined;
|
|
8147
8426
|
gap?: string | number | undefined;
|
|
8427
|
+
pack?: boolean | undefined;
|
|
8428
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8429
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
8148
8430
|
padding?: string | number | undefined;
|
|
8149
8431
|
paddingLeft?: string | number | undefined;
|
|
8150
8432
|
paddingRight?: string | number | undefined;
|
|
@@ -8170,10 +8452,13 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8170
8452
|
gridGap?: string | number | undefined;
|
|
8171
8453
|
flexDirection?: "row" | "column" | undefined;
|
|
8172
8454
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8173
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8455
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
8174
8456
|
flexRow?: boolean | undefined;
|
|
8175
8457
|
flexColumn?: boolean | undefined;
|
|
8176
8458
|
gap?: string | number | undefined;
|
|
8459
|
+
pack?: boolean | undefined;
|
|
8460
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
8461
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
8177
8462
|
padding?: string | number | undefined;
|
|
8178
8463
|
paddingLeft?: string | number | undefined;
|
|
8179
8464
|
paddingRight?: string | number | undefined;
|
|
@@ -14906,10 +15191,13 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
14906
15191
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
14907
15192
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
14908
15193
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
14909
|
-
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"]>>;
|
|
14910
15195
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
14911
15196
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
14912
15197
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15198
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
15199
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
15200
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
14913
15201
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14914
15202
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14915
15203
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -14934,10 +15222,13 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
14934
15222
|
gridGap?: string | number | undefined;
|
|
14935
15223
|
flexDirection?: "row" | "column" | undefined;
|
|
14936
15224
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
14937
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15225
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
14938
15226
|
flexRow?: boolean | undefined;
|
|
14939
15227
|
flexColumn?: boolean | undefined;
|
|
14940
15228
|
gap?: string | number | undefined;
|
|
15229
|
+
pack?: boolean | undefined;
|
|
15230
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15231
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
14941
15232
|
padding?: number | undefined;
|
|
14942
15233
|
paddingLeft?: number | undefined;
|
|
14943
15234
|
paddingRight?: number | undefined;
|
|
@@ -14962,10 +15253,13 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
14962
15253
|
gridGap?: string | number | undefined;
|
|
14963
15254
|
flexDirection?: "row" | "column" | undefined;
|
|
14964
15255
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
14965
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15256
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
14966
15257
|
flexRow?: boolean | undefined;
|
|
14967
15258
|
flexColumn?: boolean | undefined;
|
|
14968
15259
|
gap?: string | number | undefined;
|
|
15260
|
+
pack?: boolean | undefined;
|
|
15261
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15262
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
14969
15263
|
padding?: string | number | undefined;
|
|
14970
15264
|
paddingLeft?: string | number | undefined;
|
|
14971
15265
|
paddingRight?: string | number | undefined;
|
|
@@ -14991,10 +15285,13 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
14991
15285
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
14992
15286
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
14993
15287
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
14994
|
-
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"]>>;
|
|
14995
15289
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
14996
15290
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
14997
15291
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15292
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
15293
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
15294
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
14998
15295
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14999
15296
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15000
15297
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -15019,10 +15316,13 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15019
15316
|
gridGap?: string | number | undefined;
|
|
15020
15317
|
flexDirection?: "row" | "column" | undefined;
|
|
15021
15318
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15022
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15319
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15023
15320
|
flexRow?: boolean | undefined;
|
|
15024
15321
|
flexColumn?: boolean | undefined;
|
|
15025
15322
|
gap?: string | number | undefined;
|
|
15323
|
+
pack?: boolean | undefined;
|
|
15324
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15325
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15026
15326
|
padding?: number | undefined;
|
|
15027
15327
|
paddingLeft?: number | undefined;
|
|
15028
15328
|
paddingRight?: number | undefined;
|
|
@@ -15047,10 +15347,13 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15047
15347
|
gridGap?: string | number | undefined;
|
|
15048
15348
|
flexDirection?: "row" | "column" | undefined;
|
|
15049
15349
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15050
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15350
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15051
15351
|
flexRow?: boolean | undefined;
|
|
15052
15352
|
flexColumn?: boolean | undefined;
|
|
15053
15353
|
gap?: string | number | undefined;
|
|
15354
|
+
pack?: boolean | undefined;
|
|
15355
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15356
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15054
15357
|
padding?: string | number | undefined;
|
|
15055
15358
|
paddingLeft?: string | number | undefined;
|
|
15056
15359
|
paddingRight?: string | number | undefined;
|
|
@@ -15106,10 +15409,13 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15106
15409
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
15107
15410
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
15108
15411
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
15109
|
-
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"]>>;
|
|
15110
15413
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
15111
15414
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
15112
15415
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15416
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
15417
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
15418
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
15113
15419
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15114
15420
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15115
15421
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -15390,10 +15696,13 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15390
15696
|
gridGap?: string | number | undefined;
|
|
15391
15697
|
flexDirection?: "row" | "column" | undefined;
|
|
15392
15698
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15393
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15699
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15394
15700
|
flexRow?: boolean | undefined;
|
|
15395
15701
|
flexColumn?: boolean | undefined;
|
|
15396
15702
|
gap?: string | number | undefined;
|
|
15703
|
+
pack?: boolean | undefined;
|
|
15704
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15705
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15397
15706
|
padding?: number | undefined;
|
|
15398
15707
|
paddingLeft?: number | undefined;
|
|
15399
15708
|
paddingRight?: number | undefined;
|
|
@@ -15423,10 +15732,13 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15423
15732
|
gridGap?: string | number | undefined;
|
|
15424
15733
|
flexDirection?: "row" | "column" | undefined;
|
|
15425
15734
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15426
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15735
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15427
15736
|
flexRow?: boolean | undefined;
|
|
15428
15737
|
flexColumn?: boolean | undefined;
|
|
15429
15738
|
gap?: string | number | undefined;
|
|
15739
|
+
pack?: boolean | undefined;
|
|
15740
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15741
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15430
15742
|
padding?: number | undefined;
|
|
15431
15743
|
paddingLeft?: number | undefined;
|
|
15432
15744
|
paddingRight?: number | undefined;
|
|
@@ -15452,10 +15764,13 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15452
15764
|
gridGap?: string | number | undefined;
|
|
15453
15765
|
flexDirection?: "row" | "column" | undefined;
|
|
15454
15766
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15455
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15767
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15456
15768
|
flexRow?: boolean | undefined;
|
|
15457
15769
|
flexColumn?: boolean | undefined;
|
|
15458
15770
|
gap?: string | number | undefined;
|
|
15771
|
+
pack?: boolean | undefined;
|
|
15772
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15773
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15459
15774
|
padding?: number | undefined;
|
|
15460
15775
|
paddingLeft?: number | undefined;
|
|
15461
15776
|
paddingRight?: number | undefined;
|
|
@@ -15575,10 +15890,13 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15575
15890
|
gridGap?: string | number | undefined;
|
|
15576
15891
|
flexDirection?: "row" | "column" | undefined;
|
|
15577
15892
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15578
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15893
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15579
15894
|
flexRow?: boolean | undefined;
|
|
15580
15895
|
flexColumn?: boolean | undefined;
|
|
15581
15896
|
gap?: string | number | undefined;
|
|
15897
|
+
pack?: boolean | undefined;
|
|
15898
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15899
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15582
15900
|
padding?: string | number | undefined;
|
|
15583
15901
|
paddingLeft?: string | number | undefined;
|
|
15584
15902
|
paddingRight?: string | number | undefined;
|
|
@@ -15608,10 +15926,13 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15608
15926
|
gridGap?: string | number | undefined;
|
|
15609
15927
|
flexDirection?: "row" | "column" | undefined;
|
|
15610
15928
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15611
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15929
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15612
15930
|
flexRow?: boolean | undefined;
|
|
15613
15931
|
flexColumn?: boolean | undefined;
|
|
15614
15932
|
gap?: string | number | undefined;
|
|
15933
|
+
pack?: boolean | undefined;
|
|
15934
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15935
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15615
15936
|
padding?: string | number | undefined;
|
|
15616
15937
|
paddingLeft?: string | number | undefined;
|
|
15617
15938
|
paddingRight?: string | number | undefined;
|
|
@@ -15637,10 +15958,13 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15637
15958
|
gridGap?: string | number | undefined;
|
|
15638
15959
|
flexDirection?: "row" | "column" | undefined;
|
|
15639
15960
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15640
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
15961
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
15641
15962
|
flexRow?: boolean | undefined;
|
|
15642
15963
|
flexColumn?: boolean | undefined;
|
|
15643
15964
|
gap?: string | number | undefined;
|
|
15965
|
+
pack?: boolean | undefined;
|
|
15966
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
15967
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
15644
15968
|
padding?: string | number | undefined;
|
|
15645
15969
|
paddingLeft?: string | number | undefined;
|
|
15646
15970
|
paddingRight?: string | number | undefined;
|
|
@@ -19722,10 +20046,13 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
19722
20046
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
19723
20047
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
19724
20048
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
19725
|
-
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"]>>;
|
|
19726
20050
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
19727
20051
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
19728
20052
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20053
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
20054
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
20055
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
19729
20056
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19730
20057
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19731
20058
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -19750,10 +20077,13 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
19750
20077
|
gridGap?: string | number | undefined;
|
|
19751
20078
|
flexDirection?: "row" | "column" | undefined;
|
|
19752
20079
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
19753
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20080
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
19754
20081
|
flexRow?: boolean | undefined;
|
|
19755
20082
|
flexColumn?: boolean | undefined;
|
|
19756
20083
|
gap?: string | number | undefined;
|
|
20084
|
+
pack?: boolean | undefined;
|
|
20085
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20086
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
19757
20087
|
padding?: number | undefined;
|
|
19758
20088
|
paddingLeft?: number | undefined;
|
|
19759
20089
|
paddingRight?: number | undefined;
|
|
@@ -19778,10 +20108,13 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
19778
20108
|
gridGap?: string | number | undefined;
|
|
19779
20109
|
flexDirection?: "row" | "column" | undefined;
|
|
19780
20110
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
19781
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20111
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
19782
20112
|
flexRow?: boolean | undefined;
|
|
19783
20113
|
flexColumn?: boolean | undefined;
|
|
19784
20114
|
gap?: string | number | undefined;
|
|
20115
|
+
pack?: boolean | undefined;
|
|
20116
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20117
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
19785
20118
|
padding?: string | number | undefined;
|
|
19786
20119
|
paddingLeft?: string | number | undefined;
|
|
19787
20120
|
paddingRight?: string | number | undefined;
|
|
@@ -19807,10 +20140,13 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
19807
20140
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
19808
20141
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
19809
20142
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
19810
|
-
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"]>>;
|
|
19811
20144
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
19812
20145
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
19813
20146
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20147
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
20148
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
20149
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
19814
20150
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19815
20151
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19816
20152
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -19835,10 +20171,13 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
19835
20171
|
gridGap?: string | number | undefined;
|
|
19836
20172
|
flexDirection?: "row" | "column" | undefined;
|
|
19837
20173
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
19838
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20174
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
19839
20175
|
flexRow?: boolean | undefined;
|
|
19840
20176
|
flexColumn?: boolean | undefined;
|
|
19841
20177
|
gap?: string | number | undefined;
|
|
20178
|
+
pack?: boolean | undefined;
|
|
20179
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20180
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
19842
20181
|
padding?: number | undefined;
|
|
19843
20182
|
paddingLeft?: number | undefined;
|
|
19844
20183
|
paddingRight?: number | undefined;
|
|
@@ -19863,10 +20202,13 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
19863
20202
|
gridGap?: string | number | undefined;
|
|
19864
20203
|
flexDirection?: "row" | "column" | undefined;
|
|
19865
20204
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
19866
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20205
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
19867
20206
|
flexRow?: boolean | undefined;
|
|
19868
20207
|
flexColumn?: boolean | undefined;
|
|
19869
20208
|
gap?: string | number | undefined;
|
|
20209
|
+
pack?: boolean | undefined;
|
|
20210
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20211
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
19870
20212
|
padding?: string | number | undefined;
|
|
19871
20213
|
paddingLeft?: string | number | undefined;
|
|
19872
20214
|
paddingRight?: string | number | undefined;
|
|
@@ -19922,10 +20264,13 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
19922
20264
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
19923
20265
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
19924
20266
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
19925
|
-
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"]>>;
|
|
19926
20268
|
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
19927
20269
|
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
19928
20270
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20271
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
20272
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest"]>>;
|
|
20273
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
19929
20274
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19930
20275
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19931
20276
|
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -20188,10 +20533,13 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20188
20533
|
gridGap?: string | number | undefined;
|
|
20189
20534
|
flexDirection?: "row" | "column" | undefined;
|
|
20190
20535
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20191
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20536
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
20192
20537
|
flexRow?: boolean | undefined;
|
|
20193
20538
|
flexColumn?: boolean | undefined;
|
|
20194
20539
|
gap?: string | number | undefined;
|
|
20540
|
+
pack?: boolean | undefined;
|
|
20541
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20542
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
20195
20543
|
padding?: number | undefined;
|
|
20196
20544
|
paddingLeft?: number | undefined;
|
|
20197
20545
|
paddingRight?: number | undefined;
|
|
@@ -20221,10 +20569,13 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20221
20569
|
gridGap?: string | number | undefined;
|
|
20222
20570
|
flexDirection?: "row" | "column" | undefined;
|
|
20223
20571
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20224
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20572
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
20225
20573
|
flexRow?: boolean | undefined;
|
|
20226
20574
|
flexColumn?: boolean | undefined;
|
|
20227
20575
|
gap?: string | number | undefined;
|
|
20576
|
+
pack?: boolean | undefined;
|
|
20577
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20578
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
20228
20579
|
padding?: number | undefined;
|
|
20229
20580
|
paddingLeft?: number | undefined;
|
|
20230
20581
|
paddingRight?: number | undefined;
|
|
@@ -20250,10 +20601,13 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20250
20601
|
gridGap?: string | number | undefined;
|
|
20251
20602
|
flexDirection?: "row" | "column" | undefined;
|
|
20252
20603
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20253
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20604
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
20254
20605
|
flexRow?: boolean | undefined;
|
|
20255
20606
|
flexColumn?: boolean | undefined;
|
|
20256
20607
|
gap?: string | number | undefined;
|
|
20608
|
+
pack?: boolean | undefined;
|
|
20609
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20610
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
20257
20611
|
padding?: number | undefined;
|
|
20258
20612
|
paddingLeft?: number | undefined;
|
|
20259
20613
|
paddingRight?: number | undefined;
|
|
@@ -20363,10 +20717,13 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20363
20717
|
gridGap?: string | number | undefined;
|
|
20364
20718
|
flexDirection?: "row" | "column" | undefined;
|
|
20365
20719
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20366
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20720
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
20367
20721
|
flexRow?: boolean | undefined;
|
|
20368
20722
|
flexColumn?: boolean | undefined;
|
|
20369
20723
|
gap?: string | number | undefined;
|
|
20724
|
+
pack?: boolean | undefined;
|
|
20725
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20726
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
20370
20727
|
padding?: string | number | undefined;
|
|
20371
20728
|
paddingLeft?: string | number | undefined;
|
|
20372
20729
|
paddingRight?: string | number | undefined;
|
|
@@ -20396,10 +20753,13 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20396
20753
|
gridGap?: string | number | undefined;
|
|
20397
20754
|
flexDirection?: "row" | "column" | undefined;
|
|
20398
20755
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20399
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20756
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
20400
20757
|
flexRow?: boolean | undefined;
|
|
20401
20758
|
flexColumn?: boolean | undefined;
|
|
20402
20759
|
gap?: string | number | undefined;
|
|
20760
|
+
pack?: boolean | undefined;
|
|
20761
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20762
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
20403
20763
|
padding?: string | number | undefined;
|
|
20404
20764
|
paddingLeft?: string | number | undefined;
|
|
20405
20765
|
paddingRight?: string | number | undefined;
|
|
@@ -20425,10 +20785,13 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20425
20785
|
gridGap?: string | number | undefined;
|
|
20426
20786
|
flexDirection?: "row" | "column" | undefined;
|
|
20427
20787
|
alignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20428
|
-
justifyContent?: "center" | "start" | "end" | "stretch" | undefined;
|
|
20788
|
+
justifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
20429
20789
|
flexRow?: boolean | undefined;
|
|
20430
20790
|
flexColumn?: boolean | undefined;
|
|
20431
20791
|
gap?: string | number | undefined;
|
|
20792
|
+
pack?: boolean | undefined;
|
|
20793
|
+
packOrderStrategy?: "largest_to_smallest" | undefined;
|
|
20794
|
+
packPlacementStrategy?: "shortest_connection_along_outline" | undefined;
|
|
20432
20795
|
padding?: string | number | undefined;
|
|
20433
20796
|
paddingLeft?: string | number | undefined;
|
|
20434
20797
|
paddingRight?: string | number | undefined;
|