@tscircuit/props 0.0.269 → 0.0.270
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +414 -18
- package/dist/index.js +24 -0
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +54 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3051,6 +3051,24 @@ interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
|
|
|
3051
3051
|
schPaddingRight?: Distance;
|
|
3052
3052
|
schPaddingTop?: Distance;
|
|
3053
3053
|
schPaddingBottom?: Distance;
|
|
3054
|
+
/** @deprecated Use `pcbGrid` */
|
|
3055
|
+
grid?: boolean;
|
|
3056
|
+
/** @deprecated Use `pcbFlex` */
|
|
3057
|
+
flex?: boolean | string;
|
|
3058
|
+
pcbGrid?: boolean;
|
|
3059
|
+
pcbGridCols?: number | string;
|
|
3060
|
+
pcbGridRows?: number | string;
|
|
3061
|
+
pcbGridTemplateRows?: string;
|
|
3062
|
+
pcbGridTemplateColumns?: string;
|
|
3063
|
+
pcbGridTemplate?: string;
|
|
3064
|
+
pcbGridGap?: number | string;
|
|
3065
|
+
pcbFlex?: boolean | string;
|
|
3066
|
+
pcbFlexDirection?: "row" | "column";
|
|
3067
|
+
pcbAlignItems?: "start" | "center" | "end" | "stretch";
|
|
3068
|
+
pcbJustifyContent?: "start" | "center" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly";
|
|
3069
|
+
pcbFlexRow?: boolean;
|
|
3070
|
+
pcbFlexColumn?: boolean;
|
|
3071
|
+
pcbGap?: number | string;
|
|
3054
3072
|
}
|
|
3055
3073
|
type PartsEngine = {
|
|
3056
3074
|
findPart: (params: {
|
|
@@ -3201,6 +3219,22 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3201
3219
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
3202
3220
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
3203
3221
|
} & {
|
|
3222
|
+
grid: z.ZodOptional<z.ZodBoolean>;
|
|
3223
|
+
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3224
|
+
pcbGrid: z.ZodOptional<z.ZodBoolean>;
|
|
3225
|
+
pcbGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3226
|
+
pcbGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3227
|
+
pcbGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
3228
|
+
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
3229
|
+
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
3230
|
+
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3231
|
+
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3232
|
+
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3233
|
+
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3234
|
+
pcbJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
3235
|
+
pcbFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3236
|
+
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3237
|
+
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3204
3238
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3205
3239
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3206
3240
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3426,14 +3460,12 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3426
3460
|
schPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3427
3461
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
|
|
3428
3462
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
3429
|
-
grid: z.ZodOptional<z.ZodBoolean>;
|
|
3430
3463
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3431
3464
|
gridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3432
3465
|
gridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
3433
3466
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
3434
3467
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
3435
3468
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3436
|
-
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3437
3469
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3438
3470
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3439
3471
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -3587,6 +3619,20 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3587
3619
|
schPaddingRight?: number | undefined;
|
|
3588
3620
|
schPaddingTop?: number | undefined;
|
|
3589
3621
|
schPaddingBottom?: number | undefined;
|
|
3622
|
+
pcbGrid?: boolean | undefined;
|
|
3623
|
+
pcbGridCols?: string | number | undefined;
|
|
3624
|
+
pcbGridRows?: string | number | undefined;
|
|
3625
|
+
pcbGridTemplateRows?: string | undefined;
|
|
3626
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
3627
|
+
pcbGridTemplate?: string | undefined;
|
|
3628
|
+
pcbGridGap?: string | number | undefined;
|
|
3629
|
+
pcbFlex?: string | boolean | undefined;
|
|
3630
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
3631
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3632
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3633
|
+
pcbFlexRow?: boolean | undefined;
|
|
3634
|
+
pcbFlexColumn?: boolean | undefined;
|
|
3635
|
+
pcbGap?: string | number | undefined;
|
|
3590
3636
|
}, {
|
|
3591
3637
|
pcbX?: string | number | undefined;
|
|
3592
3638
|
pcbY?: string | number | undefined;
|
|
@@ -3718,6 +3764,20 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3718
3764
|
schPaddingRight?: string | number | undefined;
|
|
3719
3765
|
schPaddingTop?: string | number | undefined;
|
|
3720
3766
|
schPaddingBottom?: string | number | undefined;
|
|
3767
|
+
pcbGrid?: boolean | undefined;
|
|
3768
|
+
pcbGridCols?: string | number | undefined;
|
|
3769
|
+
pcbGridRows?: string | number | undefined;
|
|
3770
|
+
pcbGridTemplateRows?: string | undefined;
|
|
3771
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
3772
|
+
pcbGridTemplate?: string | undefined;
|
|
3773
|
+
pcbGridGap?: string | number | undefined;
|
|
3774
|
+
pcbFlex?: string | boolean | undefined;
|
|
3775
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
3776
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3777
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3778
|
+
pcbFlexRow?: boolean | undefined;
|
|
3779
|
+
pcbFlexColumn?: boolean | undefined;
|
|
3780
|
+
pcbGap?: string | number | undefined;
|
|
3721
3781
|
}>;
|
|
3722
3782
|
declare const partsEngine: z.ZodType<PartsEngine, z.ZodTypeDef, PartsEngine>;
|
|
3723
3783
|
declare const subcircuitGroupProps: z.ZodObject<{
|
|
@@ -3740,6 +3800,22 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3740
3800
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
3741
3801
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
3742
3802
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
3803
|
+
grid: z.ZodOptional<z.ZodBoolean>;
|
|
3804
|
+
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3805
|
+
pcbGrid: z.ZodOptional<z.ZodBoolean>;
|
|
3806
|
+
pcbGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3807
|
+
pcbGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3808
|
+
pcbGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
3809
|
+
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
3810
|
+
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
3811
|
+
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3812
|
+
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3813
|
+
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3814
|
+
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3815
|
+
pcbJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
3816
|
+
pcbFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3817
|
+
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3818
|
+
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3743
3819
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3744
3820
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3745
3821
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3965,14 +4041,12 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3965
4041
|
schPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3966
4042
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
|
|
3967
4043
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
3968
|
-
grid: z.ZodOptional<z.ZodBoolean>;
|
|
3969
4044
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3970
4045
|
gridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3971
4046
|
gridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
3972
4047
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
3973
4048
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
3974
4049
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3975
|
-
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3976
4050
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3977
4051
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3978
4052
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -4349,6 +4423,20 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4349
4423
|
schPaddingRight?: number | undefined;
|
|
4350
4424
|
schPaddingTop?: number | undefined;
|
|
4351
4425
|
schPaddingBottom?: number | undefined;
|
|
4426
|
+
pcbGrid?: boolean | undefined;
|
|
4427
|
+
pcbGridCols?: string | number | undefined;
|
|
4428
|
+
pcbGridRows?: string | number | undefined;
|
|
4429
|
+
pcbGridTemplateRows?: string | undefined;
|
|
4430
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
4431
|
+
pcbGridTemplate?: string | undefined;
|
|
4432
|
+
pcbGridGap?: string | number | undefined;
|
|
4433
|
+
pcbFlex?: string | boolean | undefined;
|
|
4434
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
4435
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4436
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4437
|
+
pcbFlexRow?: boolean | undefined;
|
|
4438
|
+
pcbFlexColumn?: boolean | undefined;
|
|
4439
|
+
pcbGap?: string | number | undefined;
|
|
4352
4440
|
manualEdits?: {
|
|
4353
4441
|
pcb_placements?: {
|
|
4354
4442
|
selector: string;
|
|
@@ -4536,6 +4624,20 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4536
4624
|
schPaddingRight?: string | number | undefined;
|
|
4537
4625
|
schPaddingTop?: string | number | undefined;
|
|
4538
4626
|
schPaddingBottom?: string | number | undefined;
|
|
4627
|
+
pcbGrid?: boolean | undefined;
|
|
4628
|
+
pcbGridCols?: string | number | undefined;
|
|
4629
|
+
pcbGridRows?: string | number | undefined;
|
|
4630
|
+
pcbGridTemplateRows?: string | undefined;
|
|
4631
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
4632
|
+
pcbGridTemplate?: string | undefined;
|
|
4633
|
+
pcbGridGap?: string | number | undefined;
|
|
4634
|
+
pcbFlex?: string | boolean | undefined;
|
|
4635
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
4636
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4637
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4638
|
+
pcbFlexRow?: boolean | undefined;
|
|
4639
|
+
pcbFlexColumn?: boolean | undefined;
|
|
4640
|
+
pcbGap?: string | number | undefined;
|
|
4539
4641
|
manualEdits?: {
|
|
4540
4642
|
pcb_placements?: {
|
|
4541
4643
|
selector: string;
|
|
@@ -4615,6 +4717,22 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4615
4717
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
4616
4718
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
4617
4719
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
4720
|
+
grid: z.ZodOptional<z.ZodBoolean>;
|
|
4721
|
+
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
4722
|
+
pcbGrid: z.ZodOptional<z.ZodBoolean>;
|
|
4723
|
+
pcbGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4724
|
+
pcbGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4725
|
+
pcbGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
4726
|
+
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
4727
|
+
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
4728
|
+
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4729
|
+
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
4730
|
+
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
4731
|
+
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4732
|
+
pcbJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
4733
|
+
pcbFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
4734
|
+
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4735
|
+
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4618
4736
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4619
4737
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4620
4738
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -4840,14 +4958,12 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4840
4958
|
schPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4841
4959
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
|
|
4842
4960
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
4843
|
-
grid: z.ZodOptional<z.ZodBoolean>;
|
|
4844
4961
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4845
4962
|
gridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4846
4963
|
gridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
4847
4964
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
4848
4965
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
4849
4966
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4850
|
-
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
4851
4967
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
4852
4968
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
4853
4969
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -5227,6 +5343,20 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5227
5343
|
schPaddingRight?: number | undefined;
|
|
5228
5344
|
schPaddingTop?: number | undefined;
|
|
5229
5345
|
schPaddingBottom?: number | undefined;
|
|
5346
|
+
pcbGrid?: boolean | undefined;
|
|
5347
|
+
pcbGridCols?: string | number | undefined;
|
|
5348
|
+
pcbGridRows?: string | number | undefined;
|
|
5349
|
+
pcbGridTemplateRows?: string | undefined;
|
|
5350
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
5351
|
+
pcbGridTemplate?: string | undefined;
|
|
5352
|
+
pcbGridGap?: string | number | undefined;
|
|
5353
|
+
pcbFlex?: string | boolean | undefined;
|
|
5354
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
5355
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5356
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5357
|
+
pcbFlexRow?: boolean | undefined;
|
|
5358
|
+
pcbFlexColumn?: boolean | undefined;
|
|
5359
|
+
pcbGap?: string | number | undefined;
|
|
5230
5360
|
manualEdits?: {
|
|
5231
5361
|
pcb_placements?: {
|
|
5232
5362
|
selector: string;
|
|
@@ -5415,6 +5545,20 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5415
5545
|
schPaddingRight?: string | number | undefined;
|
|
5416
5546
|
schPaddingTop?: string | number | undefined;
|
|
5417
5547
|
schPaddingBottom?: string | number | undefined;
|
|
5548
|
+
pcbGrid?: boolean | undefined;
|
|
5549
|
+
pcbGridCols?: string | number | undefined;
|
|
5550
|
+
pcbGridRows?: string | number | undefined;
|
|
5551
|
+
pcbGridTemplateRows?: string | undefined;
|
|
5552
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
5553
|
+
pcbGridTemplate?: string | undefined;
|
|
5554
|
+
pcbGridGap?: string | number | undefined;
|
|
5555
|
+
pcbFlex?: string | boolean | undefined;
|
|
5556
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
5557
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5558
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5559
|
+
pcbFlexRow?: boolean | undefined;
|
|
5560
|
+
pcbFlexColumn?: boolean | undefined;
|
|
5561
|
+
pcbGap?: string | number | undefined;
|
|
5418
5562
|
manualEdits?: {
|
|
5419
5563
|
pcb_placements?: {
|
|
5420
5564
|
selector: string;
|
|
@@ -5495,6 +5639,22 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5495
5639
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
5496
5640
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
5497
5641
|
} & {
|
|
5642
|
+
grid: z.ZodOptional<z.ZodBoolean>;
|
|
5643
|
+
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
5644
|
+
pcbGrid: z.ZodOptional<z.ZodBoolean>;
|
|
5645
|
+
pcbGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5646
|
+
pcbGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5647
|
+
pcbGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
5648
|
+
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
5649
|
+
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
5650
|
+
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5651
|
+
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
5652
|
+
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
5653
|
+
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5654
|
+
pcbJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
5655
|
+
pcbFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5656
|
+
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5657
|
+
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5498
5658
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5499
5659
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5500
5660
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5720,14 +5880,12 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5720
5880
|
schPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5721
5881
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
|
|
5722
5882
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
5723
|
-
grid: z.ZodOptional<z.ZodBoolean>;
|
|
5724
5883
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5725
5884
|
gridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5726
5885
|
gridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
5727
5886
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
5728
5887
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
5729
5888
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5730
|
-
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
5731
5889
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
5732
5890
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5733
5891
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -5883,6 +6041,20 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5883
6041
|
schPaddingRight?: number | undefined;
|
|
5884
6042
|
schPaddingTop?: number | undefined;
|
|
5885
6043
|
schPaddingBottom?: number | undefined;
|
|
6044
|
+
pcbGrid?: boolean | undefined;
|
|
6045
|
+
pcbGridCols?: string | number | undefined;
|
|
6046
|
+
pcbGridRows?: string | number | undefined;
|
|
6047
|
+
pcbGridTemplateRows?: string | undefined;
|
|
6048
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
6049
|
+
pcbGridTemplate?: string | undefined;
|
|
6050
|
+
pcbGridGap?: string | number | undefined;
|
|
6051
|
+
pcbFlex?: string | boolean | undefined;
|
|
6052
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
6053
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6054
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6055
|
+
pcbFlexRow?: boolean | undefined;
|
|
6056
|
+
pcbFlexColumn?: boolean | undefined;
|
|
6057
|
+
pcbGap?: string | number | undefined;
|
|
5886
6058
|
subcircuit?: false | undefined;
|
|
5887
6059
|
}, {
|
|
5888
6060
|
pcbX?: string | number | undefined;
|
|
@@ -6015,6 +6187,20 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6015
6187
|
schPaddingRight?: string | number | undefined;
|
|
6016
6188
|
schPaddingTop?: string | number | undefined;
|
|
6017
6189
|
schPaddingBottom?: string | number | undefined;
|
|
6190
|
+
pcbGrid?: boolean | undefined;
|
|
6191
|
+
pcbGridCols?: string | number | undefined;
|
|
6192
|
+
pcbGridRows?: string | number | undefined;
|
|
6193
|
+
pcbGridTemplateRows?: string | undefined;
|
|
6194
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
6195
|
+
pcbGridTemplate?: string | undefined;
|
|
6196
|
+
pcbGridGap?: string | number | undefined;
|
|
6197
|
+
pcbFlex?: string | boolean | undefined;
|
|
6198
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
6199
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6200
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6201
|
+
pcbFlexRow?: boolean | undefined;
|
|
6202
|
+
pcbFlexColumn?: boolean | undefined;
|
|
6203
|
+
pcbGap?: string | number | undefined;
|
|
6018
6204
|
subcircuit?: false | undefined;
|
|
6019
6205
|
}>, z.ZodObject<{
|
|
6020
6206
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6036,6 +6222,22 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6036
6222
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
6037
6223
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
6038
6224
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
6225
|
+
grid: z.ZodOptional<z.ZodBoolean>;
|
|
6226
|
+
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
6227
|
+
pcbGrid: z.ZodOptional<z.ZodBoolean>;
|
|
6228
|
+
pcbGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6229
|
+
pcbGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6230
|
+
pcbGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
6231
|
+
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
6232
|
+
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
6233
|
+
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6234
|
+
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
6235
|
+
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
6236
|
+
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
6237
|
+
pcbJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
6238
|
+
pcbFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
6239
|
+
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
6240
|
+
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6039
6241
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6040
6242
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6041
6243
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6261,14 +6463,12 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6261
6463
|
schPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6262
6464
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
|
|
6263
6465
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
6264
|
-
grid: z.ZodOptional<z.ZodBoolean>;
|
|
6265
6466
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6266
6467
|
gridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6267
6468
|
gridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
6268
6469
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
6269
6470
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
6270
6471
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6271
|
-
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
6272
6472
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
6273
6473
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
6274
6474
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -6648,6 +6848,20 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6648
6848
|
schPaddingRight?: number | undefined;
|
|
6649
6849
|
schPaddingTop?: number | undefined;
|
|
6650
6850
|
schPaddingBottom?: number | undefined;
|
|
6851
|
+
pcbGrid?: boolean | undefined;
|
|
6852
|
+
pcbGridCols?: string | number | undefined;
|
|
6853
|
+
pcbGridRows?: string | number | undefined;
|
|
6854
|
+
pcbGridTemplateRows?: string | undefined;
|
|
6855
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
6856
|
+
pcbGridTemplate?: string | undefined;
|
|
6857
|
+
pcbGridGap?: string | number | undefined;
|
|
6858
|
+
pcbFlex?: string | boolean | undefined;
|
|
6859
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
6860
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6861
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6862
|
+
pcbFlexRow?: boolean | undefined;
|
|
6863
|
+
pcbFlexColumn?: boolean | undefined;
|
|
6864
|
+
pcbGap?: string | number | undefined;
|
|
6651
6865
|
manualEdits?: {
|
|
6652
6866
|
pcb_placements?: {
|
|
6653
6867
|
selector: string;
|
|
@@ -6836,6 +7050,20 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6836
7050
|
schPaddingRight?: string | number | undefined;
|
|
6837
7051
|
schPaddingTop?: string | number | undefined;
|
|
6838
7052
|
schPaddingBottom?: string | number | undefined;
|
|
7053
|
+
pcbGrid?: boolean | undefined;
|
|
7054
|
+
pcbGridCols?: string | number | undefined;
|
|
7055
|
+
pcbGridRows?: string | number | undefined;
|
|
7056
|
+
pcbGridTemplateRows?: string | undefined;
|
|
7057
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
7058
|
+
pcbGridTemplate?: string | undefined;
|
|
7059
|
+
pcbGridGap?: string | number | undefined;
|
|
7060
|
+
pcbFlex?: string | boolean | undefined;
|
|
7061
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
7062
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7063
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7064
|
+
pcbFlexRow?: boolean | undefined;
|
|
7065
|
+
pcbFlexColumn?: boolean | undefined;
|
|
7066
|
+
pcbGap?: string | number | undefined;
|
|
6839
7067
|
manualEdits?: {
|
|
6840
7068
|
pcb_placements?: {
|
|
6841
7069
|
selector: string;
|
|
@@ -6921,6 +7149,22 @@ declare const boardProps: z.ZodObject<{
|
|
|
6921
7149
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
6922
7150
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
6923
7151
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
7152
|
+
grid: z.ZodOptional<z.ZodBoolean>;
|
|
7153
|
+
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
7154
|
+
pcbGrid: z.ZodOptional<z.ZodBoolean>;
|
|
7155
|
+
pcbGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7156
|
+
pcbGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7157
|
+
pcbGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
7158
|
+
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
7159
|
+
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
7160
|
+
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7161
|
+
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
7162
|
+
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
7163
|
+
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
7164
|
+
pcbJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
7165
|
+
pcbFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
7166
|
+
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7167
|
+
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6924
7168
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6925
7169
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6926
7170
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7146,14 +7390,12 @@ declare const boardProps: z.ZodObject<{
|
|
|
7146
7390
|
schPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7147
7391
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
|
|
7148
7392
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
7149
|
-
grid: z.ZodOptional<z.ZodBoolean>;
|
|
7150
7393
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7151
7394
|
gridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7152
7395
|
gridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
7153
7396
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
7154
7397
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
7155
7398
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7156
|
-
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
7157
7399
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
7158
7400
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
7159
7401
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -7535,6 +7777,20 @@ declare const boardProps: z.ZodObject<{
|
|
|
7535
7777
|
schPaddingRight?: number | undefined;
|
|
7536
7778
|
schPaddingTop?: number | undefined;
|
|
7537
7779
|
schPaddingBottom?: number | undefined;
|
|
7780
|
+
pcbGrid?: boolean | undefined;
|
|
7781
|
+
pcbGridCols?: string | number | undefined;
|
|
7782
|
+
pcbGridRows?: string | number | undefined;
|
|
7783
|
+
pcbGridTemplateRows?: string | undefined;
|
|
7784
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
7785
|
+
pcbGridTemplate?: string | undefined;
|
|
7786
|
+
pcbGridGap?: string | number | undefined;
|
|
7787
|
+
pcbFlex?: string | boolean | undefined;
|
|
7788
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
7789
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7790
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7791
|
+
pcbFlexRow?: boolean | undefined;
|
|
7792
|
+
pcbFlexColumn?: boolean | undefined;
|
|
7793
|
+
pcbGap?: string | number | undefined;
|
|
7538
7794
|
manualEdits?: {
|
|
7539
7795
|
pcb_placements?: {
|
|
7540
7796
|
selector: string;
|
|
@@ -7722,6 +7978,20 @@ declare const boardProps: z.ZodObject<{
|
|
|
7722
7978
|
schPaddingRight?: string | number | undefined;
|
|
7723
7979
|
schPaddingTop?: string | number | undefined;
|
|
7724
7980
|
schPaddingBottom?: string | number | undefined;
|
|
7981
|
+
pcbGrid?: boolean | undefined;
|
|
7982
|
+
pcbGridCols?: string | number | undefined;
|
|
7983
|
+
pcbGridRows?: string | number | undefined;
|
|
7984
|
+
pcbGridTemplateRows?: string | undefined;
|
|
7985
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
7986
|
+
pcbGridTemplate?: string | undefined;
|
|
7987
|
+
pcbGridGap?: string | number | undefined;
|
|
7988
|
+
pcbFlex?: string | boolean | undefined;
|
|
7989
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
7990
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7991
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7992
|
+
pcbFlexRow?: boolean | undefined;
|
|
7993
|
+
pcbFlexColumn?: boolean | undefined;
|
|
7994
|
+
pcbGap?: string | number | undefined;
|
|
7725
7995
|
manualEdits?: {
|
|
7726
7996
|
pcb_placements?: {
|
|
7727
7997
|
selector: string;
|
|
@@ -7811,6 +8081,22 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7811
8081
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
7812
8082
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
7813
8083
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
8084
|
+
grid: z.ZodOptional<z.ZodBoolean>;
|
|
8085
|
+
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
8086
|
+
pcbGrid: z.ZodOptional<z.ZodBoolean>;
|
|
8087
|
+
pcbGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8088
|
+
pcbGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8089
|
+
pcbGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
8090
|
+
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
8091
|
+
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
8092
|
+
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8093
|
+
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
8094
|
+
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
8095
|
+
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
8096
|
+
pcbJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
8097
|
+
pcbFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
8098
|
+
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
8099
|
+
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7814
8100
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7815
8101
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7816
8102
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -8036,14 +8322,12 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8036
8322
|
schPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8037
8323
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
|
|
8038
8324
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
8039
|
-
grid: z.ZodOptional<z.ZodBoolean>;
|
|
8040
8325
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8041
8326
|
gridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8042
8327
|
gridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
8043
8328
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
8044
8329
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
8045
8330
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8046
|
-
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
8047
8331
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
8048
8332
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
8049
8333
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -8420,6 +8704,20 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8420
8704
|
schPaddingRight?: number | undefined;
|
|
8421
8705
|
schPaddingTop?: number | undefined;
|
|
8422
8706
|
schPaddingBottom?: number | undefined;
|
|
8707
|
+
pcbGrid?: boolean | undefined;
|
|
8708
|
+
pcbGridCols?: string | number | undefined;
|
|
8709
|
+
pcbGridRows?: string | number | undefined;
|
|
8710
|
+
pcbGridTemplateRows?: string | undefined;
|
|
8711
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
8712
|
+
pcbGridTemplate?: string | undefined;
|
|
8713
|
+
pcbGridGap?: string | number | undefined;
|
|
8714
|
+
pcbFlex?: string | boolean | undefined;
|
|
8715
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
8716
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8717
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
8718
|
+
pcbFlexRow?: boolean | undefined;
|
|
8719
|
+
pcbFlexColumn?: boolean | undefined;
|
|
8720
|
+
pcbGap?: string | number | undefined;
|
|
8423
8721
|
manualEdits?: {
|
|
8424
8722
|
pcb_placements?: {
|
|
8425
8723
|
selector: string;
|
|
@@ -8607,6 +8905,20 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8607
8905
|
schPaddingRight?: string | number | undefined;
|
|
8608
8906
|
schPaddingTop?: string | number | undefined;
|
|
8609
8907
|
schPaddingBottom?: string | number | undefined;
|
|
8908
|
+
pcbGrid?: boolean | undefined;
|
|
8909
|
+
pcbGridCols?: string | number | undefined;
|
|
8910
|
+
pcbGridRows?: string | number | undefined;
|
|
8911
|
+
pcbGridTemplateRows?: string | undefined;
|
|
8912
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
8913
|
+
pcbGridTemplate?: string | undefined;
|
|
8914
|
+
pcbGridGap?: string | number | undefined;
|
|
8915
|
+
pcbFlex?: string | boolean | undefined;
|
|
8916
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
8917
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8918
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
8919
|
+
pcbFlexRow?: boolean | undefined;
|
|
8920
|
+
pcbFlexColumn?: boolean | undefined;
|
|
8921
|
+
pcbGap?: string | number | undefined;
|
|
8610
8922
|
manualEdits?: {
|
|
8611
8923
|
pcb_placements?: {
|
|
8612
8924
|
selector: string;
|
|
@@ -15438,6 +15750,22 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15438
15750
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
15439
15751
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
15440
15752
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
15753
|
+
grid: z.ZodOptional<z.ZodBoolean>;
|
|
15754
|
+
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
15755
|
+
pcbGrid: z.ZodOptional<z.ZodBoolean>;
|
|
15756
|
+
pcbGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15757
|
+
pcbGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15758
|
+
pcbGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
15759
|
+
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
15760
|
+
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
15761
|
+
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15762
|
+
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
15763
|
+
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
15764
|
+
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
15765
|
+
pcbJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
15766
|
+
pcbFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
15767
|
+
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
15768
|
+
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15441
15769
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15442
15770
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15443
15771
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -15663,14 +15991,12 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15663
15991
|
schPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15664
15992
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
|
|
15665
15993
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
15666
|
-
grid: z.ZodOptional<z.ZodBoolean>;
|
|
15667
15994
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15668
15995
|
gridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15669
15996
|
gridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
15670
15997
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
15671
15998
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
15672
15999
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
15673
|
-
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
15674
16000
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
15675
16001
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
15676
16002
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -16067,6 +16393,20 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16067
16393
|
schPaddingRight?: number | undefined;
|
|
16068
16394
|
schPaddingTop?: number | undefined;
|
|
16069
16395
|
schPaddingBottom?: number | undefined;
|
|
16396
|
+
pcbGrid?: boolean | undefined;
|
|
16397
|
+
pcbGridCols?: string | number | undefined;
|
|
16398
|
+
pcbGridRows?: string | number | undefined;
|
|
16399
|
+
pcbGridTemplateRows?: string | undefined;
|
|
16400
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
16401
|
+
pcbGridTemplate?: string | undefined;
|
|
16402
|
+
pcbGridGap?: string | number | undefined;
|
|
16403
|
+
pcbFlex?: string | boolean | undefined;
|
|
16404
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
16405
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
16406
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
16407
|
+
pcbFlexRow?: boolean | undefined;
|
|
16408
|
+
pcbFlexColumn?: boolean | undefined;
|
|
16409
|
+
pcbGap?: string | number | undefined;
|
|
16070
16410
|
manualEdits?: {
|
|
16071
16411
|
pcb_placements?: {
|
|
16072
16412
|
selector: string;
|
|
@@ -16264,6 +16604,20 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16264
16604
|
schPaddingRight?: string | number | undefined;
|
|
16265
16605
|
schPaddingTop?: string | number | undefined;
|
|
16266
16606
|
schPaddingBottom?: string | number | undefined;
|
|
16607
|
+
pcbGrid?: boolean | undefined;
|
|
16608
|
+
pcbGridCols?: string | number | undefined;
|
|
16609
|
+
pcbGridRows?: string | number | undefined;
|
|
16610
|
+
pcbGridTemplateRows?: string | undefined;
|
|
16611
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
16612
|
+
pcbGridTemplate?: string | undefined;
|
|
16613
|
+
pcbGridGap?: string | number | undefined;
|
|
16614
|
+
pcbFlex?: string | boolean | undefined;
|
|
16615
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
16616
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
16617
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
16618
|
+
pcbFlexRow?: boolean | undefined;
|
|
16619
|
+
pcbFlexColumn?: boolean | undefined;
|
|
16620
|
+
pcbGap?: string | number | undefined;
|
|
16267
16621
|
manualEdits?: {
|
|
16268
16622
|
pcb_placements?: {
|
|
16269
16623
|
selector: string;
|
|
@@ -20471,6 +20825,22 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20471
20825
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
20472
20826
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
20473
20827
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
20828
|
+
grid: z.ZodOptional<z.ZodBoolean>;
|
|
20829
|
+
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
20830
|
+
pcbGrid: z.ZodOptional<z.ZodBoolean>;
|
|
20831
|
+
pcbGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20832
|
+
pcbGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20833
|
+
pcbGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
20834
|
+
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
20835
|
+
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
20836
|
+
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20837
|
+
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
20838
|
+
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
20839
|
+
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
20840
|
+
pcbJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
20841
|
+
pcbFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
20842
|
+
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
20843
|
+
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20474
20844
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20475
20845
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20476
20846
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -20696,14 +21066,12 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
20696
21066
|
schPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20697
21067
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
|
|
20698
21068
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
20699
|
-
grid: z.ZodOptional<z.ZodBoolean>;
|
|
20700
21069
|
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20701
21070
|
gridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20702
21071
|
gridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
20703
21072
|
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
20704
21073
|
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
20705
21074
|
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
20706
|
-
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
20707
21075
|
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
20708
21076
|
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
20709
21077
|
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
@@ -21080,6 +21448,20 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21080
21448
|
schPaddingRight?: number | undefined;
|
|
21081
21449
|
schPaddingTop?: number | undefined;
|
|
21082
21450
|
schPaddingBottom?: number | undefined;
|
|
21451
|
+
pcbGrid?: boolean | undefined;
|
|
21452
|
+
pcbGridCols?: string | number | undefined;
|
|
21453
|
+
pcbGridRows?: string | number | undefined;
|
|
21454
|
+
pcbGridTemplateRows?: string | undefined;
|
|
21455
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
21456
|
+
pcbGridTemplate?: string | undefined;
|
|
21457
|
+
pcbGridGap?: string | number | undefined;
|
|
21458
|
+
pcbFlex?: string | boolean | undefined;
|
|
21459
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
21460
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
21461
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
21462
|
+
pcbFlexRow?: boolean | undefined;
|
|
21463
|
+
pcbFlexColumn?: boolean | undefined;
|
|
21464
|
+
pcbGap?: string | number | undefined;
|
|
21083
21465
|
manualEdits?: {
|
|
21084
21466
|
pcb_placements?: {
|
|
21085
21467
|
selector: string;
|
|
@@ -21267,6 +21649,20 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21267
21649
|
schPaddingRight?: string | number | undefined;
|
|
21268
21650
|
schPaddingTop?: string | number | undefined;
|
|
21269
21651
|
schPaddingBottom?: string | number | undefined;
|
|
21652
|
+
pcbGrid?: boolean | undefined;
|
|
21653
|
+
pcbGridCols?: string | number | undefined;
|
|
21654
|
+
pcbGridRows?: string | number | undefined;
|
|
21655
|
+
pcbGridTemplateRows?: string | undefined;
|
|
21656
|
+
pcbGridTemplateColumns?: string | undefined;
|
|
21657
|
+
pcbGridTemplate?: string | undefined;
|
|
21658
|
+
pcbGridGap?: string | number | undefined;
|
|
21659
|
+
pcbFlex?: string | boolean | undefined;
|
|
21660
|
+
pcbFlexDirection?: "row" | "column" | undefined;
|
|
21661
|
+
pcbAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
21662
|
+
pcbJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
21663
|
+
pcbFlexRow?: boolean | undefined;
|
|
21664
|
+
pcbFlexColumn?: boolean | undefined;
|
|
21665
|
+
pcbGap?: string | number | undefined;
|
|
21270
21666
|
manualEdits?: {
|
|
21271
21667
|
pcb_placements?: {
|
|
21272
21668
|
selector: string;
|