@tscircuit/props 0.0.248 → 0.0.250
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 +48 -0
- package/dist/index.d.ts +118 -3
- package/dist/index.js +102 -58
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +15 -0
- package/lib/components/schematic-cell.ts +19 -0
- package/lib/components/schematic-row.ts +15 -0
- package/lib/components/schematic-table.ts +26 -0
- package/lib/index.ts +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -45,6 +45,9 @@ resistorProps.parse({ resistance: "10k" } as ResistorPropsInput)
|
|
|
45
45
|
| `<potentiometer />` | [`PotentiometerProps`](#potentiometerprops-potentiometer) |
|
|
46
46
|
| `<resistor />` | [`ResistorProps`](#resistorprops-resistor) |
|
|
47
47
|
| `<resonator />` | [`ResonatorProps`](#resonatorprops-resonator) |
|
|
48
|
+
| `<schematiccell />` | [`SchematicCellProps`](#schematiccellprops-schematiccell) |
|
|
49
|
+
| `<schematicrow />` | [`SchematicRowProps`](#schematicrowprops-schematicrow) |
|
|
50
|
+
| `<schematictable />` | [`SchematicTableProps`](#schematictableprops-schematictable) |
|
|
48
51
|
| `<smtpad />` | [`RectSmtPadProps`](#rectsmtpadprops-smtpad) |
|
|
49
52
|
| `<solderjumper />` | [`SolderJumperProps`](#solderjumperprops-solderjumper) |
|
|
50
53
|
| `<solderpaste />` | [`RectSolderPasteProps`](#rectsolderpasteprops-solderpaste) |
|
|
@@ -684,6 +687,51 @@ export interface ResonatorProps extends CommonComponentProps {
|
|
|
684
687
|
[Source](https://github.com/tscircuit/props/blob/main/lib/components/resonator.ts)
|
|
685
688
|
|
|
686
689
|
|
|
690
|
+
### SchematicCellProps `<schematiccell />`
|
|
691
|
+
|
|
692
|
+
```ts
|
|
693
|
+
export interface SchematicCellProps {
|
|
694
|
+
children: string
|
|
695
|
+
horizontalAlign?: "left" | "center" | "right"
|
|
696
|
+
verticalAlign?: "top" | "middle" | "bottom"
|
|
697
|
+
fontSize?: number | string
|
|
698
|
+
}
|
|
699
|
+
```
|
|
700
|
+
|
|
701
|
+
[Source](https://github.com/tscircuit/props/blob/main/lib/components/schematic-cell.ts)
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
### SchematicRowProps `<schematicrow />`
|
|
705
|
+
|
|
706
|
+
```ts
|
|
707
|
+
export interface SchematicRowProps {
|
|
708
|
+
children?: any
|
|
709
|
+
height?: number | string
|
|
710
|
+
}
|
|
711
|
+
```
|
|
712
|
+
|
|
713
|
+
[Source](https://github.com/tscircuit/props/blob/main/lib/components/schematic-row.ts)
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
### SchematicTableProps `<schematictable />`
|
|
717
|
+
|
|
718
|
+
```ts
|
|
719
|
+
export interface SchematicTableProps {
|
|
720
|
+
schX?: number | string
|
|
721
|
+
schY?: number | string
|
|
722
|
+
children?: any
|
|
723
|
+
columnWidths?: (number | string)[]
|
|
724
|
+
rowHeights?: (number | string)[]
|
|
725
|
+
cellPadding?: number | string
|
|
726
|
+
borderWidth?: number | string
|
|
727
|
+
anchor?: z.infer<typeof ninePointAnchor>
|
|
728
|
+
fontSize?: number | string
|
|
729
|
+
}
|
|
730
|
+
```
|
|
731
|
+
|
|
732
|
+
[Source](https://github.com/tscircuit/props/blob/main/lib/components/schematic-table.ts)
|
|
733
|
+
|
|
734
|
+
|
|
687
735
|
### RectSmtPadProps `<smtpad />`
|
|
688
736
|
|
|
689
737
|
```ts
|
package/dist/index.d.ts
CHANGED
|
@@ -2897,6 +2897,7 @@ interface AutorouterConfig {
|
|
|
2897
2897
|
groupMode?: "sequential-trace" | "subcircuit";
|
|
2898
2898
|
local?: boolean;
|
|
2899
2899
|
algorithmFn?: (simpleRouteJson: any) => Promise<any>;
|
|
2900
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud";
|
|
2900
2901
|
}
|
|
2901
2902
|
type AutorouterProp = AutorouterConfig | "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud";
|
|
2902
2903
|
declare const autorouterConfig: z.ZodObject<{
|
|
@@ -2908,6 +2909,7 @@ declare const autorouterConfig: z.ZodObject<{
|
|
|
2908
2909
|
traceClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2909
2910
|
groupMode: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit"]>>;
|
|
2910
2911
|
algorithmFn: z.ZodOptional<z.ZodType<(simpleRouteJson: any) => Promise<any>, z.ZodTypeDef, (simpleRouteJson: any) => Promise<any>>>;
|
|
2912
|
+
preset: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit", "auto", "auto-local", "auto-cloud"]>>;
|
|
2911
2913
|
local: z.ZodOptional<z.ZodBoolean>;
|
|
2912
2914
|
}, "strip", z.ZodTypeAny, {
|
|
2913
2915
|
serverUrl?: string | undefined;
|
|
@@ -2918,6 +2920,7 @@ declare const autorouterConfig: z.ZodObject<{
|
|
|
2918
2920
|
traceClearance?: number | undefined;
|
|
2919
2921
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
2920
2922
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
2923
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
2921
2924
|
local?: boolean | undefined;
|
|
2922
2925
|
}, {
|
|
2923
2926
|
serverUrl?: string | undefined;
|
|
@@ -2928,6 +2931,7 @@ declare const autorouterConfig: z.ZodObject<{
|
|
|
2928
2931
|
traceClearance?: string | number | undefined;
|
|
2929
2932
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
2930
2933
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
2934
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
2931
2935
|
local?: boolean | undefined;
|
|
2932
2936
|
}>;
|
|
2933
2937
|
declare const autorouterProp: z.ZodUnion<[z.ZodObject<{
|
|
@@ -2939,6 +2943,7 @@ declare const autorouterProp: z.ZodUnion<[z.ZodObject<{
|
|
|
2939
2943
|
traceClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2940
2944
|
groupMode: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit"]>>;
|
|
2941
2945
|
algorithmFn: z.ZodOptional<z.ZodType<(simpleRouteJson: any) => Promise<any>, z.ZodTypeDef, (simpleRouteJson: any) => Promise<any>>>;
|
|
2946
|
+
preset: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit", "auto", "auto-local", "auto-cloud"]>>;
|
|
2942
2947
|
local: z.ZodOptional<z.ZodBoolean>;
|
|
2943
2948
|
}, "strip", z.ZodTypeAny, {
|
|
2944
2949
|
serverUrl?: string | undefined;
|
|
@@ -2949,6 +2954,7 @@ declare const autorouterProp: z.ZodUnion<[z.ZodObject<{
|
|
|
2949
2954
|
traceClearance?: number | undefined;
|
|
2950
2955
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
2951
2956
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
2957
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
2952
2958
|
local?: boolean | undefined;
|
|
2953
2959
|
}, {
|
|
2954
2960
|
serverUrl?: string | undefined;
|
|
@@ -2959,6 +2965,7 @@ declare const autorouterProp: z.ZodUnion<[z.ZodObject<{
|
|
|
2959
2965
|
traceClearance?: string | number | undefined;
|
|
2960
2966
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
2961
2967
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
2968
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
2962
2969
|
local?: boolean | undefined;
|
|
2963
2970
|
}>, z.ZodLiteral<"sequential-trace">, z.ZodLiteral<"subcircuit">, z.ZodLiteral<"auto">, z.ZodLiteral<"auto-local">, z.ZodLiteral<"auto-cloud">]>;
|
|
2964
2971
|
interface SubcircuitGroupProps extends BaseGroupProps {
|
|
@@ -3918,6 +3925,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3918
3925
|
traceClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3919
3926
|
groupMode: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit"]>>;
|
|
3920
3927
|
algorithmFn: z.ZodOptional<z.ZodType<(simpleRouteJson: any) => Promise<any>, z.ZodTypeDef, (simpleRouteJson: any) => Promise<any>>>;
|
|
3928
|
+
preset: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit", "auto", "auto-local", "auto-cloud"]>>;
|
|
3921
3929
|
local: z.ZodOptional<z.ZodBoolean>;
|
|
3922
3930
|
}, "strip", z.ZodTypeAny, {
|
|
3923
3931
|
serverUrl?: string | undefined;
|
|
@@ -3928,6 +3936,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3928
3936
|
traceClearance?: number | undefined;
|
|
3929
3937
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
3930
3938
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
3939
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
3931
3940
|
local?: boolean | undefined;
|
|
3932
3941
|
}, {
|
|
3933
3942
|
serverUrl?: string | undefined;
|
|
@@ -3938,6 +3947,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
3938
3947
|
traceClearance?: string | number | undefined;
|
|
3939
3948
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
3940
3949
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
3950
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
3941
3951
|
local?: boolean | undefined;
|
|
3942
3952
|
}>, z.ZodLiteral<"sequential-trace">, z.ZodLiteral<"subcircuit">, z.ZodLiteral<"auto">, z.ZodLiteral<"auto-local">, z.ZodLiteral<"auto-cloud">]>>;
|
|
3943
3953
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -4099,6 +4109,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
4099
4109
|
traceClearance?: number | undefined;
|
|
4100
4110
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
4101
4111
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
4112
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
4102
4113
|
local?: boolean | undefined;
|
|
4103
4114
|
} | undefined;
|
|
4104
4115
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
@@ -4267,6 +4278,7 @@ declare const subcircuitGroupProps: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
4267
4278
|
traceClearance?: string | number | undefined;
|
|
4268
4279
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
4269
4280
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
4281
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
4270
4282
|
local?: boolean | undefined;
|
|
4271
4283
|
} | undefined;
|
|
4272
4284
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
@@ -4711,6 +4723,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4711
4723
|
traceClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4712
4724
|
groupMode: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit"]>>;
|
|
4713
4725
|
algorithmFn: z.ZodOptional<z.ZodType<(simpleRouteJson: any) => Promise<any>, z.ZodTypeDef, (simpleRouteJson: any) => Promise<any>>>;
|
|
4726
|
+
preset: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit", "auto", "auto-local", "auto-cloud"]>>;
|
|
4714
4727
|
local: z.ZodOptional<z.ZodBoolean>;
|
|
4715
4728
|
}, "strip", z.ZodTypeAny, {
|
|
4716
4729
|
serverUrl?: string | undefined;
|
|
@@ -4721,6 +4734,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4721
4734
|
traceClearance?: number | undefined;
|
|
4722
4735
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
4723
4736
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
4737
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
4724
4738
|
local?: boolean | undefined;
|
|
4725
4739
|
}, {
|
|
4726
4740
|
serverUrl?: string | undefined;
|
|
@@ -4731,6 +4745,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4731
4745
|
traceClearance?: string | number | undefined;
|
|
4732
4746
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
4733
4747
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
4748
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
4734
4749
|
local?: boolean | undefined;
|
|
4735
4750
|
}>, z.ZodLiteral<"sequential-trace">, z.ZodLiteral<"subcircuit">, z.ZodLiteral<"auto">, z.ZodLiteral<"auto-local">, z.ZodLiteral<"auto-cloud">]>>;
|
|
4736
4751
|
}>, {
|
|
@@ -4895,6 +4910,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
4895
4910
|
traceClearance?: number | undefined;
|
|
4896
4911
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
4897
4912
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
4913
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
4898
4914
|
local?: boolean | undefined;
|
|
4899
4915
|
} | undefined;
|
|
4900
4916
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
@@ -5064,6 +5080,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<z.objectUtil.extendShape
|
|
|
5064
5080
|
traceClearance?: string | number | undefined;
|
|
5065
5081
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
5066
5082
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
5083
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
5067
5084
|
local?: boolean | undefined;
|
|
5068
5085
|
} | undefined;
|
|
5069
5086
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
@@ -6002,6 +6019,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
6002
6019
|
traceClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6003
6020
|
groupMode: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit"]>>;
|
|
6004
6021
|
algorithmFn: z.ZodOptional<z.ZodType<(simpleRouteJson: any) => Promise<any>, z.ZodTypeDef, (simpleRouteJson: any) => Promise<any>>>;
|
|
6022
|
+
preset: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit", "auto", "auto-local", "auto-cloud"]>>;
|
|
6005
6023
|
local: z.ZodOptional<z.ZodBoolean>;
|
|
6006
6024
|
}, "strip", z.ZodTypeAny, {
|
|
6007
6025
|
serverUrl?: string | undefined;
|
|
@@ -6012,6 +6030,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
6012
6030
|
traceClearance?: number | undefined;
|
|
6013
6031
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
6014
6032
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
6033
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
6015
6034
|
local?: boolean | undefined;
|
|
6016
6035
|
}, {
|
|
6017
6036
|
serverUrl?: string | undefined;
|
|
@@ -6022,6 +6041,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
6022
6041
|
traceClearance?: string | number | undefined;
|
|
6023
6042
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
6024
6043
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
6044
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
6025
6045
|
local?: boolean | undefined;
|
|
6026
6046
|
}>, z.ZodLiteral<"sequential-trace">, z.ZodLiteral<"subcircuit">, z.ZodLiteral<"auto">, z.ZodLiteral<"auto-local">, z.ZodLiteral<"auto-cloud">]>>;
|
|
6027
6047
|
}>, {
|
|
@@ -6186,6 +6206,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
6186
6206
|
traceClearance?: number | undefined;
|
|
6187
6207
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
6188
6208
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
6209
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
6189
6210
|
local?: boolean | undefined;
|
|
6190
6211
|
} | undefined;
|
|
6191
6212
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
@@ -6355,6 +6376,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<z.o
|
|
|
6355
6376
|
traceClearance?: string | number | undefined;
|
|
6356
6377
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
6357
6378
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
6379
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
6358
6380
|
local?: boolean | undefined;
|
|
6359
6381
|
} | undefined;
|
|
6360
6382
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
@@ -6813,6 +6835,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
6813
6835
|
traceClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6814
6836
|
groupMode: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit"]>>;
|
|
6815
6837
|
algorithmFn: z.ZodOptional<z.ZodType<(simpleRouteJson: any) => Promise<any>, z.ZodTypeDef, (simpleRouteJson: any) => Promise<any>>>;
|
|
6838
|
+
preset: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit", "auto", "auto-local", "auto-cloud"]>>;
|
|
6816
6839
|
local: z.ZodOptional<z.ZodBoolean>;
|
|
6817
6840
|
}, "strip", z.ZodTypeAny, {
|
|
6818
6841
|
serverUrl?: string | undefined;
|
|
@@ -6823,6 +6846,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
6823
6846
|
traceClearance?: number | undefined;
|
|
6824
6847
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
6825
6848
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
6849
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
6826
6850
|
local?: boolean | undefined;
|
|
6827
6851
|
}, {
|
|
6828
6852
|
serverUrl?: string | undefined;
|
|
@@ -6833,6 +6857,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
6833
6857
|
traceClearance?: string | number | undefined;
|
|
6834
6858
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
6835
6859
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
6860
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
6836
6861
|
local?: boolean | undefined;
|
|
6837
6862
|
}>, z.ZodLiteral<"sequential-trace">, z.ZodLiteral<"subcircuit">, z.ZodLiteral<"auto">, z.ZodLiteral<"auto-local">, z.ZodLiteral<"auto-cloud">]>>;
|
|
6838
6863
|
}>, {
|
|
@@ -7011,6 +7036,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
7011
7036
|
traceClearance?: number | undefined;
|
|
7012
7037
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
7013
7038
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
7039
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
7014
7040
|
local?: boolean | undefined;
|
|
7015
7041
|
} | undefined;
|
|
7016
7042
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
@@ -7185,6 +7211,7 @@ declare const boardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
7185
7211
|
traceClearance?: string | number | undefined;
|
|
7186
7212
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
7187
7213
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
7214
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
7188
7215
|
local?: boolean | undefined;
|
|
7189
7216
|
} | undefined;
|
|
7190
7217
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
@@ -7644,6 +7671,7 @@ declare const breakoutProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
7644
7671
|
traceClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7645
7672
|
groupMode: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit"]>>;
|
|
7646
7673
|
algorithmFn: z.ZodOptional<z.ZodType<(simpleRouteJson: any) => Promise<any>, z.ZodTypeDef, (simpleRouteJson: any) => Promise<any>>>;
|
|
7674
|
+
preset: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit", "auto", "auto-local", "auto-cloud"]>>;
|
|
7647
7675
|
local: z.ZodOptional<z.ZodBoolean>;
|
|
7648
7676
|
}, "strip", z.ZodTypeAny, {
|
|
7649
7677
|
serverUrl?: string | undefined;
|
|
@@ -7654,6 +7682,7 @@ declare const breakoutProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
7654
7682
|
traceClearance?: number | undefined;
|
|
7655
7683
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
7656
7684
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
7685
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
7657
7686
|
local?: boolean | undefined;
|
|
7658
7687
|
}, {
|
|
7659
7688
|
serverUrl?: string | undefined;
|
|
@@ -7664,6 +7693,7 @@ declare const breakoutProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
7664
7693
|
traceClearance?: string | number | undefined;
|
|
7665
7694
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
7666
7695
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
7696
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
7667
7697
|
local?: boolean | undefined;
|
|
7668
7698
|
}>, z.ZodLiteral<"sequential-trace">, z.ZodLiteral<"subcircuit">, z.ZodLiteral<"auto">, z.ZodLiteral<"auto-local">, z.ZodLiteral<"auto-cloud">]>>;
|
|
7669
7699
|
}>, {
|
|
@@ -7831,6 +7861,7 @@ declare const breakoutProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
7831
7861
|
traceClearance?: number | undefined;
|
|
7832
7862
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
7833
7863
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
7864
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
7834
7865
|
local?: boolean | undefined;
|
|
7835
7866
|
} | undefined;
|
|
7836
7867
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
@@ -7999,6 +8030,7 @@ declare const breakoutProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
|
|
|
7999
8030
|
traceClearance?: string | number | undefined;
|
|
8000
8031
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
8001
8032
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
8033
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
8002
8034
|
local?: boolean | undefined;
|
|
8003
8035
|
} | undefined;
|
|
8004
8036
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
@@ -14685,6 +14717,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
14685
14717
|
traceClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14686
14718
|
groupMode: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit"]>>;
|
|
14687
14719
|
algorithmFn: z.ZodOptional<z.ZodType<(simpleRouteJson: any) => Promise<any>, z.ZodTypeDef, (simpleRouteJson: any) => Promise<any>>>;
|
|
14720
|
+
preset: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit", "auto", "auto-local", "auto-cloud"]>>;
|
|
14688
14721
|
local: z.ZodOptional<z.ZodBoolean>;
|
|
14689
14722
|
}, "strip", z.ZodTypeAny, {
|
|
14690
14723
|
serverUrl?: string | undefined;
|
|
@@ -14695,6 +14728,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
14695
14728
|
traceClearance?: number | undefined;
|
|
14696
14729
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
14697
14730
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
14731
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
14698
14732
|
local?: boolean | undefined;
|
|
14699
14733
|
}, {
|
|
14700
14734
|
serverUrl?: string | undefined;
|
|
@@ -14705,6 +14739,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
14705
14739
|
traceClearance?: string | number | undefined;
|
|
14706
14740
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
14707
14741
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
14742
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
14708
14743
|
local?: boolean | undefined;
|
|
14709
14744
|
}>, z.ZodLiteral<"sequential-trace">, z.ZodLiteral<"subcircuit">, z.ZodLiteral<"auto">, z.ZodLiteral<"auto-local">, z.ZodLiteral<"auto-cloud">]>>;
|
|
14710
14745
|
}>, {
|
|
@@ -14898,6 +14933,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
14898
14933
|
traceClearance?: number | undefined;
|
|
14899
14934
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
14900
14935
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
14936
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
14901
14937
|
local?: boolean | undefined;
|
|
14902
14938
|
} | undefined;
|
|
14903
14939
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
@@ -15082,6 +15118,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
15082
15118
|
traceClearance?: string | number | undefined;
|
|
15083
15119
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
15084
15120
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
15121
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
15085
15122
|
local?: boolean | undefined;
|
|
15086
15123
|
} | undefined;
|
|
15087
15124
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
@@ -19343,6 +19380,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
19343
19380
|
traceClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19344
19381
|
groupMode: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit"]>>;
|
|
19345
19382
|
algorithmFn: z.ZodOptional<z.ZodType<(simpleRouteJson: any) => Promise<any>, z.ZodTypeDef, (simpleRouteJson: any) => Promise<any>>>;
|
|
19383
|
+
preset: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit", "auto", "auto-local", "auto-cloud"]>>;
|
|
19346
19384
|
local: z.ZodOptional<z.ZodBoolean>;
|
|
19347
19385
|
}, "strip", z.ZodTypeAny, {
|
|
19348
19386
|
serverUrl?: string | undefined;
|
|
@@ -19353,6 +19391,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
19353
19391
|
traceClearance?: number | undefined;
|
|
19354
19392
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
19355
19393
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
19394
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
19356
19395
|
local?: boolean | undefined;
|
|
19357
19396
|
}, {
|
|
19358
19397
|
serverUrl?: string | undefined;
|
|
@@ -19363,6 +19402,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
19363
19402
|
traceClearance?: string | number | undefined;
|
|
19364
19403
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
19365
19404
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
19405
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
19366
19406
|
local?: boolean | undefined;
|
|
19367
19407
|
}>, z.ZodLiteral<"sequential-trace">, z.ZodLiteral<"subcircuit">, z.ZodLiteral<"auto">, z.ZodLiteral<"auto-local">, z.ZodLiteral<"auto-cloud">]>>;
|
|
19368
19408
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -19524,6 +19564,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
19524
19564
|
traceClearance?: number | undefined;
|
|
19525
19565
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
19526
19566
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
19567
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
19527
19568
|
local?: boolean | undefined;
|
|
19528
19569
|
} | undefined;
|
|
19529
19570
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
@@ -19692,6 +19733,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
19692
19733
|
traceClearance?: string | number | undefined;
|
|
19693
19734
|
groupMode?: "sequential-trace" | "subcircuit" | undefined;
|
|
19694
19735
|
algorithmFn?: ((simpleRouteJson: any) => Promise<any>) | undefined;
|
|
19736
|
+
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
19695
19737
|
local?: boolean | undefined;
|
|
19696
19738
|
} | undefined;
|
|
19697
19739
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
@@ -24177,6 +24219,81 @@ declare const schematicPathProps: z.ZodObject<{
|
|
|
24177
24219
|
}>;
|
|
24178
24220
|
type SchematicPathProps = z.input<typeof schematicPathProps>;
|
|
24179
24221
|
|
|
24222
|
+
declare const ninePointAnchor: z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>;
|
|
24223
|
+
|
|
24224
|
+
declare const schematicTableProps: z.ZodObject<{
|
|
24225
|
+
schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24226
|
+
schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24227
|
+
children: z.ZodOptional<z.ZodAny>;
|
|
24228
|
+
cellPadding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24229
|
+
borderWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24230
|
+
anchor: z.ZodOptional<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
24231
|
+
fontSize: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24232
|
+
}, "strip", z.ZodTypeAny, {
|
|
24233
|
+
anchor?: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | undefined;
|
|
24234
|
+
schX?: number | undefined;
|
|
24235
|
+
schY?: number | undefined;
|
|
24236
|
+
children?: any;
|
|
24237
|
+
fontSize?: number | undefined;
|
|
24238
|
+
cellPadding?: number | undefined;
|
|
24239
|
+
borderWidth?: number | undefined;
|
|
24240
|
+
}, {
|
|
24241
|
+
anchor?: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | undefined;
|
|
24242
|
+
schX?: string | number | undefined;
|
|
24243
|
+
schY?: string | number | undefined;
|
|
24244
|
+
children?: any;
|
|
24245
|
+
fontSize?: string | number | undefined;
|
|
24246
|
+
cellPadding?: string | number | undefined;
|
|
24247
|
+
borderWidth?: string | number | undefined;
|
|
24248
|
+
}>;
|
|
24249
|
+
interface SchematicTableProps {
|
|
24250
|
+
schX?: number | string;
|
|
24251
|
+
schY?: number | string;
|
|
24252
|
+
children?: any;
|
|
24253
|
+
cellPadding?: number | string;
|
|
24254
|
+
borderWidth?: number | string;
|
|
24255
|
+
anchor?: z.infer<typeof ninePointAnchor>;
|
|
24256
|
+
fontSize?: number | string;
|
|
24257
|
+
}
|
|
24258
|
+
|
|
24259
|
+
declare const schematicRowProps: z.ZodObject<{
|
|
24260
|
+
children: z.ZodOptional<z.ZodAny>;
|
|
24261
|
+
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24262
|
+
}, "strip", z.ZodTypeAny, {
|
|
24263
|
+
children?: any;
|
|
24264
|
+
height?: number | undefined;
|
|
24265
|
+
}, {
|
|
24266
|
+
children?: any;
|
|
24267
|
+
height?: string | number | undefined;
|
|
24268
|
+
}>;
|
|
24269
|
+
interface SchematicRowProps {
|
|
24270
|
+
children?: any;
|
|
24271
|
+
height?: number | string;
|
|
24272
|
+
}
|
|
24273
|
+
|
|
24274
|
+
declare const schematicCellProps: z.ZodObject<{
|
|
24275
|
+
children: z.ZodString;
|
|
24276
|
+
horizontalAlign: z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>;
|
|
24277
|
+
verticalAlign: z.ZodOptional<z.ZodEnum<["top", "middle", "bottom"]>>;
|
|
24278
|
+
fontSize: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24279
|
+
}, "strip", z.ZodTypeAny, {
|
|
24280
|
+
children: string;
|
|
24281
|
+
fontSize?: number | undefined;
|
|
24282
|
+
horizontalAlign?: "left" | "right" | "center" | undefined;
|
|
24283
|
+
verticalAlign?: "top" | "bottom" | "middle" | undefined;
|
|
24284
|
+
}, {
|
|
24285
|
+
children: string;
|
|
24286
|
+
fontSize?: string | number | undefined;
|
|
24287
|
+
horizontalAlign?: "left" | "right" | "center" | undefined;
|
|
24288
|
+
verticalAlign?: "top" | "bottom" | "middle" | undefined;
|
|
24289
|
+
}>;
|
|
24290
|
+
interface SchematicCellProps {
|
|
24291
|
+
children: string;
|
|
24292
|
+
horizontalAlign?: "left" | "center" | "right";
|
|
24293
|
+
verticalAlign?: "top" | "middle" | "bottom";
|
|
24294
|
+
fontSize?: number | string;
|
|
24295
|
+
}
|
|
24296
|
+
|
|
24180
24297
|
declare const silkscreenTextProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
24181
24298
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24182
24299
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -24685,6 +24802,4 @@ interface PlatformConfig {
|
|
|
24685
24802
|
}
|
|
24686
24803
|
declare const platformConfig: z.ZodType<PlatformConfig>;
|
|
24687
24804
|
|
|
24688
|
-
|
|
24689
|
-
|
|
24690
|
-
export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryPinLabels, type BatteryProps, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CrystalPinLabels, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type JumperProps, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };
|
|
24805
|
+
export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryPinLabels, type BatteryProps, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CrystalPinLabels, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type JumperProps, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicCellProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRowProps, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicCellProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicRowProps, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };
|