@tscircuit/props 0.0.278 → 0.0.279
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 +28 -0
- package/dist/index.d.ts +532 -0
- package/dist/index.js +27 -0
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +59 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3086,6 +3086,25 @@ interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
|
|
|
3086
3086
|
pcbFlexColumn?: boolean;
|
|
3087
3087
|
pcbGap?: number | string;
|
|
3088
3088
|
pcbPack?: boolean;
|
|
3089
|
+
schGrid?: boolean;
|
|
3090
|
+
schGridCols?: number | string;
|
|
3091
|
+
schGridRows?: number | string;
|
|
3092
|
+
schGridTemplateRows?: string;
|
|
3093
|
+
schGridTemplateColumns?: string;
|
|
3094
|
+
schGridTemplate?: string;
|
|
3095
|
+
schGridGap?: number | string;
|
|
3096
|
+
schGridRowGap?: number | string;
|
|
3097
|
+
schGridColumnGap?: number | string;
|
|
3098
|
+
schFlex?: boolean | string;
|
|
3099
|
+
schFlexGap?: number | string;
|
|
3100
|
+
schFlexDirection?: "row" | "column";
|
|
3101
|
+
schAlignItems?: "start" | "center" | "end" | "stretch";
|
|
3102
|
+
schJustifyContent?: "start" | "center" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly";
|
|
3103
|
+
schFlexRow?: boolean;
|
|
3104
|
+
schFlexColumn?: boolean;
|
|
3105
|
+
schGap?: number | string;
|
|
3106
|
+
schPack?: boolean;
|
|
3107
|
+
schMatchAdapt?: boolean;
|
|
3089
3108
|
}
|
|
3090
3109
|
type PartsEngine = {
|
|
3091
3110
|
findPart: (params: {
|
|
@@ -3256,6 +3275,25 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3256
3275
|
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3257
3276
|
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3258
3277
|
pcbPack: z.ZodOptional<z.ZodBoolean>;
|
|
3278
|
+
schGrid: z.ZodOptional<z.ZodBoolean>;
|
|
3279
|
+
schGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3280
|
+
schGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3281
|
+
schGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
3282
|
+
schGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
3283
|
+
schGridTemplate: z.ZodOptional<z.ZodString>;
|
|
3284
|
+
schGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3285
|
+
schGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3286
|
+
schGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3287
|
+
schFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3288
|
+
schFlexGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3289
|
+
schFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3290
|
+
schAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3291
|
+
schJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
3292
|
+
schFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3293
|
+
schFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3294
|
+
schGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3295
|
+
schPack: z.ZodOptional<z.ZodBoolean>;
|
|
3296
|
+
schMatchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
3259
3297
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3260
3298
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3261
3299
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3688,6 +3726,25 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3688
3726
|
pcbFlexColumn?: boolean | undefined;
|
|
3689
3727
|
pcbGap?: string | number | undefined;
|
|
3690
3728
|
pcbPack?: boolean | undefined;
|
|
3729
|
+
schGrid?: boolean | undefined;
|
|
3730
|
+
schGridCols?: string | number | undefined;
|
|
3731
|
+
schGridRows?: string | number | undefined;
|
|
3732
|
+
schGridTemplateRows?: string | undefined;
|
|
3733
|
+
schGridTemplateColumns?: string | undefined;
|
|
3734
|
+
schGridTemplate?: string | undefined;
|
|
3735
|
+
schGridGap?: string | number | undefined;
|
|
3736
|
+
schGridRowGap?: string | number | undefined;
|
|
3737
|
+
schGridColumnGap?: string | number | undefined;
|
|
3738
|
+
schFlex?: string | boolean | undefined;
|
|
3739
|
+
schFlexGap?: string | number | undefined;
|
|
3740
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
3741
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3742
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3743
|
+
schFlexRow?: boolean | undefined;
|
|
3744
|
+
schFlexColumn?: boolean | undefined;
|
|
3745
|
+
schGap?: string | number | undefined;
|
|
3746
|
+
schPack?: boolean | undefined;
|
|
3747
|
+
schMatchAdapt?: boolean | undefined;
|
|
3691
3748
|
}, {
|
|
3692
3749
|
pcbX?: string | number | undefined;
|
|
3693
3750
|
pcbY?: string | number | undefined;
|
|
@@ -3848,6 +3905,25 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
3848
3905
|
pcbFlexColumn?: boolean | undefined;
|
|
3849
3906
|
pcbGap?: string | number | undefined;
|
|
3850
3907
|
pcbPack?: boolean | undefined;
|
|
3908
|
+
schGrid?: boolean | undefined;
|
|
3909
|
+
schGridCols?: string | number | undefined;
|
|
3910
|
+
schGridRows?: string | number | undefined;
|
|
3911
|
+
schGridTemplateRows?: string | undefined;
|
|
3912
|
+
schGridTemplateColumns?: string | undefined;
|
|
3913
|
+
schGridTemplate?: string | undefined;
|
|
3914
|
+
schGridGap?: string | number | undefined;
|
|
3915
|
+
schGridRowGap?: string | number | undefined;
|
|
3916
|
+
schGridColumnGap?: string | number | undefined;
|
|
3917
|
+
schFlex?: string | boolean | undefined;
|
|
3918
|
+
schFlexGap?: string | number | undefined;
|
|
3919
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
3920
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
3921
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
3922
|
+
schFlexRow?: boolean | undefined;
|
|
3923
|
+
schFlexColumn?: boolean | undefined;
|
|
3924
|
+
schGap?: string | number | undefined;
|
|
3925
|
+
schPack?: boolean | undefined;
|
|
3926
|
+
schMatchAdapt?: boolean | undefined;
|
|
3851
3927
|
}>;
|
|
3852
3928
|
declare const partsEngine: z.ZodType<PartsEngine, z.ZodTypeDef, PartsEngine>;
|
|
3853
3929
|
declare const subcircuitGroupProps: z.ZodObject<{
|
|
@@ -3890,6 +3966,25 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3890
3966
|
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3891
3967
|
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3892
3968
|
pcbPack: z.ZodOptional<z.ZodBoolean>;
|
|
3969
|
+
schGrid: z.ZodOptional<z.ZodBoolean>;
|
|
3970
|
+
schGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3971
|
+
schGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3972
|
+
schGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
3973
|
+
schGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
3974
|
+
schGridTemplate: z.ZodOptional<z.ZodString>;
|
|
3975
|
+
schGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3976
|
+
schGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3977
|
+
schGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3978
|
+
schFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
3979
|
+
schFlexGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3980
|
+
schFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
3981
|
+
schAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
3982
|
+
schJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
3983
|
+
schFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
3984
|
+
schFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
3985
|
+
schGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
3986
|
+
schPack: z.ZodOptional<z.ZodBoolean>;
|
|
3987
|
+
schMatchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
3893
3988
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3894
3989
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3895
3990
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -4545,6 +4640,25 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4545
4640
|
pcbFlexColumn?: boolean | undefined;
|
|
4546
4641
|
pcbGap?: string | number | undefined;
|
|
4547
4642
|
pcbPack?: boolean | undefined;
|
|
4643
|
+
schGrid?: boolean | undefined;
|
|
4644
|
+
schGridCols?: string | number | undefined;
|
|
4645
|
+
schGridRows?: string | number | undefined;
|
|
4646
|
+
schGridTemplateRows?: string | undefined;
|
|
4647
|
+
schGridTemplateColumns?: string | undefined;
|
|
4648
|
+
schGridTemplate?: string | undefined;
|
|
4649
|
+
schGridGap?: string | number | undefined;
|
|
4650
|
+
schGridRowGap?: string | number | undefined;
|
|
4651
|
+
schGridColumnGap?: string | number | undefined;
|
|
4652
|
+
schFlex?: string | boolean | undefined;
|
|
4653
|
+
schFlexGap?: string | number | undefined;
|
|
4654
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
4655
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4656
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4657
|
+
schFlexRow?: boolean | undefined;
|
|
4658
|
+
schFlexColumn?: boolean | undefined;
|
|
4659
|
+
schGap?: string | number | undefined;
|
|
4660
|
+
schPack?: boolean | undefined;
|
|
4661
|
+
schMatchAdapt?: boolean | undefined;
|
|
4548
4662
|
manualEdits?: {
|
|
4549
4663
|
pcb_placements?: {
|
|
4550
4664
|
selector: string;
|
|
@@ -4761,6 +4875,25 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4761
4875
|
pcbFlexColumn?: boolean | undefined;
|
|
4762
4876
|
pcbGap?: string | number | undefined;
|
|
4763
4877
|
pcbPack?: boolean | undefined;
|
|
4878
|
+
schGrid?: boolean | undefined;
|
|
4879
|
+
schGridCols?: string | number | undefined;
|
|
4880
|
+
schGridRows?: string | number | undefined;
|
|
4881
|
+
schGridTemplateRows?: string | undefined;
|
|
4882
|
+
schGridTemplateColumns?: string | undefined;
|
|
4883
|
+
schGridTemplate?: string | undefined;
|
|
4884
|
+
schGridGap?: string | number | undefined;
|
|
4885
|
+
schGridRowGap?: string | number | undefined;
|
|
4886
|
+
schGridColumnGap?: string | number | undefined;
|
|
4887
|
+
schFlex?: string | boolean | undefined;
|
|
4888
|
+
schFlexGap?: string | number | undefined;
|
|
4889
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
4890
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
4891
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
4892
|
+
schFlexRow?: boolean | undefined;
|
|
4893
|
+
schFlexColumn?: boolean | undefined;
|
|
4894
|
+
schGap?: string | number | undefined;
|
|
4895
|
+
schPack?: boolean | undefined;
|
|
4896
|
+
schMatchAdapt?: boolean | undefined;
|
|
4764
4897
|
manualEdits?: {
|
|
4765
4898
|
pcb_placements?: {
|
|
4766
4899
|
selector: string;
|
|
@@ -4860,6 +4993,25 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4860
4993
|
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
4861
4994
|
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4862
4995
|
pcbPack: z.ZodOptional<z.ZodBoolean>;
|
|
4996
|
+
schGrid: z.ZodOptional<z.ZodBoolean>;
|
|
4997
|
+
schGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4998
|
+
schGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
4999
|
+
schGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
5000
|
+
schGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
5001
|
+
schGridTemplate: z.ZodOptional<z.ZodString>;
|
|
5002
|
+
schGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5003
|
+
schGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5004
|
+
schGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5005
|
+
schFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
5006
|
+
schFlexGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5007
|
+
schFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
5008
|
+
schAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
5009
|
+
schJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
5010
|
+
schFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
5011
|
+
schFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5012
|
+
schGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5013
|
+
schPack: z.ZodOptional<z.ZodBoolean>;
|
|
5014
|
+
schMatchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
4863
5015
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4864
5016
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4865
5017
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5518,6 +5670,25 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5518
5670
|
pcbFlexColumn?: boolean | undefined;
|
|
5519
5671
|
pcbGap?: string | number | undefined;
|
|
5520
5672
|
pcbPack?: boolean | undefined;
|
|
5673
|
+
schGrid?: boolean | undefined;
|
|
5674
|
+
schGridCols?: string | number | undefined;
|
|
5675
|
+
schGridRows?: string | number | undefined;
|
|
5676
|
+
schGridTemplateRows?: string | undefined;
|
|
5677
|
+
schGridTemplateColumns?: string | undefined;
|
|
5678
|
+
schGridTemplate?: string | undefined;
|
|
5679
|
+
schGridGap?: string | number | undefined;
|
|
5680
|
+
schGridRowGap?: string | number | undefined;
|
|
5681
|
+
schGridColumnGap?: string | number | undefined;
|
|
5682
|
+
schFlex?: string | boolean | undefined;
|
|
5683
|
+
schFlexGap?: string | number | undefined;
|
|
5684
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
5685
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5686
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5687
|
+
schFlexRow?: boolean | undefined;
|
|
5688
|
+
schFlexColumn?: boolean | undefined;
|
|
5689
|
+
schGap?: string | number | undefined;
|
|
5690
|
+
schPack?: boolean | undefined;
|
|
5691
|
+
schMatchAdapt?: boolean | undefined;
|
|
5521
5692
|
manualEdits?: {
|
|
5522
5693
|
pcb_placements?: {
|
|
5523
5694
|
selector: string;
|
|
@@ -5735,6 +5906,25 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5735
5906
|
pcbFlexColumn?: boolean | undefined;
|
|
5736
5907
|
pcbGap?: string | number | undefined;
|
|
5737
5908
|
pcbPack?: boolean | undefined;
|
|
5909
|
+
schGrid?: boolean | undefined;
|
|
5910
|
+
schGridCols?: string | number | undefined;
|
|
5911
|
+
schGridRows?: string | number | undefined;
|
|
5912
|
+
schGridTemplateRows?: string | undefined;
|
|
5913
|
+
schGridTemplateColumns?: string | undefined;
|
|
5914
|
+
schGridTemplate?: string | undefined;
|
|
5915
|
+
schGridGap?: string | number | undefined;
|
|
5916
|
+
schGridRowGap?: string | number | undefined;
|
|
5917
|
+
schGridColumnGap?: string | number | undefined;
|
|
5918
|
+
schFlex?: string | boolean | undefined;
|
|
5919
|
+
schFlexGap?: string | number | undefined;
|
|
5920
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
5921
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
5922
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
5923
|
+
schFlexRow?: boolean | undefined;
|
|
5924
|
+
schFlexColumn?: boolean | undefined;
|
|
5925
|
+
schGap?: string | number | undefined;
|
|
5926
|
+
schPack?: boolean | undefined;
|
|
5927
|
+
schMatchAdapt?: boolean | undefined;
|
|
5738
5928
|
manualEdits?: {
|
|
5739
5929
|
pcb_placements?: {
|
|
5740
5930
|
selector: string;
|
|
@@ -5835,6 +6025,25 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5835
6025
|
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
5836
6026
|
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
5837
6027
|
pcbPack: z.ZodOptional<z.ZodBoolean>;
|
|
6028
|
+
schGrid: z.ZodOptional<z.ZodBoolean>;
|
|
6029
|
+
schGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6030
|
+
schGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6031
|
+
schGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
6032
|
+
schGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
6033
|
+
schGridTemplate: z.ZodOptional<z.ZodString>;
|
|
6034
|
+
schGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6035
|
+
schGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6036
|
+
schGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6037
|
+
schFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
6038
|
+
schFlexGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6039
|
+
schFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
6040
|
+
schAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
6041
|
+
schJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
6042
|
+
schFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
6043
|
+
schFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
6044
|
+
schGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6045
|
+
schPack: z.ZodOptional<z.ZodBoolean>;
|
|
6046
|
+
schMatchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
5838
6047
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5839
6048
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5840
6049
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6269,6 +6478,25 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6269
6478
|
pcbFlexColumn?: boolean | undefined;
|
|
6270
6479
|
pcbGap?: string | number | undefined;
|
|
6271
6480
|
pcbPack?: boolean | undefined;
|
|
6481
|
+
schGrid?: boolean | undefined;
|
|
6482
|
+
schGridCols?: string | number | undefined;
|
|
6483
|
+
schGridRows?: string | number | undefined;
|
|
6484
|
+
schGridTemplateRows?: string | undefined;
|
|
6485
|
+
schGridTemplateColumns?: string | undefined;
|
|
6486
|
+
schGridTemplate?: string | undefined;
|
|
6487
|
+
schGridGap?: string | number | undefined;
|
|
6488
|
+
schGridRowGap?: string | number | undefined;
|
|
6489
|
+
schGridColumnGap?: string | number | undefined;
|
|
6490
|
+
schFlex?: string | boolean | undefined;
|
|
6491
|
+
schFlexGap?: string | number | undefined;
|
|
6492
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
6493
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6494
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6495
|
+
schFlexRow?: boolean | undefined;
|
|
6496
|
+
schFlexColumn?: boolean | undefined;
|
|
6497
|
+
schGap?: string | number | undefined;
|
|
6498
|
+
schPack?: boolean | undefined;
|
|
6499
|
+
schMatchAdapt?: boolean | undefined;
|
|
6272
6500
|
subcircuit?: false | undefined;
|
|
6273
6501
|
}, {
|
|
6274
6502
|
pcbX?: string | number | undefined;
|
|
@@ -6430,6 +6658,25 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6430
6658
|
pcbFlexColumn?: boolean | undefined;
|
|
6431
6659
|
pcbGap?: string | number | undefined;
|
|
6432
6660
|
pcbPack?: boolean | undefined;
|
|
6661
|
+
schGrid?: boolean | undefined;
|
|
6662
|
+
schGridCols?: string | number | undefined;
|
|
6663
|
+
schGridRows?: string | number | undefined;
|
|
6664
|
+
schGridTemplateRows?: string | undefined;
|
|
6665
|
+
schGridTemplateColumns?: string | undefined;
|
|
6666
|
+
schGridTemplate?: string | undefined;
|
|
6667
|
+
schGridGap?: string | number | undefined;
|
|
6668
|
+
schGridRowGap?: string | number | undefined;
|
|
6669
|
+
schGridColumnGap?: string | number | undefined;
|
|
6670
|
+
schFlex?: string | boolean | undefined;
|
|
6671
|
+
schFlexGap?: string | number | undefined;
|
|
6672
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
6673
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
6674
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
6675
|
+
schFlexRow?: boolean | undefined;
|
|
6676
|
+
schFlexColumn?: boolean | undefined;
|
|
6677
|
+
schGap?: string | number | undefined;
|
|
6678
|
+
schPack?: boolean | undefined;
|
|
6679
|
+
schMatchAdapt?: boolean | undefined;
|
|
6433
6680
|
subcircuit?: false | undefined;
|
|
6434
6681
|
}>, z.ZodObject<{
|
|
6435
6682
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6471,6 +6718,25 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6471
6718
|
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
6472
6719
|
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6473
6720
|
pcbPack: z.ZodOptional<z.ZodBoolean>;
|
|
6721
|
+
schGrid: z.ZodOptional<z.ZodBoolean>;
|
|
6722
|
+
schGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6723
|
+
schGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6724
|
+
schGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
6725
|
+
schGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
6726
|
+
schGridTemplate: z.ZodOptional<z.ZodString>;
|
|
6727
|
+
schGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6728
|
+
schGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6729
|
+
schGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6730
|
+
schFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
6731
|
+
schFlexGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6732
|
+
schFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
6733
|
+
schAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
6734
|
+
schJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
6735
|
+
schFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
6736
|
+
schFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
6737
|
+
schGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
6738
|
+
schPack: z.ZodOptional<z.ZodBoolean>;
|
|
6739
|
+
schMatchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
6474
6740
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6475
6741
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6476
6742
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7129,6 +7395,25 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
7129
7395
|
pcbFlexColumn?: boolean | undefined;
|
|
7130
7396
|
pcbGap?: string | number | undefined;
|
|
7131
7397
|
pcbPack?: boolean | undefined;
|
|
7398
|
+
schGrid?: boolean | undefined;
|
|
7399
|
+
schGridCols?: string | number | undefined;
|
|
7400
|
+
schGridRows?: string | number | undefined;
|
|
7401
|
+
schGridTemplateRows?: string | undefined;
|
|
7402
|
+
schGridTemplateColumns?: string | undefined;
|
|
7403
|
+
schGridTemplate?: string | undefined;
|
|
7404
|
+
schGridGap?: string | number | undefined;
|
|
7405
|
+
schGridRowGap?: string | number | undefined;
|
|
7406
|
+
schGridColumnGap?: string | number | undefined;
|
|
7407
|
+
schFlex?: string | boolean | undefined;
|
|
7408
|
+
schFlexGap?: string | number | undefined;
|
|
7409
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
7410
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7411
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7412
|
+
schFlexRow?: boolean | undefined;
|
|
7413
|
+
schFlexColumn?: boolean | undefined;
|
|
7414
|
+
schGap?: string | number | undefined;
|
|
7415
|
+
schPack?: boolean | undefined;
|
|
7416
|
+
schMatchAdapt?: boolean | undefined;
|
|
7132
7417
|
manualEdits?: {
|
|
7133
7418
|
pcb_placements?: {
|
|
7134
7419
|
selector: string;
|
|
@@ -7346,6 +7631,25 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
7346
7631
|
pcbFlexColumn?: boolean | undefined;
|
|
7347
7632
|
pcbGap?: string | number | undefined;
|
|
7348
7633
|
pcbPack?: boolean | undefined;
|
|
7634
|
+
schGrid?: boolean | undefined;
|
|
7635
|
+
schGridCols?: string | number | undefined;
|
|
7636
|
+
schGridRows?: string | number | undefined;
|
|
7637
|
+
schGridTemplateRows?: string | undefined;
|
|
7638
|
+
schGridTemplateColumns?: string | undefined;
|
|
7639
|
+
schGridTemplate?: string | undefined;
|
|
7640
|
+
schGridGap?: string | number | undefined;
|
|
7641
|
+
schGridRowGap?: string | number | undefined;
|
|
7642
|
+
schGridColumnGap?: string | number | undefined;
|
|
7643
|
+
schFlex?: string | boolean | undefined;
|
|
7644
|
+
schFlexGap?: string | number | undefined;
|
|
7645
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
7646
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
7647
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
7648
|
+
schFlexRow?: boolean | undefined;
|
|
7649
|
+
schFlexColumn?: boolean | undefined;
|
|
7650
|
+
schGap?: string | number | undefined;
|
|
7651
|
+
schPack?: boolean | undefined;
|
|
7652
|
+
schMatchAdapt?: boolean | undefined;
|
|
7349
7653
|
manualEdits?: {
|
|
7350
7654
|
pcb_placements?: {
|
|
7351
7655
|
selector: string;
|
|
@@ -7451,6 +7755,25 @@ declare const boardProps: z.ZodObject<{
|
|
|
7451
7755
|
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7452
7756
|
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7453
7757
|
pcbPack: z.ZodOptional<z.ZodBoolean>;
|
|
7758
|
+
schGrid: z.ZodOptional<z.ZodBoolean>;
|
|
7759
|
+
schGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7760
|
+
schGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7761
|
+
schGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
7762
|
+
schGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
7763
|
+
schGridTemplate: z.ZodOptional<z.ZodString>;
|
|
7764
|
+
schGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7765
|
+
schGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7766
|
+
schGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7767
|
+
schFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
7768
|
+
schFlexGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7769
|
+
schFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
7770
|
+
schAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
7771
|
+
schJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
7772
|
+
schFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
7773
|
+
schFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
7774
|
+
schGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7775
|
+
schPack: z.ZodOptional<z.ZodBoolean>;
|
|
7776
|
+
schMatchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
7454
7777
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7455
7778
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7456
7779
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -8111,6 +8434,25 @@ declare const boardProps: z.ZodObject<{
|
|
|
8111
8434
|
pcbFlexColumn?: boolean | undefined;
|
|
8112
8435
|
pcbGap?: string | number | undefined;
|
|
8113
8436
|
pcbPack?: boolean | undefined;
|
|
8437
|
+
schGrid?: boolean | undefined;
|
|
8438
|
+
schGridCols?: string | number | undefined;
|
|
8439
|
+
schGridRows?: string | number | undefined;
|
|
8440
|
+
schGridTemplateRows?: string | undefined;
|
|
8441
|
+
schGridTemplateColumns?: string | undefined;
|
|
8442
|
+
schGridTemplate?: string | undefined;
|
|
8443
|
+
schGridGap?: string | number | undefined;
|
|
8444
|
+
schGridRowGap?: string | number | undefined;
|
|
8445
|
+
schGridColumnGap?: string | number | undefined;
|
|
8446
|
+
schFlex?: string | boolean | undefined;
|
|
8447
|
+
schFlexGap?: string | number | undefined;
|
|
8448
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
8449
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8450
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
8451
|
+
schFlexRow?: boolean | undefined;
|
|
8452
|
+
schFlexColumn?: boolean | undefined;
|
|
8453
|
+
schGap?: string | number | undefined;
|
|
8454
|
+
schPack?: boolean | undefined;
|
|
8455
|
+
schMatchAdapt?: boolean | undefined;
|
|
8114
8456
|
manualEdits?: {
|
|
8115
8457
|
pcb_placements?: {
|
|
8116
8458
|
selector: string;
|
|
@@ -8327,6 +8669,25 @@ declare const boardProps: z.ZodObject<{
|
|
|
8327
8669
|
pcbFlexColumn?: boolean | undefined;
|
|
8328
8670
|
pcbGap?: string | number | undefined;
|
|
8329
8671
|
pcbPack?: boolean | undefined;
|
|
8672
|
+
schGrid?: boolean | undefined;
|
|
8673
|
+
schGridCols?: string | number | undefined;
|
|
8674
|
+
schGridRows?: string | number | undefined;
|
|
8675
|
+
schGridTemplateRows?: string | undefined;
|
|
8676
|
+
schGridTemplateColumns?: string | undefined;
|
|
8677
|
+
schGridTemplate?: string | undefined;
|
|
8678
|
+
schGridGap?: string | number | undefined;
|
|
8679
|
+
schGridRowGap?: string | number | undefined;
|
|
8680
|
+
schGridColumnGap?: string | number | undefined;
|
|
8681
|
+
schFlex?: string | boolean | undefined;
|
|
8682
|
+
schFlexGap?: string | number | undefined;
|
|
8683
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
8684
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
8685
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
8686
|
+
schFlexRow?: boolean | undefined;
|
|
8687
|
+
schFlexColumn?: boolean | undefined;
|
|
8688
|
+
schGap?: string | number | undefined;
|
|
8689
|
+
schPack?: boolean | undefined;
|
|
8690
|
+
schMatchAdapt?: boolean | undefined;
|
|
8330
8691
|
manualEdits?: {
|
|
8331
8692
|
pcb_placements?: {
|
|
8332
8693
|
selector: string;
|
|
@@ -8436,6 +8797,25 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8436
8797
|
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
8437
8798
|
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8438
8799
|
pcbPack: z.ZodOptional<z.ZodBoolean>;
|
|
8800
|
+
schGrid: z.ZodOptional<z.ZodBoolean>;
|
|
8801
|
+
schGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8802
|
+
schGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8803
|
+
schGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
8804
|
+
schGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
8805
|
+
schGridTemplate: z.ZodOptional<z.ZodString>;
|
|
8806
|
+
schGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8807
|
+
schGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8808
|
+
schGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8809
|
+
schFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
8810
|
+
schFlexGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8811
|
+
schFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
8812
|
+
schAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
8813
|
+
schJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
8814
|
+
schFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
8815
|
+
schFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
8816
|
+
schGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
8817
|
+
schPack: z.ZodOptional<z.ZodBoolean>;
|
|
8818
|
+
schMatchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
8439
8819
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8440
8820
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8441
8821
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -9091,6 +9471,25 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
9091
9471
|
pcbFlexColumn?: boolean | undefined;
|
|
9092
9472
|
pcbGap?: string | number | undefined;
|
|
9093
9473
|
pcbPack?: boolean | undefined;
|
|
9474
|
+
schGrid?: boolean | undefined;
|
|
9475
|
+
schGridCols?: string | number | undefined;
|
|
9476
|
+
schGridRows?: string | number | undefined;
|
|
9477
|
+
schGridTemplateRows?: string | undefined;
|
|
9478
|
+
schGridTemplateColumns?: string | undefined;
|
|
9479
|
+
schGridTemplate?: string | undefined;
|
|
9480
|
+
schGridGap?: string | number | undefined;
|
|
9481
|
+
schGridRowGap?: string | number | undefined;
|
|
9482
|
+
schGridColumnGap?: string | number | undefined;
|
|
9483
|
+
schFlex?: string | boolean | undefined;
|
|
9484
|
+
schFlexGap?: string | number | undefined;
|
|
9485
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
9486
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
9487
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
9488
|
+
schFlexRow?: boolean | undefined;
|
|
9489
|
+
schFlexColumn?: boolean | undefined;
|
|
9490
|
+
schGap?: string | number | undefined;
|
|
9491
|
+
schPack?: boolean | undefined;
|
|
9492
|
+
schMatchAdapt?: boolean | undefined;
|
|
9094
9493
|
manualEdits?: {
|
|
9095
9494
|
pcb_placements?: {
|
|
9096
9495
|
selector: string;
|
|
@@ -9307,6 +9706,25 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
9307
9706
|
pcbFlexColumn?: boolean | undefined;
|
|
9308
9707
|
pcbGap?: string | number | undefined;
|
|
9309
9708
|
pcbPack?: boolean | undefined;
|
|
9709
|
+
schGrid?: boolean | undefined;
|
|
9710
|
+
schGridCols?: string | number | undefined;
|
|
9711
|
+
schGridRows?: string | number | undefined;
|
|
9712
|
+
schGridTemplateRows?: string | undefined;
|
|
9713
|
+
schGridTemplateColumns?: string | undefined;
|
|
9714
|
+
schGridTemplate?: string | undefined;
|
|
9715
|
+
schGridGap?: string | number | undefined;
|
|
9716
|
+
schGridRowGap?: string | number | undefined;
|
|
9717
|
+
schGridColumnGap?: string | number | undefined;
|
|
9718
|
+
schFlex?: string | boolean | undefined;
|
|
9719
|
+
schFlexGap?: string | number | undefined;
|
|
9720
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
9721
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
9722
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
9723
|
+
schFlexRow?: boolean | undefined;
|
|
9724
|
+
schFlexColumn?: boolean | undefined;
|
|
9725
|
+
schGap?: string | number | undefined;
|
|
9726
|
+
schPack?: boolean | undefined;
|
|
9727
|
+
schMatchAdapt?: boolean | undefined;
|
|
9310
9728
|
manualEdits?: {
|
|
9311
9729
|
pcb_placements?: {
|
|
9312
9730
|
selector: string;
|
|
@@ -16172,6 +16590,25 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16172
16590
|
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
16173
16591
|
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
16174
16592
|
pcbPack: z.ZodOptional<z.ZodBoolean>;
|
|
16593
|
+
schGrid: z.ZodOptional<z.ZodBoolean>;
|
|
16594
|
+
schGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
16595
|
+
schGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
16596
|
+
schGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
16597
|
+
schGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
16598
|
+
schGridTemplate: z.ZodOptional<z.ZodString>;
|
|
16599
|
+
schGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
16600
|
+
schGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
16601
|
+
schGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
16602
|
+
schFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
16603
|
+
schFlexGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
16604
|
+
schFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
16605
|
+
schAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
16606
|
+
schJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
16607
|
+
schFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
16608
|
+
schFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
16609
|
+
schGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
16610
|
+
schPack: z.ZodOptional<z.ZodBoolean>;
|
|
16611
|
+
schMatchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
16175
16612
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16176
16613
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16177
16614
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -16847,6 +17284,25 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
16847
17284
|
pcbFlexColumn?: boolean | undefined;
|
|
16848
17285
|
pcbGap?: string | number | undefined;
|
|
16849
17286
|
pcbPack?: boolean | undefined;
|
|
17287
|
+
schGrid?: boolean | undefined;
|
|
17288
|
+
schGridCols?: string | number | undefined;
|
|
17289
|
+
schGridRows?: string | number | undefined;
|
|
17290
|
+
schGridTemplateRows?: string | undefined;
|
|
17291
|
+
schGridTemplateColumns?: string | undefined;
|
|
17292
|
+
schGridTemplate?: string | undefined;
|
|
17293
|
+
schGridGap?: string | number | undefined;
|
|
17294
|
+
schGridRowGap?: string | number | undefined;
|
|
17295
|
+
schGridColumnGap?: string | number | undefined;
|
|
17296
|
+
schFlex?: string | boolean | undefined;
|
|
17297
|
+
schFlexGap?: string | number | undefined;
|
|
17298
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
17299
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
17300
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
17301
|
+
schFlexRow?: boolean | undefined;
|
|
17302
|
+
schFlexColumn?: boolean | undefined;
|
|
17303
|
+
schGap?: string | number | undefined;
|
|
17304
|
+
schPack?: boolean | undefined;
|
|
17305
|
+
schMatchAdapt?: boolean | undefined;
|
|
16850
17306
|
manualEdits?: {
|
|
16851
17307
|
pcb_placements?: {
|
|
16852
17308
|
selector: string;
|
|
@@ -17073,6 +17529,25 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
17073
17529
|
pcbFlexColumn?: boolean | undefined;
|
|
17074
17530
|
pcbGap?: string | number | undefined;
|
|
17075
17531
|
pcbPack?: boolean | undefined;
|
|
17532
|
+
schGrid?: boolean | undefined;
|
|
17533
|
+
schGridCols?: string | number | undefined;
|
|
17534
|
+
schGridRows?: string | number | undefined;
|
|
17535
|
+
schGridTemplateRows?: string | undefined;
|
|
17536
|
+
schGridTemplateColumns?: string | undefined;
|
|
17537
|
+
schGridTemplate?: string | undefined;
|
|
17538
|
+
schGridGap?: string | number | undefined;
|
|
17539
|
+
schGridRowGap?: string | number | undefined;
|
|
17540
|
+
schGridColumnGap?: string | number | undefined;
|
|
17541
|
+
schFlex?: string | boolean | undefined;
|
|
17542
|
+
schFlexGap?: string | number | undefined;
|
|
17543
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
17544
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
17545
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
17546
|
+
schFlexRow?: boolean | undefined;
|
|
17547
|
+
schFlexColumn?: boolean | undefined;
|
|
17548
|
+
schGap?: string | number | undefined;
|
|
17549
|
+
schPack?: boolean | undefined;
|
|
17550
|
+
schMatchAdapt?: boolean | undefined;
|
|
17076
17551
|
manualEdits?: {
|
|
17077
17552
|
pcb_placements?: {
|
|
17078
17553
|
selector: string;
|
|
@@ -21307,6 +21782,25 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21307
21782
|
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
21308
21783
|
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21309
21784
|
pcbPack: z.ZodOptional<z.ZodBoolean>;
|
|
21785
|
+
schGrid: z.ZodOptional<z.ZodBoolean>;
|
|
21786
|
+
schGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21787
|
+
schGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21788
|
+
schGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
21789
|
+
schGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
21790
|
+
schGridTemplate: z.ZodOptional<z.ZodString>;
|
|
21791
|
+
schGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21792
|
+
schGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21793
|
+
schGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21794
|
+
schFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
21795
|
+
schFlexGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21796
|
+
schFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
21797
|
+
schAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
21798
|
+
schJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
21799
|
+
schFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
21800
|
+
schFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
21801
|
+
schGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
21802
|
+
schPack: z.ZodOptional<z.ZodBoolean>;
|
|
21803
|
+
schMatchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
21310
21804
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21311
21805
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21312
21806
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -21962,6 +22456,25 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
21962
22456
|
pcbFlexColumn?: boolean | undefined;
|
|
21963
22457
|
pcbGap?: string | number | undefined;
|
|
21964
22458
|
pcbPack?: boolean | undefined;
|
|
22459
|
+
schGrid?: boolean | undefined;
|
|
22460
|
+
schGridCols?: string | number | undefined;
|
|
22461
|
+
schGridRows?: string | number | undefined;
|
|
22462
|
+
schGridTemplateRows?: string | undefined;
|
|
22463
|
+
schGridTemplateColumns?: string | undefined;
|
|
22464
|
+
schGridTemplate?: string | undefined;
|
|
22465
|
+
schGridGap?: string | number | undefined;
|
|
22466
|
+
schGridRowGap?: string | number | undefined;
|
|
22467
|
+
schGridColumnGap?: string | number | undefined;
|
|
22468
|
+
schFlex?: string | boolean | undefined;
|
|
22469
|
+
schFlexGap?: string | number | undefined;
|
|
22470
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
22471
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
22472
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
22473
|
+
schFlexRow?: boolean | undefined;
|
|
22474
|
+
schFlexColumn?: boolean | undefined;
|
|
22475
|
+
schGap?: string | number | undefined;
|
|
22476
|
+
schPack?: boolean | undefined;
|
|
22477
|
+
schMatchAdapt?: boolean | undefined;
|
|
21965
22478
|
manualEdits?: {
|
|
21966
22479
|
pcb_placements?: {
|
|
21967
22480
|
selector: string;
|
|
@@ -22178,6 +22691,25 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
22178
22691
|
pcbFlexColumn?: boolean | undefined;
|
|
22179
22692
|
pcbGap?: string | number | undefined;
|
|
22180
22693
|
pcbPack?: boolean | undefined;
|
|
22694
|
+
schGrid?: boolean | undefined;
|
|
22695
|
+
schGridCols?: string | number | undefined;
|
|
22696
|
+
schGridRows?: string | number | undefined;
|
|
22697
|
+
schGridTemplateRows?: string | undefined;
|
|
22698
|
+
schGridTemplateColumns?: string | undefined;
|
|
22699
|
+
schGridTemplate?: string | undefined;
|
|
22700
|
+
schGridGap?: string | number | undefined;
|
|
22701
|
+
schGridRowGap?: string | number | undefined;
|
|
22702
|
+
schGridColumnGap?: string | number | undefined;
|
|
22703
|
+
schFlex?: string | boolean | undefined;
|
|
22704
|
+
schFlexGap?: string | number | undefined;
|
|
22705
|
+
schFlexDirection?: "row" | "column" | undefined;
|
|
22706
|
+
schAlignItems?: "center" | "start" | "end" | "stretch" | undefined;
|
|
22707
|
+
schJustifyContent?: "center" | "start" | "end" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
22708
|
+
schFlexRow?: boolean | undefined;
|
|
22709
|
+
schFlexColumn?: boolean | undefined;
|
|
22710
|
+
schGap?: string | number | undefined;
|
|
22711
|
+
schPack?: boolean | undefined;
|
|
22712
|
+
schMatchAdapt?: boolean | undefined;
|
|
22181
22713
|
manualEdits?: {
|
|
22182
22714
|
pcb_placements?: {
|
|
22183
22715
|
selector: string;
|