@tscircuit/props 0.0.580 → 0.0.582
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 +18 -12
- package/dist/index.d.ts +131 -72
- package/dist/index.js +1033 -1004
- package/dist/index.js.map +1 -1
- package/lib/assembly/device.ts +15 -0
- package/lib/assembly/index.ts +7 -0
- package/lib/components/chip.ts +16 -1
- package/lib/components/internal-circuit.ts +19 -0
- package/lib/index.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as zod from 'zod';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
import * as react from 'react';
|
|
4
|
-
import { ReactElement } from 'react';
|
|
4
|
+
import { ReactElement, ReactNode } from 'react';
|
|
5
5
|
import { LayerRef, AnyCircuitElement, LayerRefInput, SourceNet, PcbPort, SourcePort, PcbComponent, SourceComponentBase, CircuitJsonError, Point as Point$1, RouteHintPoint, PcbTrace, AnySourceComponent, VisibleLayer, RouteHintPointInput } from 'circuit-json';
|
|
6
6
|
|
|
7
7
|
declare const direction: z.ZodEnum<["up", "down", "left", "right"]>;
|
|
@@ -97,6 +97,29 @@ declare const commonShapeProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
97
97
|
radius: string | number;
|
|
98
98
|
}>]>;
|
|
99
99
|
|
|
100
|
+
interface AssemblyDeviceProps {
|
|
101
|
+
/** Product-level assembly identity. */
|
|
102
|
+
name?: string;
|
|
103
|
+
}
|
|
104
|
+
declare const assemblyDeviceProps: z.ZodObject<{
|
|
105
|
+
name: z.ZodOptional<z.ZodString>;
|
|
106
|
+
}, "strip", z.ZodTypeAny, {
|
|
107
|
+
name?: string | undefined;
|
|
108
|
+
}, {
|
|
109
|
+
name?: string | undefined;
|
|
110
|
+
}>;
|
|
111
|
+
type AssemblyDevicePropsInput = z.input<typeof assemblyDeviceProps>;
|
|
112
|
+
|
|
113
|
+
declare const assemblyProps: {
|
|
114
|
+
readonly device: zod.ZodObject<{
|
|
115
|
+
name: zod.ZodOptional<zod.ZodString>;
|
|
116
|
+
}, "strip", zod.ZodTypeAny, {
|
|
117
|
+
name?: string | undefined;
|
|
118
|
+
}, {
|
|
119
|
+
name?: string | undefined;
|
|
120
|
+
}>;
|
|
121
|
+
};
|
|
122
|
+
|
|
100
123
|
declare const enclosureCutoutApertureShapes: readonly ["pill", "rect", "circle"];
|
|
101
124
|
type EnclosureCutoutApertureShape = CommonShapeProps["shape"];
|
|
102
125
|
/**
|
|
@@ -18817,9 +18840,9 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
18817
18840
|
symbol?: SymbolProp | undefined;
|
|
18818
18841
|
width?: number | undefined;
|
|
18819
18842
|
height?: number | undefined;
|
|
18843
|
+
name?: string | undefined;
|
|
18820
18844
|
key?: any;
|
|
18821
18845
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
18822
|
-
name?: string | undefined;
|
|
18823
18846
|
pcbX?: string | number | undefined;
|
|
18824
18847
|
pcbY?: string | number | undefined;
|
|
18825
18848
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -19075,11 +19098,11 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
19075
19098
|
symbol?: SymbolProp | undefined;
|
|
19076
19099
|
width?: string | number | undefined;
|
|
19077
19100
|
height?: string | number | undefined;
|
|
19101
|
+
name?: string | undefined;
|
|
19078
19102
|
key?: any;
|
|
19079
19103
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
19080
19104
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
19081
19105
|
} | undefined;
|
|
19082
|
-
name?: string | undefined;
|
|
19083
19106
|
pcbX?: string | number | undefined;
|
|
19084
19107
|
pcbY?: string | number | undefined;
|
|
19085
19108
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -20102,9 +20125,9 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20102
20125
|
symbol?: SymbolProp | undefined;
|
|
20103
20126
|
width?: number | undefined;
|
|
20104
20127
|
height?: number | undefined;
|
|
20128
|
+
name?: string | undefined;
|
|
20105
20129
|
key?: any;
|
|
20106
20130
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
20107
|
-
name?: string | undefined;
|
|
20108
20131
|
pcbX?: string | number | undefined;
|
|
20109
20132
|
pcbY?: string | number | undefined;
|
|
20110
20133
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -20420,11 +20443,11 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20420
20443
|
symbol?: SymbolProp | undefined;
|
|
20421
20444
|
width?: string | number | undefined;
|
|
20422
20445
|
height?: string | number | undefined;
|
|
20446
|
+
name?: string | undefined;
|
|
20423
20447
|
key?: any;
|
|
20424
20448
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
20425
20449
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
20426
20450
|
} | undefined;
|
|
20427
|
-
name?: string | undefined;
|
|
20428
20451
|
pcbX?: string | number | undefined;
|
|
20429
20452
|
pcbY?: string | number | undefined;
|
|
20430
20453
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -21511,9 +21534,9 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21511
21534
|
symbol?: SymbolProp | undefined;
|
|
21512
21535
|
width?: number | undefined;
|
|
21513
21536
|
height?: number | undefined;
|
|
21537
|
+
name?: string | undefined;
|
|
21514
21538
|
key?: any;
|
|
21515
21539
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
21516
|
-
name?: string | undefined;
|
|
21517
21540
|
pcbX?: string | number | undefined;
|
|
21518
21541
|
pcbY?: string | number | undefined;
|
|
21519
21542
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -21830,11 +21853,11 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21830
21853
|
symbol?: SymbolProp | undefined;
|
|
21831
21854
|
width?: string | number | undefined;
|
|
21832
21855
|
height?: string | number | undefined;
|
|
21856
|
+
name?: string | undefined;
|
|
21833
21857
|
key?: any;
|
|
21834
21858
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
21835
21859
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
21836
21860
|
} | undefined;
|
|
21837
|
-
name?: string | undefined;
|
|
21838
21861
|
pcbX?: string | number | undefined;
|
|
21839
21862
|
pcbY?: string | number | undefined;
|
|
21840
21863
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -22716,9 +22739,9 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22716
22739
|
symbol?: SymbolProp | undefined;
|
|
22717
22740
|
width?: number | undefined;
|
|
22718
22741
|
height?: number | undefined;
|
|
22742
|
+
name?: string | undefined;
|
|
22719
22743
|
key?: any;
|
|
22720
22744
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
22721
|
-
name?: string | undefined;
|
|
22722
22745
|
pcbX?: string | number | undefined;
|
|
22723
22746
|
pcbY?: string | number | undefined;
|
|
22724
22747
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -22975,11 +22998,11 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22975
22998
|
symbol?: SymbolProp | undefined;
|
|
22976
22999
|
width?: string | number | undefined;
|
|
22977
23000
|
height?: string | number | undefined;
|
|
23001
|
+
name?: string | undefined;
|
|
22978
23002
|
key?: any;
|
|
22979
23003
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
22980
23004
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
22981
23005
|
} | undefined;
|
|
22982
|
-
name?: string | undefined;
|
|
22983
23006
|
pcbX?: string | number | undefined;
|
|
22984
23007
|
pcbY?: string | number | undefined;
|
|
22985
23008
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -24004,9 +24027,9 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
24004
24027
|
symbol?: SymbolProp | undefined;
|
|
24005
24028
|
width?: number | undefined;
|
|
24006
24029
|
height?: number | undefined;
|
|
24030
|
+
name?: string | undefined;
|
|
24007
24031
|
key?: any;
|
|
24008
24032
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
24009
|
-
name?: string | undefined;
|
|
24010
24033
|
pcbX?: string | number | undefined;
|
|
24011
24034
|
pcbY?: string | number | undefined;
|
|
24012
24035
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -24323,11 +24346,11 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
24323
24346
|
symbol?: SymbolProp | undefined;
|
|
24324
24347
|
width?: string | number | undefined;
|
|
24325
24348
|
height?: string | number | undefined;
|
|
24349
|
+
name?: string | undefined;
|
|
24326
24350
|
key?: any;
|
|
24327
24351
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
24328
24352
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
24329
24353
|
} | undefined;
|
|
24330
|
-
name?: string | undefined;
|
|
24331
24354
|
pcbX?: string | number | undefined;
|
|
24332
24355
|
pcbY?: string | number | undefined;
|
|
24333
24356
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -25471,10 +25494,10 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25471
25494
|
symbol?: SymbolProp | undefined;
|
|
25472
25495
|
width?: number | undefined;
|
|
25473
25496
|
height?: number | undefined;
|
|
25497
|
+
name?: string | undefined;
|
|
25474
25498
|
key?: any;
|
|
25475
25499
|
thickness?: number | undefined;
|
|
25476
25500
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
25477
|
-
name?: string | undefined;
|
|
25478
25501
|
pcbX?: string | number | undefined;
|
|
25479
25502
|
pcbY?: string | number | undefined;
|
|
25480
25503
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -25804,12 +25827,12 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25804
25827
|
symbol?: SymbolProp | undefined;
|
|
25805
25828
|
width?: string | number | undefined;
|
|
25806
25829
|
height?: string | number | undefined;
|
|
25830
|
+
name?: string | undefined;
|
|
25807
25831
|
key?: any;
|
|
25808
25832
|
thickness?: string | number | undefined;
|
|
25809
25833
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
25810
25834
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
25811
25835
|
} | undefined;
|
|
25812
|
-
name?: string | undefined;
|
|
25813
25836
|
layers?: 1 | 2 | 4 | 6 | 8 | undefined;
|
|
25814
25837
|
pcbX?: string | number | undefined;
|
|
25815
25838
|
pcbY?: string | number | undefined;
|
|
@@ -26757,9 +26780,9 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26757
26780
|
symbol?: SymbolProp | undefined;
|
|
26758
26781
|
width?: number | undefined;
|
|
26759
26782
|
height?: number | undefined;
|
|
26783
|
+
name?: string | undefined;
|
|
26760
26784
|
key?: any;
|
|
26761
26785
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
26762
|
-
name?: string | undefined;
|
|
26763
26786
|
pcbX?: string | number | undefined;
|
|
26764
26787
|
pcbY?: string | number | undefined;
|
|
26765
26788
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -27032,11 +27055,11 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
27032
27055
|
symbol?: SymbolProp | undefined;
|
|
27033
27056
|
width?: string | number | undefined;
|
|
27034
27057
|
height?: string | number | undefined;
|
|
27058
|
+
name?: string | undefined;
|
|
27035
27059
|
key?: any;
|
|
27036
27060
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
27037
27061
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
27038
27062
|
} | undefined;
|
|
27039
|
-
name?: string | undefined;
|
|
27040
27063
|
pcbX?: string | number | undefined;
|
|
27041
27064
|
pcbY?: string | number | undefined;
|
|
27042
27065
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -27896,9 +27919,9 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
27896
27919
|
symbol?: SymbolProp | undefined;
|
|
27897
27920
|
width?: number | undefined;
|
|
27898
27921
|
height?: number | undefined;
|
|
27922
|
+
name?: string | undefined;
|
|
27899
27923
|
key?: any;
|
|
27900
27924
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
27901
|
-
name?: string | undefined;
|
|
27902
27925
|
pcbX?: string | number | undefined;
|
|
27903
27926
|
pcbY?: string | number | undefined;
|
|
27904
27927
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -28171,11 +28194,11 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
28171
28194
|
symbol?: SymbolProp | undefined;
|
|
28172
28195
|
width?: string | number | undefined;
|
|
28173
28196
|
height?: string | number | undefined;
|
|
28197
|
+
name?: string | undefined;
|
|
28174
28198
|
key?: any;
|
|
28175
28199
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
28176
28200
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
28177
28201
|
} | undefined;
|
|
28178
|
-
name?: string | undefined;
|
|
28179
28202
|
pcbX?: string | number | undefined;
|
|
28180
28203
|
pcbY?: string | number | undefined;
|
|
28181
28204
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -29222,9 +29245,9 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29222
29245
|
symbol?: SymbolProp | undefined;
|
|
29223
29246
|
width?: number | undefined;
|
|
29224
29247
|
height?: number | undefined;
|
|
29248
|
+
name?: string | undefined;
|
|
29225
29249
|
key?: any;
|
|
29226
29250
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
29227
|
-
name?: string | undefined;
|
|
29228
29251
|
pcbX?: string | number | undefined;
|
|
29229
29252
|
pcbY?: string | number | undefined;
|
|
29230
29253
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -29540,11 +29563,11 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29540
29563
|
symbol?: SymbolProp | undefined;
|
|
29541
29564
|
width?: string | number | undefined;
|
|
29542
29565
|
height?: string | number | undefined;
|
|
29566
|
+
name?: string | undefined;
|
|
29543
29567
|
key?: any;
|
|
29544
29568
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
29545
29569
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
29546
29570
|
} | undefined;
|
|
29547
|
-
name?: string | undefined;
|
|
29548
29571
|
pcbX?: string | number | undefined;
|
|
29549
29572
|
pcbY?: string | number | undefined;
|
|
29550
29573
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -29860,6 +29883,21 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29860
29883
|
schMatchAdapt?: boolean | undefined;
|
|
29861
29884
|
}>;
|
|
29862
29885
|
|
|
29886
|
+
/**
|
|
29887
|
+
* Props for a semantic container that groups the functional components inside
|
|
29888
|
+
* a physical chip package.
|
|
29889
|
+
*/
|
|
29890
|
+
interface InternalCircuitProps {
|
|
29891
|
+
children?: ReactNode;
|
|
29892
|
+
}
|
|
29893
|
+
declare const internalCircuitProps: z.ZodObject<{
|
|
29894
|
+
children: z.ZodOptional<z.ZodType<ReactNode, z.ZodTypeDef, ReactNode>>;
|
|
29895
|
+
}, "strip", z.ZodTypeAny, {
|
|
29896
|
+
children?: ReactNode;
|
|
29897
|
+
}, {
|
|
29898
|
+
children?: ReactNode;
|
|
29899
|
+
}>;
|
|
29900
|
+
|
|
29863
29901
|
interface SpiceModelProps {
|
|
29864
29902
|
source: string;
|
|
29865
29903
|
spicePinMapping?: Record<string, string>;
|
|
@@ -29882,6 +29920,7 @@ interface PinCompatibleVariant {
|
|
|
29882
29920
|
supplierPartNumber?: SupplierPartNumbers;
|
|
29883
29921
|
}
|
|
29884
29922
|
type SpiceModelElement = ReactElement<SpiceModelProps>;
|
|
29923
|
+
type InternalCircuitElement = ReactElement<InternalCircuitProps, "internalcircuit">;
|
|
29885
29924
|
interface ChipPropsSU<PinLabel extends SchematicPinLabel = SchematicPinLabel> extends CommonComponentProps<PinLabel> {
|
|
29886
29925
|
manufacturerPartNumber?: string;
|
|
29887
29926
|
pinLabels?: PinLabelsProp<SchematicPinLabel, PinLabel>;
|
|
@@ -29912,6 +29951,11 @@ interface ChipPropsSU<PinLabel extends SchematicPinLabel = SchematicPinLabel> ex
|
|
|
29912
29951
|
noConnect?: readonly PinLabel[] | PinLabel[];
|
|
29913
29952
|
connections?: Connections<PinLabel>;
|
|
29914
29953
|
spiceModel?: SpiceModelElement;
|
|
29954
|
+
/**
|
|
29955
|
+
* Functional components contained inside this physical chip package,
|
|
29956
|
+
* wrapped in an `<internalcircuit />` element.
|
|
29957
|
+
*/
|
|
29958
|
+
internalCircuit?: InternalCircuitElement;
|
|
29915
29959
|
}
|
|
29916
29960
|
type ChipProps<PinLabelMap extends PinLabelsProp | string = string> = ChipPropsSU<PinLabelMap extends PinLabelsProp ? PinLabelFromPinLabelMap<PinLabelMap> | keyof PinLabelMap : PinLabelMap>;
|
|
29917
29961
|
/**
|
|
@@ -33610,6 +33654,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
33610
33654
|
noConnect: z.ZodOptional<z.ZodUnion<[z.ZodReadonly<z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodString, "many">]>>;
|
|
33611
33655
|
connections: z.ZodOptional<z.ZodPipeline<z.ZodType<Partial<Record<string, string | string[] | readonly string[]>>, z.ZodTypeDef, Partial<Record<string, string | string[] | readonly string[]>>>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
33612
33656
|
spiceModel: z.ZodOptional<z.ZodType<SpiceModelElement, z.ZodTypeDef, SpiceModelElement>>;
|
|
33657
|
+
internalCircuit: z.ZodOptional<z.ZodType<InternalCircuitElement, z.ZodTypeDef, InternalCircuitElement>>;
|
|
33613
33658
|
}, "strip", z.ZodTypeAny, {
|
|
33614
33659
|
name: string;
|
|
33615
33660
|
symbol?: SymbolProp | undefined;
|
|
@@ -34266,6 +34311,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
34266
34311
|
noSchematicRepresentation?: boolean | undefined;
|
|
34267
34312
|
noConnect?: readonly string[] | string[] | undefined;
|
|
34268
34313
|
spiceModel?: SpiceModelElement | undefined;
|
|
34314
|
+
internalCircuit?: InternalCircuitElement | undefined;
|
|
34269
34315
|
}, {
|
|
34270
34316
|
name: string;
|
|
34271
34317
|
symbol?: SymbolProp | undefined;
|
|
@@ -34924,6 +34970,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
34924
34970
|
noSchematicRepresentation?: boolean | undefined;
|
|
34925
34971
|
noConnect?: readonly string[] | string[] | undefined;
|
|
34926
34972
|
spiceModel?: SpiceModelElement | undefined;
|
|
34973
|
+
internalCircuit?: InternalCircuitElement | undefined;
|
|
34927
34974
|
}>;
|
|
34928
34975
|
/**
|
|
34929
34976
|
* @deprecated Use ChipProps instead.
|
|
@@ -38584,6 +38631,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
38584
38631
|
noConnect: z.ZodOptional<z.ZodUnion<[z.ZodReadonly<z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodString, "many">]>>;
|
|
38585
38632
|
connections: z.ZodOptional<z.ZodPipeline<z.ZodType<Partial<Record<string, string | string[] | readonly string[]>>, z.ZodTypeDef, Partial<Record<string, string | string[] | readonly string[]>>>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
38586
38633
|
spiceModel: z.ZodOptional<z.ZodType<SpiceModelElement, z.ZodTypeDef, SpiceModelElement>>;
|
|
38634
|
+
internalCircuit: z.ZodOptional<z.ZodType<InternalCircuitElement, z.ZodTypeDef, InternalCircuitElement>>;
|
|
38587
38635
|
}, "strip", z.ZodTypeAny, {
|
|
38588
38636
|
name: string;
|
|
38589
38637
|
symbol?: SymbolProp | undefined;
|
|
@@ -39240,6 +39288,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
39240
39288
|
noSchematicRepresentation?: boolean | undefined;
|
|
39241
39289
|
noConnect?: readonly string[] | string[] | undefined;
|
|
39242
39290
|
spiceModel?: SpiceModelElement | undefined;
|
|
39291
|
+
internalCircuit?: InternalCircuitElement | undefined;
|
|
39243
39292
|
}, {
|
|
39244
39293
|
name: string;
|
|
39245
39294
|
symbol?: SymbolProp | undefined;
|
|
@@ -39898,6 +39947,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
39898
39947
|
noSchematicRepresentation?: boolean | undefined;
|
|
39899
39948
|
noConnect?: readonly string[] | string[] | undefined;
|
|
39900
39949
|
spiceModel?: SpiceModelElement | undefined;
|
|
39950
|
+
internalCircuit?: InternalCircuitElement | undefined;
|
|
39901
39951
|
}>;
|
|
39902
39952
|
type InferredChipProps = z.input<typeof chipProps>;
|
|
39903
39953
|
|
|
@@ -43557,6 +43607,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
43557
43607
|
noConnect: z.ZodOptional<z.ZodUnion<[z.ZodReadonly<z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodString, "many">]>>;
|
|
43558
43608
|
connections: z.ZodOptional<z.ZodPipeline<z.ZodType<Partial<Record<string, string | string[] | readonly string[]>>, z.ZodTypeDef, Partial<Record<string, string | string[] | readonly string[]>>>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
43559
43609
|
spiceModel: z.ZodOptional<z.ZodType<SpiceModelElement, z.ZodTypeDef, SpiceModelElement>>;
|
|
43610
|
+
internalCircuit: z.ZodOptional<z.ZodType<InternalCircuitElement, z.ZodTypeDef, InternalCircuitElement>>;
|
|
43560
43611
|
}, "strip", z.ZodTypeAny, {
|
|
43561
43612
|
name: string;
|
|
43562
43613
|
symbol?: SymbolProp | undefined;
|
|
@@ -44213,6 +44264,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
44213
44264
|
noSchematicRepresentation?: boolean | undefined;
|
|
44214
44265
|
noConnect?: readonly string[] | string[] | undefined;
|
|
44215
44266
|
spiceModel?: SpiceModelElement | undefined;
|
|
44267
|
+
internalCircuit?: InternalCircuitElement | undefined;
|
|
44216
44268
|
}, {
|
|
44217
44269
|
name: string;
|
|
44218
44270
|
symbol?: SymbolProp | undefined;
|
|
@@ -44871,6 +44923,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
44871
44923
|
noSchematicRepresentation?: boolean | undefined;
|
|
44872
44924
|
noConnect?: readonly string[] | string[] | undefined;
|
|
44873
44925
|
spiceModel?: SpiceModelElement | undefined;
|
|
44926
|
+
internalCircuit?: InternalCircuitElement | undefined;
|
|
44874
44927
|
}>;
|
|
44875
44928
|
interface PinoutProps<PinLabelMap extends PinLabelsProp | string = string> extends ChipProps<PinLabelMap> {
|
|
44876
44929
|
}
|
|
@@ -58476,6 +58529,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
58476
58529
|
noConnect: z.ZodOptional<z.ZodUnion<[z.ZodReadonly<z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodString, "many">]>>;
|
|
58477
58530
|
connections: z.ZodOptional<z.ZodPipeline<z.ZodType<Partial<Record<string, string | string[] | readonly string[]>>, z.ZodTypeDef, Partial<Record<string, string | string[] | readonly string[]>>>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
58478
58531
|
spiceModel: z.ZodOptional<z.ZodType<SpiceModelElement, z.ZodTypeDef, SpiceModelElement>>;
|
|
58532
|
+
internalCircuit: z.ZodOptional<z.ZodType<InternalCircuitElement, z.ZodTypeDef, InternalCircuitElement>>;
|
|
58479
58533
|
} & {
|
|
58480
58534
|
standard: z.ZodOptional<z.ZodEnum<["usb_c", "m2"]>>;
|
|
58481
58535
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -59134,6 +59188,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
59134
59188
|
noSchematicRepresentation?: boolean | undefined;
|
|
59135
59189
|
noConnect?: readonly string[] | string[] | undefined;
|
|
59136
59190
|
spiceModel?: SpiceModelElement | undefined;
|
|
59191
|
+
internalCircuit?: InternalCircuitElement | undefined;
|
|
59137
59192
|
standard?: "usb_c" | "m2" | undefined;
|
|
59138
59193
|
}, {
|
|
59139
59194
|
name: string;
|
|
@@ -59793,6 +59848,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
59793
59848
|
noSchematicRepresentation?: boolean | undefined;
|
|
59794
59849
|
noConnect?: readonly string[] | string[] | undefined;
|
|
59795
59850
|
spiceModel?: SpiceModelElement | undefined;
|
|
59851
|
+
internalCircuit?: InternalCircuitElement | undefined;
|
|
59796
59852
|
standard?: "usb_c" | "m2" | undefined;
|
|
59797
59853
|
}>;
|
|
59798
59854
|
|
|
@@ -89837,10 +89893,10 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89837
89893
|
symbol?: SymbolProp | undefined;
|
|
89838
89894
|
width?: number | undefined;
|
|
89839
89895
|
height?: number | undefined;
|
|
89896
|
+
name?: string | undefined;
|
|
89840
89897
|
key?: any;
|
|
89841
89898
|
thickness?: number | undefined;
|
|
89842
89899
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
89843
|
-
name?: string | undefined;
|
|
89844
89900
|
pcbX?: string | number | undefined;
|
|
89845
89901
|
pcbY?: string | number | undefined;
|
|
89846
89902
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -90180,12 +90236,12 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
90180
90236
|
symbol?: SymbolProp | undefined;
|
|
90181
90237
|
width?: string | number | undefined;
|
|
90182
90238
|
height?: string | number | undefined;
|
|
90239
|
+
name?: string | undefined;
|
|
90183
90240
|
key?: any;
|
|
90184
90241
|
thickness?: string | number | undefined;
|
|
90185
90242
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
90186
90243
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
90187
90244
|
} | undefined;
|
|
90188
|
-
name?: string | undefined;
|
|
90189
90245
|
layers?: 1 | 2 | 4 | 6 | 8 | undefined;
|
|
90190
90246
|
pcbX?: string | number | undefined;
|
|
90191
90247
|
pcbY?: string | number | undefined;
|
|
@@ -100919,8 +100975,8 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
100919
100975
|
shape: "rect";
|
|
100920
100976
|
width: number;
|
|
100921
100977
|
height: number;
|
|
100922
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
100923
100978
|
name?: string | undefined;
|
|
100979
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
100924
100980
|
pcbX?: string | number | undefined;
|
|
100925
100981
|
pcbY?: string | number | undefined;
|
|
100926
100982
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -100964,10 +101020,10 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
100964
101020
|
shape: "rect";
|
|
100965
101021
|
width: string | number;
|
|
100966
101022
|
height: string | number;
|
|
101023
|
+
name?: string | undefined;
|
|
100967
101024
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
100968
101025
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
100969
101026
|
} | undefined;
|
|
100970
|
-
name?: string | undefined;
|
|
100971
101027
|
pcbX?: string | number | undefined;
|
|
100972
101028
|
pcbY?: string | number | undefined;
|
|
100973
101029
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101092,8 +101148,8 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
101092
101148
|
width: number;
|
|
101093
101149
|
height: number;
|
|
101094
101150
|
ccwRotation: number;
|
|
101095
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101096
101151
|
name?: string | undefined;
|
|
101152
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101097
101153
|
pcbX?: string | number | undefined;
|
|
101098
101154
|
pcbY?: string | number | undefined;
|
|
101099
101155
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101137,10 +101193,10 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
101137
101193
|
width: string | number;
|
|
101138
101194
|
height: string | number;
|
|
101139
101195
|
ccwRotation: number;
|
|
101196
|
+
name?: string | undefined;
|
|
101140
101197
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
101141
101198
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
101142
101199
|
} | undefined;
|
|
101143
|
-
name?: string | undefined;
|
|
101144
101200
|
pcbX?: string | number | undefined;
|
|
101145
101201
|
pcbY?: string | number | undefined;
|
|
101146
101202
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101255,8 +101311,8 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
101255
101311
|
}, "strip", z.ZodTypeAny, {
|
|
101256
101312
|
shape: "circle";
|
|
101257
101313
|
radius: number;
|
|
101258
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101259
101314
|
name?: string | undefined;
|
|
101315
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101260
101316
|
pcbX?: string | number | undefined;
|
|
101261
101317
|
pcbY?: string | number | undefined;
|
|
101262
101318
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101293,10 +101349,10 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
101293
101349
|
}, {
|
|
101294
101350
|
shape: "circle";
|
|
101295
101351
|
radius: string | number;
|
|
101352
|
+
name?: string | undefined;
|
|
101296
101353
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
101297
101354
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
101298
101355
|
} | undefined;
|
|
101299
|
-
name?: string | undefined;
|
|
101300
101356
|
pcbX?: string | number | undefined;
|
|
101301
101357
|
pcbY?: string | number | undefined;
|
|
101302
101358
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101410,8 +101466,8 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
101410
101466
|
width: number;
|
|
101411
101467
|
height: number;
|
|
101412
101468
|
radius: number;
|
|
101413
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101414
101469
|
name?: string | undefined;
|
|
101470
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101415
101471
|
pcbX?: string | number | undefined;
|
|
101416
101472
|
pcbY?: string | number | undefined;
|
|
101417
101473
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101450,10 +101506,10 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
101450
101506
|
width: string | number;
|
|
101451
101507
|
height: string | number;
|
|
101452
101508
|
radius: string | number;
|
|
101509
|
+
name?: string | undefined;
|
|
101453
101510
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
101454
101511
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
101455
101512
|
} | undefined;
|
|
101456
|
-
name?: string | undefined;
|
|
101457
101513
|
pcbX?: string | number | undefined;
|
|
101458
101514
|
pcbY?: string | number | undefined;
|
|
101459
101515
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101575,8 +101631,8 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
101575
101631
|
x: number;
|
|
101576
101632
|
y: number;
|
|
101577
101633
|
}[];
|
|
101578
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101579
101634
|
name?: string | undefined;
|
|
101635
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101580
101636
|
pcbX?: string | number | undefined;
|
|
101581
101637
|
pcbY?: string | number | undefined;
|
|
101582
101638
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101616,10 +101672,10 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
101616
101672
|
x: string | number;
|
|
101617
101673
|
y: string | number;
|
|
101618
101674
|
}[];
|
|
101675
|
+
name?: string | undefined;
|
|
101619
101676
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
101620
101677
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
101621
101678
|
} | undefined;
|
|
101622
|
-
name?: string | undefined;
|
|
101623
101679
|
pcbX?: string | number | undefined;
|
|
101624
101680
|
pcbY?: string | number | undefined;
|
|
101625
101681
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101729,8 +101785,8 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
101729
101785
|
}, "strip", z.ZodTypeAny, {
|
|
101730
101786
|
shape: "circle";
|
|
101731
101787
|
radius: number;
|
|
101732
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101733
101788
|
name?: string | undefined;
|
|
101789
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101734
101790
|
pcbX?: string | number | undefined;
|
|
101735
101791
|
pcbY?: string | number | undefined;
|
|
101736
101792
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101767,10 +101823,10 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
101767
101823
|
}, {
|
|
101768
101824
|
shape: "circle";
|
|
101769
101825
|
radius: string | number;
|
|
101826
|
+
name?: string | undefined;
|
|
101770
101827
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
101771
101828
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
101772
101829
|
} | undefined;
|
|
101773
|
-
name?: string | undefined;
|
|
101774
101830
|
pcbX?: string | number | undefined;
|
|
101775
101831
|
pcbY?: string | number | undefined;
|
|
101776
101832
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101887,8 +101943,8 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
101887
101943
|
shape: "rect";
|
|
101888
101944
|
width: number;
|
|
101889
101945
|
height: number;
|
|
101890
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101891
101946
|
name?: string | undefined;
|
|
101947
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101892
101948
|
pcbX?: string | number | undefined;
|
|
101893
101949
|
pcbY?: string | number | undefined;
|
|
101894
101950
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -101932,10 +101988,10 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
101932
101988
|
shape: "rect";
|
|
101933
101989
|
width: string | number;
|
|
101934
101990
|
height: string | number;
|
|
101991
|
+
name?: string | undefined;
|
|
101935
101992
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
101936
101993
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
101937
101994
|
} | undefined;
|
|
101938
|
-
name?: string | undefined;
|
|
101939
101995
|
pcbX?: string | number | undefined;
|
|
101940
101996
|
pcbY?: string | number | undefined;
|
|
101941
101997
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -102059,8 +102115,8 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102059
102115
|
width: number;
|
|
102060
102116
|
height: number;
|
|
102061
102117
|
ccwRotation: number;
|
|
102062
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
102063
102118
|
name?: string | undefined;
|
|
102119
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
102064
102120
|
pcbX?: string | number | undefined;
|
|
102065
102121
|
pcbY?: string | number | undefined;
|
|
102066
102122
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -102104,10 +102160,10 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102104
102160
|
width: string | number;
|
|
102105
102161
|
height: string | number;
|
|
102106
102162
|
ccwRotation: number;
|
|
102163
|
+
name?: string | undefined;
|
|
102107
102164
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
102108
102165
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
102109
102166
|
} | undefined;
|
|
102110
|
-
name?: string | undefined;
|
|
102111
102167
|
pcbX?: string | number | undefined;
|
|
102112
102168
|
pcbY?: string | number | undefined;
|
|
102113
102169
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -102225,8 +102281,8 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102225
102281
|
width: number;
|
|
102226
102282
|
height: number;
|
|
102227
102283
|
radius: number;
|
|
102228
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
102229
102284
|
name?: string | undefined;
|
|
102285
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
102230
102286
|
pcbX?: string | number | undefined;
|
|
102231
102287
|
pcbY?: string | number | undefined;
|
|
102232
102288
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -102265,10 +102321,10 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102265
102321
|
width: string | number;
|
|
102266
102322
|
height: string | number;
|
|
102267
102323
|
radius: string | number;
|
|
102324
|
+
name?: string | undefined;
|
|
102268
102325
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
102269
102326
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
102270
102327
|
} | undefined;
|
|
102271
|
-
name?: string | undefined;
|
|
102272
102328
|
pcbX?: string | number | undefined;
|
|
102273
102329
|
pcbY?: string | number | undefined;
|
|
102274
102330
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -102389,8 +102445,8 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102389
102445
|
x: number;
|
|
102390
102446
|
y: number;
|
|
102391
102447
|
}[];
|
|
102392
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
102393
102448
|
name?: string | undefined;
|
|
102449
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
102394
102450
|
pcbX?: string | number | undefined;
|
|
102395
102451
|
pcbY?: string | number | undefined;
|
|
102396
102452
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -102430,10 +102486,10 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102430
102486
|
x: string | number;
|
|
102431
102487
|
y: string | number;
|
|
102432
102488
|
}[];
|
|
102489
|
+
name?: string | undefined;
|
|
102433
102490
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
102434
102491
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
102435
102492
|
} | undefined;
|
|
102436
|
-
name?: string | undefined;
|
|
102437
102493
|
pcbX?: string | number | undefined;
|
|
102438
102494
|
pcbY?: string | number | undefined;
|
|
102439
102495
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103151,8 +103207,8 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103151
103207
|
}, "strip", z.ZodTypeAny, {
|
|
103152
103208
|
shape?: "circle" | undefined;
|
|
103153
103209
|
radius?: number | undefined;
|
|
103154
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103155
103210
|
name?: string | undefined;
|
|
103211
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103156
103212
|
pcbX?: string | number | undefined;
|
|
103157
103213
|
pcbY?: string | number | undefined;
|
|
103158
103214
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103190,10 +103246,10 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103190
103246
|
}, {
|
|
103191
103247
|
shape?: "circle" | undefined;
|
|
103192
103248
|
radius?: string | number | undefined;
|
|
103249
|
+
name?: string | undefined;
|
|
103193
103250
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
103194
103251
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
103195
103252
|
} | undefined;
|
|
103196
|
-
name?: string | undefined;
|
|
103197
103253
|
pcbX?: string | number | undefined;
|
|
103198
103254
|
pcbY?: string | number | undefined;
|
|
103199
103255
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103232,8 +103288,8 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103232
103288
|
diameter: number;
|
|
103233
103289
|
radius: number;
|
|
103234
103290
|
shape?: "circle" | undefined;
|
|
103235
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103236
103291
|
name?: string | undefined;
|
|
103292
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103237
103293
|
pcbX?: string | number | undefined;
|
|
103238
103294
|
pcbY?: string | number | undefined;
|
|
103239
103295
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103270,10 +103326,10 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103270
103326
|
}, {
|
|
103271
103327
|
shape?: "circle" | undefined;
|
|
103272
103328
|
radius?: string | number | undefined;
|
|
103329
|
+
name?: string | undefined;
|
|
103273
103330
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
103274
103331
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
103275
103332
|
} | undefined;
|
|
103276
|
-
name?: string | undefined;
|
|
103277
103333
|
pcbX?: string | number | undefined;
|
|
103278
103334
|
pcbY?: string | number | undefined;
|
|
103279
103335
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103384,8 +103440,8 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103384
103440
|
shape: "pill";
|
|
103385
103441
|
width: number;
|
|
103386
103442
|
height: number;
|
|
103387
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103388
103443
|
name?: string | undefined;
|
|
103444
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103389
103445
|
pcbX?: string | number | undefined;
|
|
103390
103446
|
pcbY?: string | number | undefined;
|
|
103391
103447
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103423,10 +103479,10 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103423
103479
|
shape: "pill";
|
|
103424
103480
|
width: string | number;
|
|
103425
103481
|
height: string | number;
|
|
103482
|
+
name?: string | undefined;
|
|
103426
103483
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
103427
103484
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
103428
103485
|
} | undefined;
|
|
103429
|
-
name?: string | undefined;
|
|
103430
103486
|
pcbX?: string | number | undefined;
|
|
103431
103487
|
pcbY?: string | number | undefined;
|
|
103432
103488
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103536,8 +103592,8 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103536
103592
|
shape: "oval";
|
|
103537
103593
|
width: number;
|
|
103538
103594
|
height: number;
|
|
103539
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103540
103595
|
name?: string | undefined;
|
|
103596
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103541
103597
|
pcbX?: string | number | undefined;
|
|
103542
103598
|
pcbY?: string | number | undefined;
|
|
103543
103599
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103575,10 +103631,10 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103575
103631
|
shape: "oval";
|
|
103576
103632
|
width: string | number;
|
|
103577
103633
|
height: string | number;
|
|
103634
|
+
name?: string | undefined;
|
|
103578
103635
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
103579
103636
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
103580
103637
|
} | undefined;
|
|
103581
|
-
name?: string | undefined;
|
|
103582
103638
|
pcbX?: string | number | undefined;
|
|
103583
103639
|
pcbY?: string | number | undefined;
|
|
103584
103640
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103688,8 +103744,8 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103688
103744
|
shape: "rect";
|
|
103689
103745
|
width: number;
|
|
103690
103746
|
height: number;
|
|
103691
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103692
103747
|
name?: string | undefined;
|
|
103748
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103693
103749
|
pcbX?: string | number | undefined;
|
|
103694
103750
|
pcbY?: string | number | undefined;
|
|
103695
103751
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103727,10 +103783,10 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103727
103783
|
shape: "rect";
|
|
103728
103784
|
width: string | number;
|
|
103729
103785
|
height: string | number;
|
|
103786
|
+
name?: string | undefined;
|
|
103730
103787
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
103731
103788
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
103732
103789
|
} | undefined;
|
|
103733
|
-
name?: string | undefined;
|
|
103734
103790
|
pcbX?: string | number | undefined;
|
|
103735
103791
|
pcbY?: string | number | undefined;
|
|
103736
103792
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -103948,9 +104004,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
103948
104004
|
getPortSelector: () => string;
|
|
103949
104005
|
})[];
|
|
103950
104006
|
width?: number | undefined;
|
|
104007
|
+
name?: string | undefined;
|
|
103951
104008
|
key?: string | undefined;
|
|
103952
104009
|
thickness?: number | undefined;
|
|
103953
|
-
name?: string | undefined;
|
|
103954
104010
|
highlightColor?: string | undefined;
|
|
103955
104011
|
displayName?: string | undefined;
|
|
103956
104012
|
maxLength?: number | undefined;
|
|
@@ -103990,9 +104046,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
103990
104046
|
getPortSelector: () => string;
|
|
103991
104047
|
})[];
|
|
103992
104048
|
width?: string | number | undefined;
|
|
104049
|
+
name?: string | undefined;
|
|
103993
104050
|
key?: string | undefined;
|
|
103994
104051
|
thickness?: string | number | undefined;
|
|
103995
|
-
name?: string | undefined;
|
|
103996
104052
|
highlightColor?: string | undefined;
|
|
103997
104053
|
displayName?: string | undefined;
|
|
103998
104054
|
maxLength?: string | number | undefined;
|
|
@@ -104221,9 +104277,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104221
104277
|
getPortSelector: () => string;
|
|
104222
104278
|
};
|
|
104223
104279
|
width?: number | undefined;
|
|
104280
|
+
name?: string | undefined;
|
|
104224
104281
|
key?: string | undefined;
|
|
104225
104282
|
thickness?: number | undefined;
|
|
104226
|
-
name?: string | undefined;
|
|
104227
104283
|
highlightColor?: string | undefined;
|
|
104228
104284
|
displayName?: string | undefined;
|
|
104229
104285
|
maxLength?: number | undefined;
|
|
@@ -104266,9 +104322,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104266
104322
|
getPortSelector: () => string;
|
|
104267
104323
|
};
|
|
104268
104324
|
width?: string | number | undefined;
|
|
104325
|
+
name?: string | undefined;
|
|
104269
104326
|
key?: string | undefined;
|
|
104270
104327
|
thickness?: string | number | undefined;
|
|
104271
|
-
name?: string | undefined;
|
|
104272
104328
|
highlightColor?: string | undefined;
|
|
104273
104329
|
displayName?: string | undefined;
|
|
104274
104330
|
maxLength?: string | number | undefined;
|
|
@@ -104497,9 +104553,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104497
104553
|
getPortSelector: () => string;
|
|
104498
104554
|
};
|
|
104499
104555
|
width?: number | undefined;
|
|
104556
|
+
name?: string | undefined;
|
|
104500
104557
|
key?: string | undefined;
|
|
104501
104558
|
thickness?: number | undefined;
|
|
104502
|
-
name?: string | undefined;
|
|
104503
104559
|
highlightColor?: string | undefined;
|
|
104504
104560
|
displayName?: string | undefined;
|
|
104505
104561
|
maxLength?: number | undefined;
|
|
@@ -104542,9 +104598,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104542
104598
|
getPortSelector: () => string;
|
|
104543
104599
|
};
|
|
104544
104600
|
width?: string | number | undefined;
|
|
104601
|
+
name?: string | undefined;
|
|
104545
104602
|
key?: string | undefined;
|
|
104546
104603
|
thickness?: string | number | undefined;
|
|
104547
|
-
name?: string | undefined;
|
|
104548
104604
|
highlightColor?: string | undefined;
|
|
104549
104605
|
displayName?: string | undefined;
|
|
104550
104606
|
maxLength?: string | number | undefined;
|
|
@@ -110174,9 +110230,9 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
110174
110230
|
symbol?: SymbolProp | undefined;
|
|
110175
110231
|
width?: number | undefined;
|
|
110176
110232
|
height?: number | undefined;
|
|
110233
|
+
name?: string | undefined;
|
|
110177
110234
|
key?: any;
|
|
110178
110235
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
110179
|
-
name?: string | undefined;
|
|
110180
110236
|
pcbX?: string | number | undefined;
|
|
110181
110237
|
pcbY?: string | number | undefined;
|
|
110182
110238
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -110531,11 +110587,11 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
110531
110587
|
symbol?: SymbolProp | undefined;
|
|
110532
110588
|
width?: string | number | undefined;
|
|
110533
110589
|
height?: string | number | undefined;
|
|
110590
|
+
name?: string | undefined;
|
|
110534
110591
|
key?: any;
|
|
110535
110592
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
110536
110593
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
110537
110594
|
} | undefined;
|
|
110538
|
-
name?: string | undefined;
|
|
110539
110595
|
pcbX?: string | number | undefined;
|
|
110540
110596
|
pcbY?: string | number | undefined;
|
|
110541
110597
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -119493,6 +119549,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
119493
119549
|
noConnect: z.ZodOptional<z.ZodUnion<[z.ZodReadonly<z.ZodArray<z.ZodString, "many">>, z.ZodArray<z.ZodString, "many">]>>;
|
|
119494
119550
|
connections: z.ZodOptional<z.ZodPipeline<z.ZodType<Partial<Record<string, string | string[] | readonly string[]>>, z.ZodTypeDef, Partial<Record<string, string | string[] | readonly string[]>>>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
119495
119551
|
spiceModel: z.ZodOptional<z.ZodType<SpiceModelElement, z.ZodTypeDef, SpiceModelElement>>;
|
|
119552
|
+
internalCircuit: z.ZodOptional<z.ZodType<InternalCircuitElement, z.ZodTypeDef, InternalCircuitElement>>;
|
|
119496
119553
|
}, "strip", z.ZodTypeAny, {
|
|
119497
119554
|
name: string;
|
|
119498
119555
|
symbol?: SymbolProp | undefined;
|
|
@@ -120149,6 +120206,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
120149
120206
|
noSchematicRepresentation?: boolean | undefined;
|
|
120150
120207
|
noConnect?: readonly string[] | string[] | undefined;
|
|
120151
120208
|
spiceModel?: SpiceModelElement | undefined;
|
|
120209
|
+
internalCircuit?: InternalCircuitElement | undefined;
|
|
120152
120210
|
}, {
|
|
120153
120211
|
name: string;
|
|
120154
120212
|
symbol?: SymbolProp | undefined;
|
|
@@ -120807,6 +120865,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
120807
120865
|
noSchematicRepresentation?: boolean | undefined;
|
|
120808
120866
|
noConnect?: readonly string[] | string[] | undefined;
|
|
120809
120867
|
spiceModel?: SpiceModelElement | undefined;
|
|
120868
|
+
internalCircuit?: InternalCircuitElement | undefined;
|
|
120810
120869
|
}>;
|
|
120811
120870
|
|
|
120812
120871
|
type SubcircuitProps = SubcircuitGroupProps;
|
|
@@ -121579,9 +121638,9 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121579
121638
|
symbol?: SymbolProp | undefined;
|
|
121580
121639
|
width?: number | undefined;
|
|
121581
121640
|
height?: number | undefined;
|
|
121641
|
+
name?: string | undefined;
|
|
121582
121642
|
key?: any;
|
|
121583
121643
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
121584
|
-
name?: string | undefined;
|
|
121585
121644
|
pcbX?: string | number | undefined;
|
|
121586
121645
|
pcbY?: string | number | undefined;
|
|
121587
121646
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -121897,11 +121956,11 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121897
121956
|
symbol?: SymbolProp | undefined;
|
|
121898
121957
|
width?: string | number | undefined;
|
|
121899
121958
|
height?: string | number | undefined;
|
|
121959
|
+
name?: string | undefined;
|
|
121900
121960
|
key?: any;
|
|
121901
121961
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
121902
121962
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
121903
121963
|
} | undefined;
|
|
121904
|
-
name?: string | undefined;
|
|
121905
121964
|
pcbX?: string | number | undefined;
|
|
121906
121965
|
pcbY?: string | number | undefined;
|
|
121907
121966
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -122340,8 +122399,8 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
122340
122399
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
122341
122400
|
phaseIndex: z.ZodOptional<z.ZodNumber>;
|
|
122342
122401
|
}, "strip", z.ZodTypeAny, {
|
|
122343
|
-
key?: any;
|
|
122344
122402
|
name?: string | undefined;
|
|
122403
|
+
key?: any;
|
|
122345
122404
|
connections?: string[] | undefined;
|
|
122346
122405
|
minTraceWidth?: number | undefined;
|
|
122347
122406
|
minViaHoleEdgeToViaHoleEdgeClearance?: number | undefined;
|
|
@@ -122364,8 +122423,8 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
122364
122423
|
} | undefined;
|
|
122365
122424
|
reroute?: boolean | undefined;
|
|
122366
122425
|
}, {
|
|
122367
|
-
key?: any;
|
|
122368
122426
|
name?: string | undefined;
|
|
122427
|
+
key?: any;
|
|
122369
122428
|
connections?: string[] | undefined;
|
|
122370
122429
|
minTraceWidth?: string | number | undefined;
|
|
122371
122430
|
minViaHoleEdgeToViaHoleEdgeClearance?: string | number | undefined;
|
|
@@ -122388,8 +122447,8 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
122388
122447
|
} | undefined;
|
|
122389
122448
|
reroute?: boolean | undefined;
|
|
122390
122449
|
}>, {
|
|
122391
|
-
key?: any;
|
|
122392
122450
|
name?: string | undefined;
|
|
122451
|
+
key?: any;
|
|
122393
122452
|
connections?: string[] | undefined;
|
|
122394
122453
|
minTraceWidth?: number | undefined;
|
|
122395
122454
|
minViaHoleEdgeToViaHoleEdgeClearance?: number | undefined;
|
|
@@ -122412,8 +122471,8 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
122412
122471
|
} | undefined;
|
|
122413
122472
|
reroute?: boolean | undefined;
|
|
122414
122473
|
}, {
|
|
122415
|
-
key?: any;
|
|
122416
122474
|
name?: string | undefined;
|
|
122475
|
+
key?: any;
|
|
122417
122476
|
connections?: string[] | undefined;
|
|
122418
122477
|
minTraceWidth?: string | number | undefined;
|
|
122419
122478
|
minViaHoleEdgeToViaHoleEdgeClearance?: string | number | undefined;
|
|
@@ -158115,8 +158174,8 @@ declare const viaProps: z.ZodObject<{
|
|
|
158115
158174
|
netIsAssignable: z.ZodOptional<z.ZodBoolean>;
|
|
158116
158175
|
}, "strip", z.ZodTypeAny, {
|
|
158117
158176
|
symbol?: SymbolProp | undefined;
|
|
158118
|
-
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
158119
158177
|
name?: string | undefined;
|
|
158178
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
158120
158179
|
layers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[] | undefined;
|
|
158121
158180
|
pcbX?: string | number | undefined;
|
|
158122
158181
|
pcbY?: string | number | undefined;
|
|
@@ -158172,10 +158231,10 @@ declare const viaProps: z.ZodObject<{
|
|
|
158172
158231
|
netIsAssignable?: boolean | undefined;
|
|
158173
158232
|
}, {
|
|
158174
158233
|
symbol?: SymbolProp | undefined;
|
|
158234
|
+
name?: string | undefined;
|
|
158175
158235
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
158176
158236
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
158177
158237
|
} | undefined;
|
|
158178
|
-
name?: string | undefined;
|
|
158179
158238
|
layers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
158180
158239
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
158181
158240
|
})[] | undefined;
|
|
@@ -182344,10 +182403,10 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
182344
182403
|
}, "strip", z.ZodTypeAny, {
|
|
182345
182404
|
connectsTo: string;
|
|
182346
182405
|
symbol?: SymbolProp | undefined;
|
|
182406
|
+
name?: string | undefined;
|
|
182347
182407
|
showAsTranslucentModel?: boolean | undefined;
|
|
182348
182408
|
key?: any;
|
|
182349
182409
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
182350
|
-
name?: string | undefined;
|
|
182351
182410
|
symbolName?: string | undefined;
|
|
182352
182411
|
pcbX?: string | number | undefined;
|
|
182353
182412
|
pcbY?: string | number | undefined;
|
|
@@ -182929,12 +182988,12 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
182929
182988
|
}, {
|
|
182930
182989
|
connectsTo: string;
|
|
182931
182990
|
symbol?: SymbolProp | undefined;
|
|
182991
|
+
name?: string | undefined;
|
|
182932
182992
|
showAsTranslucentModel?: boolean | undefined;
|
|
182933
182993
|
key?: any;
|
|
182934
182994
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
182935
182995
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
182936
182996
|
} | undefined;
|
|
182937
|
-
name?: string | undefined;
|
|
182938
182997
|
symbolName?: string | undefined;
|
|
182939
182998
|
pcbX?: string | number | undefined;
|
|
182940
182999
|
pcbY?: string | number | undefined;
|
|
@@ -190068,8 +190127,8 @@ declare const portProps: z.ZodObject<{
|
|
|
190068
190127
|
hasInversionCircle: z.ZodOptional<z.ZodBoolean>;
|
|
190069
190128
|
}, "strip", z.ZodTypeAny, {
|
|
190070
190129
|
symbol?: SymbolProp | undefined;
|
|
190071
|
-
layer?: string | undefined;
|
|
190072
190130
|
name?: string | undefined;
|
|
190131
|
+
layer?: string | undefined;
|
|
190073
190132
|
layers?: string[] | undefined;
|
|
190074
190133
|
pcbX?: string | number | undefined;
|
|
190075
190134
|
pcbY?: string | number | undefined;
|
|
@@ -190132,8 +190191,8 @@ declare const portProps: z.ZodObject<{
|
|
|
190132
190191
|
hasInversionCircle?: boolean | undefined;
|
|
190133
190192
|
}, {
|
|
190134
190193
|
symbol?: SymbolProp | undefined;
|
|
190135
|
-
layer?: string | undefined;
|
|
190136
190194
|
name?: string | undefined;
|
|
190195
|
+
layer?: string | undefined;
|
|
190137
190196
|
layers?: string[] | undefined;
|
|
190138
190197
|
pcbX?: string | number | undefined;
|
|
190139
190198
|
pcbY?: string | number | undefined;
|
|
@@ -191123,4 +191182,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
191123
191182
|
}
|
|
191124
191183
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
191125
191184
|
|
|
191126
|
-
export { type AmmeterPinLabels, type AmmeterProps, type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleEnclosureCutoutApertureProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleShapeProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type CommonShapeProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DifferentialPairProps, type DiodePinLabels, type DiodePinLabelsProp, type DiodeProps, type Direction, type DirectionAlongEdge, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type EnclosureCutoutApertureProps, type EnclosureCutoutApertureShape, type EnclosureFdmBoxProps, type EnclosureFdmBoxPropsInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicSheetProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, 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 MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, type OvalPlatedHoleProps, type PanelProps, type ParsedEnclosureCutoutApertureProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillEnclosureCutoutApertureProps, type PillHoleProps, type PillPlatedHoleProps, type PillShapeProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectEnclosureCutoutApertureProps, type RectHoleProps, type RectShapeProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, 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 SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSheetProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, analogSimulationProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleShapeProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, commonShapeProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, differentialPairProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, 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, enclosureCutoutApertureProps, enclosureCutoutApertureShapes, enclosureFdmBoxProps, enclosureProps, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillShapeProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectShapeProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSheetProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
191185
|
+
export { type AmmeterPinLabels, type AmmeterProps, type AnalogSimulationProps, type AssemblyDeviceProps, type AssemblyDevicePropsInput, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleEnclosureCutoutApertureProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleShapeProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type CommonShapeProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DifferentialPairProps, type DiodePinLabels, type DiodePinLabelsProp, type DiodeProps, type Direction, type DirectionAlongEdge, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type EnclosureCutoutApertureProps, type EnclosureCutoutApertureShape, type EnclosureFdmBoxProps, type EnclosureFdmBoxPropsInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicSheetProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type InternalCircuitElement, type InternalCircuitProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, 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 MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, type OvalPlatedHoleProps, type PanelProps, type ParsedEnclosureCutoutApertureProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillEnclosureCutoutApertureProps, type PillHoleProps, type PillPlatedHoleProps, type PillShapeProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectEnclosureCutoutApertureProps, type RectHoleProps, type RectShapeProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, 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 SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSheetProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, analogSimulationProps, assemblyDeviceProps, assemblyProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleShapeProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, commonShapeProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, differentialPairProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, 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, enclosureCutoutApertureProps, enclosureCutoutApertureShapes, enclosureFdmBoxProps, enclosureProps, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, internalCircuitProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillShapeProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectShapeProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSheetProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|