@tscircuit/props 0.0.180 → 0.0.182
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +210 -1
- package/dist/index.js +323 -296
- package/dist/index.js.map +1 -1
- package/lib/components/chip.ts +14 -1
- package/lib/manual-edits/manual-edit-events/edit_pcb_group_location_event.ts +29 -0
- package/lib/manual-edits/manual-edit-events/edit_schematic_group_location_event.ts +30 -0
- package/lib/manual-edits/manual-edit-events/edit_trace_hint_event.ts +0 -1
- package/lib/manual-edits/manual-edit-events/index.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2100,6 +2100,146 @@ interface EditSchematicComponentLocationEvent extends BaseManualEditEvent {
|
|
|
2100
2100
|
}
|
|
2101
2101
|
type EditSchematicComponentLocationEventInput = z.input<typeof edit_schematic_component_location_event>;
|
|
2102
2102
|
|
|
2103
|
+
declare const edit_pcb_group_location_event: z.ZodObject<z.objectUtil.extendShape<{
|
|
2104
|
+
edit_event_id: z.ZodString;
|
|
2105
|
+
in_progress: z.ZodOptional<z.ZodBoolean>;
|
|
2106
|
+
created_at: z.ZodNumber;
|
|
2107
|
+
}, {
|
|
2108
|
+
edit_event_type: z.ZodLiteral<"edit_pcb_group_location">;
|
|
2109
|
+
pcb_group_id: z.ZodString;
|
|
2110
|
+
original_center: z.ZodObject<{
|
|
2111
|
+
x: z.ZodNumber;
|
|
2112
|
+
y: z.ZodNumber;
|
|
2113
|
+
}, "strip", z.ZodTypeAny, {
|
|
2114
|
+
x: number;
|
|
2115
|
+
y: number;
|
|
2116
|
+
}, {
|
|
2117
|
+
x: number;
|
|
2118
|
+
y: number;
|
|
2119
|
+
}>;
|
|
2120
|
+
new_center: z.ZodObject<{
|
|
2121
|
+
x: z.ZodNumber;
|
|
2122
|
+
y: z.ZodNumber;
|
|
2123
|
+
}, "strip", z.ZodTypeAny, {
|
|
2124
|
+
x: number;
|
|
2125
|
+
y: number;
|
|
2126
|
+
}, {
|
|
2127
|
+
x: number;
|
|
2128
|
+
y: number;
|
|
2129
|
+
}>;
|
|
2130
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2131
|
+
edit_event_id: string;
|
|
2132
|
+
created_at: number;
|
|
2133
|
+
edit_event_type: "edit_pcb_group_location";
|
|
2134
|
+
original_center: {
|
|
2135
|
+
x: number;
|
|
2136
|
+
y: number;
|
|
2137
|
+
};
|
|
2138
|
+
new_center: {
|
|
2139
|
+
x: number;
|
|
2140
|
+
y: number;
|
|
2141
|
+
};
|
|
2142
|
+
pcb_group_id: string;
|
|
2143
|
+
in_progress?: boolean | undefined;
|
|
2144
|
+
}, {
|
|
2145
|
+
edit_event_id: string;
|
|
2146
|
+
created_at: number;
|
|
2147
|
+
edit_event_type: "edit_pcb_group_location";
|
|
2148
|
+
original_center: {
|
|
2149
|
+
x: number;
|
|
2150
|
+
y: number;
|
|
2151
|
+
};
|
|
2152
|
+
new_center: {
|
|
2153
|
+
x: number;
|
|
2154
|
+
y: number;
|
|
2155
|
+
};
|
|
2156
|
+
pcb_group_id: string;
|
|
2157
|
+
in_progress?: boolean | undefined;
|
|
2158
|
+
}>;
|
|
2159
|
+
interface EditPcbGroupLocationEvent extends BaseManualEditEvent {
|
|
2160
|
+
edit_event_type: "edit_pcb_group_location";
|
|
2161
|
+
pcb_group_id: string;
|
|
2162
|
+
original_center: {
|
|
2163
|
+
x: number;
|
|
2164
|
+
y: number;
|
|
2165
|
+
};
|
|
2166
|
+
new_center: {
|
|
2167
|
+
x: number;
|
|
2168
|
+
y: number;
|
|
2169
|
+
};
|
|
2170
|
+
}
|
|
2171
|
+
type EditPcbGroupLocationEventInput = z.input<typeof edit_pcb_group_location_event>;
|
|
2172
|
+
|
|
2173
|
+
declare const edit_schematic_group_location_event: z.ZodObject<z.objectUtil.extendShape<{
|
|
2174
|
+
edit_event_id: z.ZodString;
|
|
2175
|
+
in_progress: z.ZodOptional<z.ZodBoolean>;
|
|
2176
|
+
created_at: z.ZodNumber;
|
|
2177
|
+
}, {
|
|
2178
|
+
edit_event_type: z.ZodLiteral<"edit_schematic_group_location">;
|
|
2179
|
+
schematic_group_id: z.ZodString;
|
|
2180
|
+
original_center: z.ZodObject<{
|
|
2181
|
+
x: z.ZodNumber;
|
|
2182
|
+
y: z.ZodNumber;
|
|
2183
|
+
}, "strip", z.ZodTypeAny, {
|
|
2184
|
+
x: number;
|
|
2185
|
+
y: number;
|
|
2186
|
+
}, {
|
|
2187
|
+
x: number;
|
|
2188
|
+
y: number;
|
|
2189
|
+
}>;
|
|
2190
|
+
new_center: z.ZodObject<{
|
|
2191
|
+
x: z.ZodNumber;
|
|
2192
|
+
y: z.ZodNumber;
|
|
2193
|
+
}, "strip", z.ZodTypeAny, {
|
|
2194
|
+
x: number;
|
|
2195
|
+
y: number;
|
|
2196
|
+
}, {
|
|
2197
|
+
x: number;
|
|
2198
|
+
y: number;
|
|
2199
|
+
}>;
|
|
2200
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2201
|
+
edit_event_id: string;
|
|
2202
|
+
created_at: number;
|
|
2203
|
+
edit_event_type: "edit_schematic_group_location";
|
|
2204
|
+
original_center: {
|
|
2205
|
+
x: number;
|
|
2206
|
+
y: number;
|
|
2207
|
+
};
|
|
2208
|
+
new_center: {
|
|
2209
|
+
x: number;
|
|
2210
|
+
y: number;
|
|
2211
|
+
};
|
|
2212
|
+
schematic_group_id: string;
|
|
2213
|
+
in_progress?: boolean | undefined;
|
|
2214
|
+
}, {
|
|
2215
|
+
edit_event_id: string;
|
|
2216
|
+
created_at: number;
|
|
2217
|
+
edit_event_type: "edit_schematic_group_location";
|
|
2218
|
+
original_center: {
|
|
2219
|
+
x: number;
|
|
2220
|
+
y: number;
|
|
2221
|
+
};
|
|
2222
|
+
new_center: {
|
|
2223
|
+
x: number;
|
|
2224
|
+
y: number;
|
|
2225
|
+
};
|
|
2226
|
+
schematic_group_id: string;
|
|
2227
|
+
in_progress?: boolean | undefined;
|
|
2228
|
+
}>;
|
|
2229
|
+
interface EditSchematicGroupLocationEvent extends BaseManualEditEvent {
|
|
2230
|
+
edit_event_type: "edit_schematic_group_location";
|
|
2231
|
+
schematic_group_id: string;
|
|
2232
|
+
original_center: {
|
|
2233
|
+
x: number;
|
|
2234
|
+
y: number;
|
|
2235
|
+
};
|
|
2236
|
+
new_center: {
|
|
2237
|
+
x: number;
|
|
2238
|
+
y: number;
|
|
2239
|
+
};
|
|
2240
|
+
}
|
|
2241
|
+
type EditSchematicGroupLocationEventInput = z.input<typeof edit_schematic_group_location_event>;
|
|
2242
|
+
|
|
2103
2243
|
type ManualEditEvent = EditPcbComponentLocationEvent | EditTraceHintEvent | EditSchematicComponentLocationEvent;
|
|
2104
2244
|
declare const manual_edit_event: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2105
2245
|
edit_event_id: z.ZodString;
|
|
@@ -5778,12 +5918,17 @@ type Selectors = Record<string, Connections>;
|
|
|
5778
5918
|
|
|
5779
5919
|
type PinLabelsProp<PinNumber extends string = string, PinLabel extends string = string> = Record<PinNumber, PinLabel | readonly PinLabel[] | PinLabel[]>;
|
|
5780
5920
|
type PinLabelFromPinLabelMap<PinLabelMap extends PinLabelsProp> = PinLabelMap extends PinLabelsProp<infer PinNumber, infer PinLabel> ? PinLabel : never;
|
|
5921
|
+
interface PinCompatibleVariant {
|
|
5922
|
+
manufacturerPartNumber?: string;
|
|
5923
|
+
supplierPartNumber?: SupplierPartNumbers;
|
|
5924
|
+
}
|
|
5781
5925
|
interface ChipPropsSU<PinLabel extends string = string> extends CommonComponentProps {
|
|
5782
5926
|
manufacturerPartNumber?: string;
|
|
5783
5927
|
pinLabels?: PinLabelsProp<string, PinLabel>;
|
|
5784
5928
|
schPinArrangement?: SchematicPortArrangement;
|
|
5785
5929
|
/** @deprecated Use schPinArrangement instead. */
|
|
5786
5930
|
schPortArrangement?: SchematicPortArrangement;
|
|
5931
|
+
pinCompatibleVariants?: PinCompatibleVariant[];
|
|
5787
5932
|
schPinStyle?: SchematicPinStyle;
|
|
5788
5933
|
schPinSpacing?: Distance;
|
|
5789
5934
|
schWidth?: Distance;
|
|
@@ -5824,6 +5969,16 @@ type ChipConnections<T extends (props: ChipProps<any>) => any> = {
|
|
|
5824
5969
|
[K in ChipPinLabels<T>]: string;
|
|
5825
5970
|
};
|
|
5826
5971
|
declare const pinLabelsProp: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>;
|
|
5972
|
+
declare const pinCompatibleVariant: z.ZodObject<{
|
|
5973
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
5974
|
+
supplierPartNumber: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5975
|
+
}, "strip", z.ZodTypeAny, {
|
|
5976
|
+
manufacturerPartNumber?: string | undefined;
|
|
5977
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5978
|
+
}, {
|
|
5979
|
+
manufacturerPartNumber?: string | undefined;
|
|
5980
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5981
|
+
}>;
|
|
5827
5982
|
declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
5828
5983
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5829
5984
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6285,6 +6440,16 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
6285
6440
|
topPinCount?: number | undefined;
|
|
6286
6441
|
bottomPinCount?: number | undefined;
|
|
6287
6442
|
}>>;
|
|
6443
|
+
pinCompatibleVariants: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6444
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
6445
|
+
supplierPartNumber: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6446
|
+
}, "strip", z.ZodTypeAny, {
|
|
6447
|
+
manufacturerPartNumber?: string | undefined;
|
|
6448
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6449
|
+
}, {
|
|
6450
|
+
manufacturerPartNumber?: string | undefined;
|
|
6451
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6452
|
+
}>, "many">>;
|
|
6288
6453
|
schPinStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6289
6454
|
marginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6290
6455
|
marginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6443,6 +6608,10 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
6443
6608
|
topPinCount?: number | undefined;
|
|
6444
6609
|
bottomPinCount?: number | undefined;
|
|
6445
6610
|
} | undefined;
|
|
6611
|
+
pinCompatibleVariants?: {
|
|
6612
|
+
manufacturerPartNumber?: string | undefined;
|
|
6613
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6614
|
+
}[] | undefined;
|
|
6446
6615
|
schPinStyle?: Record<string, {
|
|
6447
6616
|
marginLeft?: number | undefined;
|
|
6448
6617
|
marginRight?: number | undefined;
|
|
@@ -6583,6 +6752,10 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
6583
6752
|
topPinCount?: number | undefined;
|
|
6584
6753
|
bottomPinCount?: number | undefined;
|
|
6585
6754
|
} | undefined;
|
|
6755
|
+
pinCompatibleVariants?: {
|
|
6756
|
+
manufacturerPartNumber?: string | undefined;
|
|
6757
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6758
|
+
}[] | undefined;
|
|
6586
6759
|
schPinStyle?: Record<string, {
|
|
6587
6760
|
marginLeft?: string | number | undefined;
|
|
6588
6761
|
marginRight?: string | number | undefined;
|
|
@@ -7061,6 +7234,16 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
7061
7234
|
topPinCount?: number | undefined;
|
|
7062
7235
|
bottomPinCount?: number | undefined;
|
|
7063
7236
|
}>>;
|
|
7237
|
+
pinCompatibleVariants: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7238
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
7239
|
+
supplierPartNumber: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7240
|
+
}, "strip", z.ZodTypeAny, {
|
|
7241
|
+
manufacturerPartNumber?: string | undefined;
|
|
7242
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7243
|
+
}, {
|
|
7244
|
+
manufacturerPartNumber?: string | undefined;
|
|
7245
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7246
|
+
}>, "many">>;
|
|
7064
7247
|
schPinStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7065
7248
|
marginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7066
7249
|
marginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7219,6 +7402,10 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
7219
7402
|
topPinCount?: number | undefined;
|
|
7220
7403
|
bottomPinCount?: number | undefined;
|
|
7221
7404
|
} | undefined;
|
|
7405
|
+
pinCompatibleVariants?: {
|
|
7406
|
+
manufacturerPartNumber?: string | undefined;
|
|
7407
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7408
|
+
}[] | undefined;
|
|
7222
7409
|
schPinStyle?: Record<string, {
|
|
7223
7410
|
marginLeft?: number | undefined;
|
|
7224
7411
|
marginRight?: number | undefined;
|
|
@@ -7359,6 +7546,10 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
7359
7546
|
topPinCount?: number | undefined;
|
|
7360
7547
|
bottomPinCount?: number | undefined;
|
|
7361
7548
|
} | undefined;
|
|
7549
|
+
pinCompatibleVariants?: {
|
|
7550
|
+
manufacturerPartNumber?: string | undefined;
|
|
7551
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7552
|
+
}[] | undefined;
|
|
7362
7553
|
schPinStyle?: Record<string, {
|
|
7363
7554
|
marginLeft?: string | number | undefined;
|
|
7364
7555
|
marginRight?: string | number | undefined;
|
|
@@ -13432,6 +13623,16 @@ declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13432
13623
|
topPinCount?: number | undefined;
|
|
13433
13624
|
bottomPinCount?: number | undefined;
|
|
13434
13625
|
}>>;
|
|
13626
|
+
pinCompatibleVariants: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13627
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
13628
|
+
supplierPartNumber: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
13629
|
+
}, "strip", z.ZodTypeAny, {
|
|
13630
|
+
manufacturerPartNumber?: string | undefined;
|
|
13631
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13632
|
+
}, {
|
|
13633
|
+
manufacturerPartNumber?: string | undefined;
|
|
13634
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13635
|
+
}>, "many">>;
|
|
13435
13636
|
schPinStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13436
13637
|
marginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
13437
13638
|
marginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -13590,6 +13791,10 @@ declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13590
13791
|
topPinCount?: number | undefined;
|
|
13591
13792
|
bottomPinCount?: number | undefined;
|
|
13592
13793
|
} | undefined;
|
|
13794
|
+
pinCompatibleVariants?: {
|
|
13795
|
+
manufacturerPartNumber?: string | undefined;
|
|
13796
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13797
|
+
}[] | undefined;
|
|
13593
13798
|
schPinStyle?: Record<string, {
|
|
13594
13799
|
marginLeft?: number | undefined;
|
|
13595
13800
|
marginRight?: number | undefined;
|
|
@@ -13730,6 +13935,10 @@ declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
13730
13935
|
topPinCount?: number | undefined;
|
|
13731
13936
|
bottomPinCount?: number | undefined;
|
|
13732
13937
|
} | undefined;
|
|
13938
|
+
pinCompatibleVariants?: {
|
|
13939
|
+
manufacturerPartNumber?: string | undefined;
|
|
13940
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13941
|
+
}[] | undefined;
|
|
13733
13942
|
schPinStyle?: Record<string, {
|
|
13734
13943
|
marginLeft?: string | number | undefined;
|
|
13735
13944
|
marginRight?: string | number | undefined;
|
|
@@ -18532,4 +18741,4 @@ declare const platformConfig: z.ZodObject<{
|
|
|
18532
18741
|
cloudAutorouterUrl?: string | undefined;
|
|
18533
18742
|
}>;
|
|
18534
18743
|
|
|
18535
|
-
export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryProps, type BoardProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConstrainedLayoutProps, type ConstraintProps, type CrystalProps, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type Footprint, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type GroupProps, type HoleProps, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type JumperProps, type LayoutConfig, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetProps, type NetAliasProps, 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 PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicLineProps, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TraceHintProps, type TraceProps, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_schematic_component_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, 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, netProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicLineProps, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };
|
|
18744
|
+
export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryProps, type BoardProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConstrainedLayoutProps, type ConstraintProps, type CrystalProps, 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 Footprint, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type GroupProps, type HoleProps, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type JumperProps, type LayoutConfig, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetProps, type NetAliasProps, 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 PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicLineProps, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TraceHintProps, type TraceProps, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, 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, 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, netProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicLineProps, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };
|