@tscircuit/props 0.0.286 → 0.0.288
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 +19 -1
- package/dist/index.d.ts +496 -1
- package/dist/index.js +110 -84
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +4 -0
- package/lib/components/voltagesource.ts +48 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3217,6 +3217,8 @@ interface SubcircuitGroupProps extends BaseGroupProps {
|
|
|
3217
3217
|
* If true, net labels will automatically be created for complex traces
|
|
3218
3218
|
*/
|
|
3219
3219
|
schTraceAutoLabelEnabled?: boolean;
|
|
3220
|
+
/** Maximum length a trace can span on the schematic */
|
|
3221
|
+
schMaxTraceDistance?: Distance;
|
|
3220
3222
|
partsEngine?: PartsEngine;
|
|
3221
3223
|
/** When autosizing, the board will be made square */
|
|
3222
3224
|
square?: boolean;
|
|
@@ -4429,6 +4431,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4429
4431
|
}>>;
|
|
4430
4432
|
schAutoLayoutEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4431
4433
|
schTraceAutoLabelEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4434
|
+
schMaxTraceDistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4432
4435
|
routingDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
4433
4436
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4434
4437
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -4708,6 +4711,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4708
4711
|
} | undefined;
|
|
4709
4712
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
4710
4713
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
4714
|
+
schMaxTraceDistance?: number | undefined;
|
|
4711
4715
|
partsEngine?: PartsEngine | undefined;
|
|
4712
4716
|
square?: boolean | undefined;
|
|
4713
4717
|
emptyArea?: string | undefined;
|
|
@@ -4945,6 +4949,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4945
4949
|
} | undefined;
|
|
4946
4950
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
4947
4951
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
4952
|
+
schMaxTraceDistance?: string | number | undefined;
|
|
4948
4953
|
partsEngine?: PartsEngine | undefined;
|
|
4949
4954
|
square?: boolean | undefined;
|
|
4950
4955
|
emptyArea?: string | undefined;
|
|
@@ -5456,6 +5461,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5456
5461
|
}>>;
|
|
5457
5462
|
schAutoLayoutEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
5458
5463
|
schTraceAutoLabelEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
5464
|
+
schMaxTraceDistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5459
5465
|
routingDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
5460
5466
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5461
5467
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5738,6 +5744,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5738
5744
|
} | undefined;
|
|
5739
5745
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
5740
5746
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
5747
|
+
schMaxTraceDistance?: number | undefined;
|
|
5741
5748
|
partsEngine?: PartsEngine | undefined;
|
|
5742
5749
|
square?: boolean | undefined;
|
|
5743
5750
|
emptyArea?: string | undefined;
|
|
@@ -5976,6 +5983,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5976
5983
|
} | undefined;
|
|
5977
5984
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
5978
5985
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
5986
|
+
schMaxTraceDistance?: string | number | undefined;
|
|
5979
5987
|
partsEngine?: PartsEngine | undefined;
|
|
5980
5988
|
square?: boolean | undefined;
|
|
5981
5989
|
emptyArea?: string | undefined;
|
|
@@ -7181,6 +7189,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
7181
7189
|
}>>;
|
|
7182
7190
|
schAutoLayoutEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
7183
7191
|
schTraceAutoLabelEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
7192
|
+
schMaxTraceDistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7184
7193
|
routingDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
7185
7194
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7186
7195
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7463,6 +7472,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
7463
7472
|
} | undefined;
|
|
7464
7473
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
7465
7474
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
7475
|
+
schMaxTraceDistance?: number | undefined;
|
|
7466
7476
|
partsEngine?: PartsEngine | undefined;
|
|
7467
7477
|
square?: boolean | undefined;
|
|
7468
7478
|
emptyArea?: string | undefined;
|
|
@@ -7701,6 +7711,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
7701
7711
|
} | undefined;
|
|
7702
7712
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
7703
7713
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
7714
|
+
schMaxTraceDistance?: string | number | undefined;
|
|
7704
7715
|
partsEngine?: PartsEngine | undefined;
|
|
7705
7716
|
square?: boolean | undefined;
|
|
7706
7717
|
emptyArea?: string | undefined;
|
|
@@ -8218,6 +8229,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
8218
8229
|
}>>;
|
|
8219
8230
|
schAutoLayoutEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8220
8231
|
schTraceAutoLabelEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8232
|
+
schMaxTraceDistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8221
8233
|
routingDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
8222
8234
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8223
8235
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -8502,6 +8514,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
8502
8514
|
} | undefined;
|
|
8503
8515
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
8504
8516
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
8517
|
+
schMaxTraceDistance?: number | undefined;
|
|
8505
8518
|
partsEngine?: PartsEngine | undefined;
|
|
8506
8519
|
square?: boolean | undefined;
|
|
8507
8520
|
emptyArea?: string | undefined;
|
|
@@ -8739,6 +8752,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
8739
8752
|
} | undefined;
|
|
8740
8753
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
8741
8754
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
8755
|
+
schMaxTraceDistance?: string | number | undefined;
|
|
8742
8756
|
partsEngine?: PartsEngine | undefined;
|
|
8743
8757
|
square?: boolean | undefined;
|
|
8744
8758
|
emptyArea?: string | undefined;
|
|
@@ -9254,6 +9268,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
9254
9268
|
}>>;
|
|
9255
9269
|
schAutoLayoutEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
9256
9270
|
schTraceAutoLabelEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
9271
|
+
schMaxTraceDistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
9257
9272
|
routingDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
9258
9273
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
9259
9274
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -9539,6 +9554,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
9539
9554
|
} | undefined;
|
|
9540
9555
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
9541
9556
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
9557
|
+
schMaxTraceDistance?: number | undefined;
|
|
9542
9558
|
partsEngine?: PartsEngine | undefined;
|
|
9543
9559
|
square?: boolean | undefined;
|
|
9544
9560
|
emptyArea?: string | undefined;
|
|
@@ -9776,6 +9792,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
9776
9792
|
} | undefined;
|
|
9777
9793
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
9778
9794
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
9795
|
+
schMaxTraceDistance?: string | number | undefined;
|
|
9779
9796
|
partsEngine?: PartsEngine | undefined;
|
|
9780
9797
|
square?: boolean | undefined;
|
|
9781
9798
|
emptyArea?: string | undefined;
|
|
@@ -17369,6 +17386,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
17369
17386
|
}>>;
|
|
17370
17387
|
schAutoLayoutEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
17371
17388
|
schTraceAutoLabelEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
17389
|
+
schMaxTraceDistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
17372
17390
|
routingDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
17373
17391
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
17374
17392
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -17668,6 +17686,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
17668
17686
|
} | undefined;
|
|
17669
17687
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
17670
17688
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
17689
|
+
schMaxTraceDistance?: number | undefined;
|
|
17671
17690
|
partsEngine?: PartsEngine | undefined;
|
|
17672
17691
|
square?: boolean | undefined;
|
|
17673
17692
|
emptyArea?: string | undefined;
|
|
@@ -17915,6 +17934,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
17915
17934
|
} | undefined;
|
|
17916
17935
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
17917
17936
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
17937
|
+
schMaxTraceDistance?: string | number | undefined;
|
|
17918
17938
|
partsEngine?: PartsEngine | undefined;
|
|
17919
17939
|
square?: boolean | undefined;
|
|
17920
17940
|
emptyArea?: string | undefined;
|
|
@@ -22609,6 +22629,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
22609
22629
|
}>>;
|
|
22610
22630
|
schAutoLayoutEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
22611
22631
|
schTraceAutoLabelEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
22632
|
+
schMaxTraceDistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
22612
22633
|
routingDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
22613
22634
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
22614
22635
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -22888,6 +22909,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
22888
22909
|
} | undefined;
|
|
22889
22910
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
22890
22911
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
22912
|
+
schMaxTraceDistance?: number | undefined;
|
|
22891
22913
|
partsEngine?: PartsEngine | undefined;
|
|
22892
22914
|
square?: boolean | undefined;
|
|
22893
22915
|
emptyArea?: string | undefined;
|
|
@@ -23125,6 +23147,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
23125
23147
|
} | undefined;
|
|
23126
23148
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
23127
23149
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
23150
|
+
schMaxTraceDistance?: string | number | undefined;
|
|
23128
23151
|
partsEngine?: PartsEngine | undefined;
|
|
23129
23152
|
square?: boolean | undefined;
|
|
23130
23153
|
emptyArea?: string | undefined;
|
|
@@ -27896,6 +27919,478 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
27896
27919
|
}>;
|
|
27897
27920
|
type PowerSourceProps = z.input<typeof powerSourceProps>;
|
|
27898
27921
|
|
|
27922
|
+
type WaveShape = "sinewave" | "square" | "triangle" | "sawtooth";
|
|
27923
|
+
interface VoltageSourceProps extends CommonComponentProps {
|
|
27924
|
+
voltage?: number | string;
|
|
27925
|
+
frequency?: number | string;
|
|
27926
|
+
peakToPeakVoltage?: number | string;
|
|
27927
|
+
waveShape?: WaveShape;
|
|
27928
|
+
phase?: number | string;
|
|
27929
|
+
dutyCycle?: number | string;
|
|
27930
|
+
}
|
|
27931
|
+
declare const voltageSourceProps: z.ZodObject<{
|
|
27932
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27933
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27934
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27935
|
+
schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27936
|
+
schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27937
|
+
schRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27938
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
27939
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
27940
|
+
}, "strip", z.ZodTypeAny, {
|
|
27941
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
27942
|
+
}, {
|
|
27943
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
27944
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
27945
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
27946
|
+
}>>;
|
|
27947
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
27948
|
+
relative: z.ZodOptional<z.ZodBoolean>;
|
|
27949
|
+
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
27950
|
+
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
27951
|
+
} & {
|
|
27952
|
+
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
27953
|
+
} & {
|
|
27954
|
+
key: z.ZodOptional<z.ZodAny>;
|
|
27955
|
+
name: z.ZodString;
|
|
27956
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
27957
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
27958
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
27959
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
27960
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
27961
|
+
}, "strip", z.ZodTypeAny, {
|
|
27962
|
+
x: string | number;
|
|
27963
|
+
y: string | number;
|
|
27964
|
+
z: string | number;
|
|
27965
|
+
}, {
|
|
27966
|
+
x: string | number;
|
|
27967
|
+
y: string | number;
|
|
27968
|
+
z: string | number;
|
|
27969
|
+
}>]>>;
|
|
27970
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
27971
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27972
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27973
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27974
|
+
}, "strip", z.ZodTypeAny, {
|
|
27975
|
+
x: number;
|
|
27976
|
+
y: number;
|
|
27977
|
+
z: number;
|
|
27978
|
+
}, {
|
|
27979
|
+
x: string | number;
|
|
27980
|
+
y: string | number;
|
|
27981
|
+
z: string | number;
|
|
27982
|
+
}>>;
|
|
27983
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
27984
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27985
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27986
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27987
|
+
}, "strip", z.ZodTypeAny, {
|
|
27988
|
+
x: number;
|
|
27989
|
+
y: number;
|
|
27990
|
+
z: number;
|
|
27991
|
+
}, {
|
|
27992
|
+
x: string | number;
|
|
27993
|
+
y: string | number;
|
|
27994
|
+
z: string | number;
|
|
27995
|
+
}>>;
|
|
27996
|
+
} & {
|
|
27997
|
+
stlUrl: z.ZodString;
|
|
27998
|
+
}, "strip", z.ZodTypeAny, {
|
|
27999
|
+
stlUrl: string;
|
|
28000
|
+
rotationOffset?: number | {
|
|
28001
|
+
x: string | number;
|
|
28002
|
+
y: string | number;
|
|
28003
|
+
z: string | number;
|
|
28004
|
+
} | undefined;
|
|
28005
|
+
positionOffset?: {
|
|
28006
|
+
x: number;
|
|
28007
|
+
y: number;
|
|
28008
|
+
z: number;
|
|
28009
|
+
} | undefined;
|
|
28010
|
+
size?: {
|
|
28011
|
+
x: number;
|
|
28012
|
+
y: number;
|
|
28013
|
+
z: number;
|
|
28014
|
+
} | undefined;
|
|
28015
|
+
}, {
|
|
28016
|
+
stlUrl: string;
|
|
28017
|
+
rotationOffset?: number | {
|
|
28018
|
+
x: string | number;
|
|
28019
|
+
y: string | number;
|
|
28020
|
+
z: string | number;
|
|
28021
|
+
} | undefined;
|
|
28022
|
+
positionOffset?: {
|
|
28023
|
+
x: string | number;
|
|
28024
|
+
y: string | number;
|
|
28025
|
+
z: string | number;
|
|
28026
|
+
} | undefined;
|
|
28027
|
+
size?: {
|
|
28028
|
+
x: string | number;
|
|
28029
|
+
y: string | number;
|
|
28030
|
+
z: string | number;
|
|
28031
|
+
} | undefined;
|
|
28032
|
+
}>, z.ZodObject<{
|
|
28033
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
28034
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
28035
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
28036
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
28037
|
+
}, "strip", z.ZodTypeAny, {
|
|
28038
|
+
x: string | number;
|
|
28039
|
+
y: string | number;
|
|
28040
|
+
z: string | number;
|
|
28041
|
+
}, {
|
|
28042
|
+
x: string | number;
|
|
28043
|
+
y: string | number;
|
|
28044
|
+
z: string | number;
|
|
28045
|
+
}>]>>;
|
|
28046
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
28047
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28048
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28049
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28050
|
+
}, "strip", z.ZodTypeAny, {
|
|
28051
|
+
x: number;
|
|
28052
|
+
y: number;
|
|
28053
|
+
z: number;
|
|
28054
|
+
}, {
|
|
28055
|
+
x: string | number;
|
|
28056
|
+
y: string | number;
|
|
28057
|
+
z: string | number;
|
|
28058
|
+
}>>;
|
|
28059
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
28060
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28061
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28062
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28063
|
+
}, "strip", z.ZodTypeAny, {
|
|
28064
|
+
x: number;
|
|
28065
|
+
y: number;
|
|
28066
|
+
z: number;
|
|
28067
|
+
}, {
|
|
28068
|
+
x: string | number;
|
|
28069
|
+
y: string | number;
|
|
28070
|
+
z: string | number;
|
|
28071
|
+
}>>;
|
|
28072
|
+
} & {
|
|
28073
|
+
objUrl: z.ZodString;
|
|
28074
|
+
mtlUrl: z.ZodOptional<z.ZodString>;
|
|
28075
|
+
}, "strip", z.ZodTypeAny, {
|
|
28076
|
+
objUrl: string;
|
|
28077
|
+
rotationOffset?: number | {
|
|
28078
|
+
x: string | number;
|
|
28079
|
+
y: string | number;
|
|
28080
|
+
z: string | number;
|
|
28081
|
+
} | undefined;
|
|
28082
|
+
positionOffset?: {
|
|
28083
|
+
x: number;
|
|
28084
|
+
y: number;
|
|
28085
|
+
z: number;
|
|
28086
|
+
} | undefined;
|
|
28087
|
+
size?: {
|
|
28088
|
+
x: number;
|
|
28089
|
+
y: number;
|
|
28090
|
+
z: number;
|
|
28091
|
+
} | undefined;
|
|
28092
|
+
mtlUrl?: string | undefined;
|
|
28093
|
+
}, {
|
|
28094
|
+
objUrl: string;
|
|
28095
|
+
rotationOffset?: number | {
|
|
28096
|
+
x: string | number;
|
|
28097
|
+
y: string | number;
|
|
28098
|
+
z: string | number;
|
|
28099
|
+
} | undefined;
|
|
28100
|
+
positionOffset?: {
|
|
28101
|
+
x: string | number;
|
|
28102
|
+
y: string | number;
|
|
28103
|
+
z: string | number;
|
|
28104
|
+
} | undefined;
|
|
28105
|
+
size?: {
|
|
28106
|
+
x: string | number;
|
|
28107
|
+
y: string | number;
|
|
28108
|
+
z: string | number;
|
|
28109
|
+
} | undefined;
|
|
28110
|
+
mtlUrl?: string | undefined;
|
|
28111
|
+
}>, z.ZodObject<{
|
|
28112
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
28113
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
28114
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
28115
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
28116
|
+
}, "strip", z.ZodTypeAny, {
|
|
28117
|
+
x: string | number;
|
|
28118
|
+
y: string | number;
|
|
28119
|
+
z: string | number;
|
|
28120
|
+
}, {
|
|
28121
|
+
x: string | number;
|
|
28122
|
+
y: string | number;
|
|
28123
|
+
z: string | number;
|
|
28124
|
+
}>]>>;
|
|
28125
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
28126
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28127
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28128
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28129
|
+
}, "strip", z.ZodTypeAny, {
|
|
28130
|
+
x: number;
|
|
28131
|
+
y: number;
|
|
28132
|
+
z: number;
|
|
28133
|
+
}, {
|
|
28134
|
+
x: string | number;
|
|
28135
|
+
y: string | number;
|
|
28136
|
+
z: string | number;
|
|
28137
|
+
}>>;
|
|
28138
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
28139
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28140
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28141
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28142
|
+
}, "strip", z.ZodTypeAny, {
|
|
28143
|
+
x: number;
|
|
28144
|
+
y: number;
|
|
28145
|
+
z: number;
|
|
28146
|
+
}, {
|
|
28147
|
+
x: string | number;
|
|
28148
|
+
y: string | number;
|
|
28149
|
+
z: string | number;
|
|
28150
|
+
}>>;
|
|
28151
|
+
} & {
|
|
28152
|
+
jscad: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
28153
|
+
}, "strip", z.ZodTypeAny, {
|
|
28154
|
+
jscad: Record<string, any>;
|
|
28155
|
+
rotationOffset?: number | {
|
|
28156
|
+
x: string | number;
|
|
28157
|
+
y: string | number;
|
|
28158
|
+
z: string | number;
|
|
28159
|
+
} | undefined;
|
|
28160
|
+
positionOffset?: {
|
|
28161
|
+
x: number;
|
|
28162
|
+
y: number;
|
|
28163
|
+
z: number;
|
|
28164
|
+
} | undefined;
|
|
28165
|
+
size?: {
|
|
28166
|
+
x: number;
|
|
28167
|
+
y: number;
|
|
28168
|
+
z: number;
|
|
28169
|
+
} | undefined;
|
|
28170
|
+
}, {
|
|
28171
|
+
jscad: Record<string, any>;
|
|
28172
|
+
rotationOffset?: number | {
|
|
28173
|
+
x: string | number;
|
|
28174
|
+
y: string | number;
|
|
28175
|
+
z: string | number;
|
|
28176
|
+
} | undefined;
|
|
28177
|
+
positionOffset?: {
|
|
28178
|
+
x: string | number;
|
|
28179
|
+
y: string | number;
|
|
28180
|
+
z: string | number;
|
|
28181
|
+
} | undefined;
|
|
28182
|
+
size?: {
|
|
28183
|
+
x: string | number;
|
|
28184
|
+
y: string | number;
|
|
28185
|
+
z: string | number;
|
|
28186
|
+
} | undefined;
|
|
28187
|
+
}>]>>;
|
|
28188
|
+
children: z.ZodOptional<z.ZodAny>;
|
|
28189
|
+
symbolName: z.ZodOptional<z.ZodString>;
|
|
28190
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
28191
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28192
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
28193
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
28194
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
28195
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
28196
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
28197
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
28198
|
+
}, "strip", z.ZodTypeAny, {
|
|
28199
|
+
providesPower?: boolean | undefined;
|
|
28200
|
+
requiresPower?: boolean | undefined;
|
|
28201
|
+
providesGround?: boolean | undefined;
|
|
28202
|
+
requiresGround?: boolean | undefined;
|
|
28203
|
+
providesVoltage?: string | number | undefined;
|
|
28204
|
+
requiresVoltage?: string | number | undefined;
|
|
28205
|
+
}, {
|
|
28206
|
+
providesPower?: boolean | undefined;
|
|
28207
|
+
requiresPower?: boolean | undefined;
|
|
28208
|
+
providesGround?: boolean | undefined;
|
|
28209
|
+
requiresGround?: boolean | undefined;
|
|
28210
|
+
providesVoltage?: string | number | undefined;
|
|
28211
|
+
requiresVoltage?: string | number | undefined;
|
|
28212
|
+
}>>>;
|
|
28213
|
+
} & {
|
|
28214
|
+
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28215
|
+
frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28216
|
+
peakToPeakVoltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28217
|
+
waveShape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
28218
|
+
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28219
|
+
dutyCycle: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
|
|
28220
|
+
}, "strip", z.ZodTypeAny, {
|
|
28221
|
+
name: string;
|
|
28222
|
+
pcbX?: number | undefined;
|
|
28223
|
+
pcbY?: number | undefined;
|
|
28224
|
+
pcbRotation?: number | undefined;
|
|
28225
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
28226
|
+
pcbRelative?: boolean | undefined;
|
|
28227
|
+
relative?: boolean | undefined;
|
|
28228
|
+
schX?: number | undefined;
|
|
28229
|
+
schY?: number | undefined;
|
|
28230
|
+
schRotation?: number | undefined;
|
|
28231
|
+
footprint?: FootprintProp | undefined;
|
|
28232
|
+
schRelative?: boolean | undefined;
|
|
28233
|
+
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
28234
|
+
key?: any;
|
|
28235
|
+
pinAttributes?: Record<string, {
|
|
28236
|
+
providesPower?: boolean | undefined;
|
|
28237
|
+
requiresPower?: boolean | undefined;
|
|
28238
|
+
providesGround?: boolean | undefined;
|
|
28239
|
+
requiresGround?: boolean | undefined;
|
|
28240
|
+
providesVoltage?: string | number | undefined;
|
|
28241
|
+
requiresVoltage?: string | number | undefined;
|
|
28242
|
+
}> | undefined;
|
|
28243
|
+
cadModel?: string | {
|
|
28244
|
+
stlUrl: string;
|
|
28245
|
+
rotationOffset?: number | {
|
|
28246
|
+
x: string | number;
|
|
28247
|
+
y: string | number;
|
|
28248
|
+
z: string | number;
|
|
28249
|
+
} | undefined;
|
|
28250
|
+
positionOffset?: {
|
|
28251
|
+
x: number;
|
|
28252
|
+
y: number;
|
|
28253
|
+
z: number;
|
|
28254
|
+
} | undefined;
|
|
28255
|
+
size?: {
|
|
28256
|
+
x: number;
|
|
28257
|
+
y: number;
|
|
28258
|
+
z: number;
|
|
28259
|
+
} | undefined;
|
|
28260
|
+
} | {
|
|
28261
|
+
objUrl: string;
|
|
28262
|
+
rotationOffset?: number | {
|
|
28263
|
+
x: string | number;
|
|
28264
|
+
y: string | number;
|
|
28265
|
+
z: string | number;
|
|
28266
|
+
} | undefined;
|
|
28267
|
+
positionOffset?: {
|
|
28268
|
+
x: number;
|
|
28269
|
+
y: number;
|
|
28270
|
+
z: number;
|
|
28271
|
+
} | undefined;
|
|
28272
|
+
size?: {
|
|
28273
|
+
x: number;
|
|
28274
|
+
y: number;
|
|
28275
|
+
z: number;
|
|
28276
|
+
} | undefined;
|
|
28277
|
+
mtlUrl?: string | undefined;
|
|
28278
|
+
} | {
|
|
28279
|
+
jscad: Record<string, any>;
|
|
28280
|
+
rotationOffset?: number | {
|
|
28281
|
+
x: string | number;
|
|
28282
|
+
y: string | number;
|
|
28283
|
+
z: string | number;
|
|
28284
|
+
} | undefined;
|
|
28285
|
+
positionOffset?: {
|
|
28286
|
+
x: number;
|
|
28287
|
+
y: number;
|
|
28288
|
+
z: number;
|
|
28289
|
+
} | undefined;
|
|
28290
|
+
size?: {
|
|
28291
|
+
x: number;
|
|
28292
|
+
y: number;
|
|
28293
|
+
z: number;
|
|
28294
|
+
} | undefined;
|
|
28295
|
+
} | null | undefined;
|
|
28296
|
+
children?: any;
|
|
28297
|
+
symbolName?: string | undefined;
|
|
28298
|
+
doNotPlace?: boolean | undefined;
|
|
28299
|
+
voltage?: number | undefined;
|
|
28300
|
+
frequency?: number | undefined;
|
|
28301
|
+
peakToPeakVoltage?: number | undefined;
|
|
28302
|
+
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
28303
|
+
phase?: number | undefined;
|
|
28304
|
+
dutyCycle?: number | undefined;
|
|
28305
|
+
}, {
|
|
28306
|
+
name: string;
|
|
28307
|
+
pcbX?: string | number | undefined;
|
|
28308
|
+
pcbY?: string | number | undefined;
|
|
28309
|
+
pcbRotation?: string | number | undefined;
|
|
28310
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
28311
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
28312
|
+
} | undefined;
|
|
28313
|
+
pcbRelative?: boolean | undefined;
|
|
28314
|
+
relative?: boolean | undefined;
|
|
28315
|
+
schX?: string | number | undefined;
|
|
28316
|
+
schY?: string | number | undefined;
|
|
28317
|
+
schRotation?: string | number | undefined;
|
|
28318
|
+
footprint?: FootprintProp | undefined;
|
|
28319
|
+
schRelative?: boolean | undefined;
|
|
28320
|
+
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
28321
|
+
key?: any;
|
|
28322
|
+
pinAttributes?: Record<string, {
|
|
28323
|
+
providesPower?: boolean | undefined;
|
|
28324
|
+
requiresPower?: boolean | undefined;
|
|
28325
|
+
providesGround?: boolean | undefined;
|
|
28326
|
+
requiresGround?: boolean | undefined;
|
|
28327
|
+
providesVoltage?: string | number | undefined;
|
|
28328
|
+
requiresVoltage?: string | number | undefined;
|
|
28329
|
+
}> | undefined;
|
|
28330
|
+
cadModel?: string | {
|
|
28331
|
+
stlUrl: string;
|
|
28332
|
+
rotationOffset?: number | {
|
|
28333
|
+
x: string | number;
|
|
28334
|
+
y: string | number;
|
|
28335
|
+
z: string | number;
|
|
28336
|
+
} | undefined;
|
|
28337
|
+
positionOffset?: {
|
|
28338
|
+
x: string | number;
|
|
28339
|
+
y: string | number;
|
|
28340
|
+
z: string | number;
|
|
28341
|
+
} | undefined;
|
|
28342
|
+
size?: {
|
|
28343
|
+
x: string | number;
|
|
28344
|
+
y: string | number;
|
|
28345
|
+
z: string | number;
|
|
28346
|
+
} | undefined;
|
|
28347
|
+
} | {
|
|
28348
|
+
objUrl: string;
|
|
28349
|
+
rotationOffset?: number | {
|
|
28350
|
+
x: string | number;
|
|
28351
|
+
y: string | number;
|
|
28352
|
+
z: string | number;
|
|
28353
|
+
} | undefined;
|
|
28354
|
+
positionOffset?: {
|
|
28355
|
+
x: string | number;
|
|
28356
|
+
y: string | number;
|
|
28357
|
+
z: string | number;
|
|
28358
|
+
} | undefined;
|
|
28359
|
+
size?: {
|
|
28360
|
+
x: string | number;
|
|
28361
|
+
y: string | number;
|
|
28362
|
+
z: string | number;
|
|
28363
|
+
} | undefined;
|
|
28364
|
+
mtlUrl?: string | undefined;
|
|
28365
|
+
} | {
|
|
28366
|
+
jscad: Record<string, any>;
|
|
28367
|
+
rotationOffset?: number | {
|
|
28368
|
+
x: string | number;
|
|
28369
|
+
y: string | number;
|
|
28370
|
+
z: string | number;
|
|
28371
|
+
} | undefined;
|
|
28372
|
+
positionOffset?: {
|
|
28373
|
+
x: string | number;
|
|
28374
|
+
y: string | number;
|
|
28375
|
+
z: string | number;
|
|
28376
|
+
} | undefined;
|
|
28377
|
+
size?: {
|
|
28378
|
+
x: string | number;
|
|
28379
|
+
y: string | number;
|
|
28380
|
+
z: string | number;
|
|
28381
|
+
} | undefined;
|
|
28382
|
+
} | null | undefined;
|
|
28383
|
+
children?: any;
|
|
28384
|
+
symbolName?: string | undefined;
|
|
28385
|
+
doNotPlace?: boolean | undefined;
|
|
28386
|
+
voltage?: string | number | undefined;
|
|
28387
|
+
frequency?: string | number | undefined;
|
|
28388
|
+
peakToPeakVoltage?: string | number | undefined;
|
|
28389
|
+
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
28390
|
+
phase?: string | number | undefined;
|
|
28391
|
+
dutyCycle?: string | number | undefined;
|
|
28392
|
+
}>;
|
|
28393
|
+
|
|
27899
28394
|
declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
27900
28395
|
schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27901
28396
|
schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -28744,4 +29239,4 @@ interface PlatformConfig {
|
|
|
28744
29239
|
}
|
|
28745
29240
|
declare const platformConfig: z.ZodType<PlatformConfig>;
|
|
28746
29241
|
|
|
28747
|
-
export { type AutocompleteString, type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, 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 PinAttributeMap, 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 SchematicPinLabel, 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, pinAttributeMap, 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, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRowProps, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps };
|
|
29242
|
+
export { type AutocompleteString, type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, 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 PinAttributeMap, 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 SchematicPinLabel, 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, type VoltageSourceProps, type WaveShape, 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, pinAttributeMap, 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, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRowProps, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageSourceProps };
|