@tscircuit/core 0.0.555 → 0.0.557
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 +202 -206
- package/dist/index.js +8 -10
- package/package.json +4 -5
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,6 @@ import { symbols, SchSymbol, BaseSymbolName } from 'schematic-symbols';
|
|
|
8
8
|
import { PcbTraceError, PcbPlacementError, PcbManualEditConflictWarning, LayerRef, AnyCircuitElement, AnySourceComponent, PcbTraceRoutePoint, PcbTrace as PcbTrace$1, PcbVia, SchematicPort, SchematicComponent, RouteHintPoint, CircuitJson } from 'circuit-json';
|
|
9
9
|
import { Matrix } from 'transformation-matrix';
|
|
10
10
|
import { CircuitJsonUtilObjects } from '@tscircuit/circuit-json-util';
|
|
11
|
-
import * as _tscircuit_layout from '@tscircuit/layout';
|
|
12
11
|
import { ConnectivityMap } from 'circuit-json-to-connectivity-map';
|
|
13
12
|
import { GraphicsObject } from 'graphics-debug';
|
|
14
13
|
|
|
@@ -1365,7 +1364,6 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1365
1364
|
children: zod.ZodOptional<zod.ZodAny>;
|
|
1366
1365
|
schTitle: zod.ZodOptional<zod.ZodString>;
|
|
1367
1366
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
1368
|
-
layout: zod.ZodOptional<zod.ZodType<_tscircuit_layout.LayoutBuilder, zod.ZodTypeDef, _tscircuit_layout.LayoutBuilder>>;
|
|
1369
1367
|
manualEdits: zod.ZodOptional<zod.ZodObject<{
|
|
1370
1368
|
pcb_placements: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
|
|
1371
1369
|
selector: zod.ZodString;
|
|
@@ -1707,7 +1705,6 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1707
1705
|
schPaddingRight?: number | undefined;
|
|
1708
1706
|
schPaddingTop?: number | undefined;
|
|
1709
1707
|
schPaddingBottom?: number | undefined;
|
|
1710
|
-
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
1711
1708
|
manualEdits?: {
|
|
1712
1709
|
pcb_placements?: {
|
|
1713
1710
|
selector: string;
|
|
@@ -1880,7 +1877,6 @@ declare class Board extends Group<typeof boardProps> {
|
|
|
1880
1877
|
schPaddingRight?: string | number | undefined;
|
|
1881
1878
|
schPaddingTop?: string | number | undefined;
|
|
1882
1879
|
schPaddingBottom?: string | number | undefined;
|
|
1883
|
-
layout?: _tscircuit_layout.LayoutBuilder | undefined;
|
|
1884
1880
|
manualEdits?: {
|
|
1885
1881
|
pcb_placements?: {
|
|
1886
1882
|
selector: string;
|
|
@@ -1984,7 +1980,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
1984
1980
|
} & {
|
|
1985
1981
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
1986
1982
|
name: zod.ZodString;
|
|
1987
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
1983
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
1988
1984
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
1989
1985
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
1990
1986
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -2024,9 +2020,9 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
2024
2020
|
y: string | number;
|
|
2025
2021
|
z: string | number;
|
|
2026
2022
|
}>>;
|
|
2027
|
-
}
|
|
2023
|
+
} & {
|
|
2028
2024
|
stlUrl: zod.ZodString;
|
|
2029
|
-
}
|
|
2025
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2030
2026
|
stlUrl: string;
|
|
2031
2027
|
rotationOffset?: number | {
|
|
2032
2028
|
x: string | number;
|
|
@@ -2060,7 +2056,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
2060
2056
|
y: string | number;
|
|
2061
2057
|
z: string | number;
|
|
2062
2058
|
} | undefined;
|
|
2063
|
-
}>, zod.ZodObject<
|
|
2059
|
+
}>, zod.ZodObject<{
|
|
2064
2060
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
2065
2061
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
2066
2062
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -2100,10 +2096,10 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
2100
2096
|
y: string | number;
|
|
2101
2097
|
z: string | number;
|
|
2102
2098
|
}>>;
|
|
2103
|
-
}
|
|
2099
|
+
} & {
|
|
2104
2100
|
objUrl: zod.ZodString;
|
|
2105
2101
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
2106
|
-
}
|
|
2102
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2107
2103
|
objUrl: string;
|
|
2108
2104
|
rotationOffset?: number | {
|
|
2109
2105
|
x: string | number;
|
|
@@ -2139,7 +2135,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
2139
2135
|
z: string | number;
|
|
2140
2136
|
} | undefined;
|
|
2141
2137
|
mtlUrl?: string | undefined;
|
|
2142
|
-
}>, zod.ZodObject<
|
|
2138
|
+
}>, zod.ZodObject<{
|
|
2143
2139
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
2144
2140
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
2145
2141
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -2179,9 +2175,9 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
2179
2175
|
y: string | number;
|
|
2180
2176
|
z: string | number;
|
|
2181
2177
|
}>>;
|
|
2182
|
-
}
|
|
2178
|
+
} & {
|
|
2183
2179
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
2184
|
-
}
|
|
2180
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2185
2181
|
jscad: Record<string, any>;
|
|
2186
2182
|
rotationOffset?: number | {
|
|
2187
2183
|
x: string | number;
|
|
@@ -2234,8 +2230,8 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
2234
2230
|
connections: zod.ZodOptional<zod.ZodRecord<zod.ZodEnum<["pin1", "pin2", "pos", "neg", "anode", "cathode"]>, zod.ZodUnion<[zod.ZodUnion<[zod.ZodString, zod.ZodReadonly<zod.ZodArray<zod.ZodString, "many">>]>, zod.ZodArray<zod.ZodString, "many">]>>>;
|
|
2235
2231
|
}, "strip", zod.ZodTypeAny, {
|
|
2236
2232
|
name: string;
|
|
2237
|
-
schShowRatings: boolean;
|
|
2238
2233
|
capacitance: number;
|
|
2234
|
+
schShowRatings: boolean;
|
|
2239
2235
|
polarized: boolean;
|
|
2240
2236
|
pcbX?: number | undefined;
|
|
2241
2237
|
pcbY?: number | undefined;
|
|
@@ -2429,7 +2425,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
2429
2425
|
} & {
|
|
2430
2426
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
2431
2427
|
name: zod.ZodString;
|
|
2432
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
2428
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
2433
2429
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
2434
2430
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
2435
2431
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -2469,9 +2465,9 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
2469
2465
|
y: string | number;
|
|
2470
2466
|
z: string | number;
|
|
2471
2467
|
}>>;
|
|
2472
|
-
}
|
|
2468
|
+
} & {
|
|
2473
2469
|
stlUrl: zod.ZodString;
|
|
2474
|
-
}
|
|
2470
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2475
2471
|
stlUrl: string;
|
|
2476
2472
|
rotationOffset?: number | {
|
|
2477
2473
|
x: string | number;
|
|
@@ -2505,7 +2501,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
2505
2501
|
y: string | number;
|
|
2506
2502
|
z: string | number;
|
|
2507
2503
|
} | undefined;
|
|
2508
|
-
}>, zod.ZodObject<
|
|
2504
|
+
}>, zod.ZodObject<{
|
|
2509
2505
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
2510
2506
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
2511
2507
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -2545,10 +2541,10 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
2545
2541
|
y: string | number;
|
|
2546
2542
|
z: string | number;
|
|
2547
2543
|
}>>;
|
|
2548
|
-
}
|
|
2544
|
+
} & {
|
|
2549
2545
|
objUrl: zod.ZodString;
|
|
2550
2546
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
2551
|
-
}
|
|
2547
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2552
2548
|
objUrl: string;
|
|
2553
2549
|
rotationOffset?: number | {
|
|
2554
2550
|
x: string | number;
|
|
@@ -2584,7 +2580,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
2584
2580
|
z: string | number;
|
|
2585
2581
|
} | undefined;
|
|
2586
2582
|
mtlUrl?: string | undefined;
|
|
2587
|
-
}>, zod.ZodObject<
|
|
2583
|
+
}>, zod.ZodObject<{
|
|
2588
2584
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
2589
2585
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
2590
2586
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -2624,9 +2620,9 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
2624
2620
|
y: string | number;
|
|
2625
2621
|
z: string | number;
|
|
2626
2622
|
}>>;
|
|
2627
|
-
}
|
|
2623
|
+
} & {
|
|
2628
2624
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
2629
|
-
}
|
|
2625
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2630
2626
|
jscad: Record<string, any>;
|
|
2631
2627
|
rotationOffset?: number | {
|
|
2632
2628
|
x: string | number;
|
|
@@ -3241,7 +3237,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
3241
3237
|
} & {
|
|
3242
3238
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
3243
3239
|
name: zod.ZodString;
|
|
3244
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
3240
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
3245
3241
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
3246
3242
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
3247
3243
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -3281,9 +3277,9 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
3281
3277
|
y: string | number;
|
|
3282
3278
|
z: string | number;
|
|
3283
3279
|
}>>;
|
|
3284
|
-
}
|
|
3280
|
+
} & {
|
|
3285
3281
|
stlUrl: zod.ZodString;
|
|
3286
|
-
}
|
|
3282
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3287
3283
|
stlUrl: string;
|
|
3288
3284
|
rotationOffset?: number | {
|
|
3289
3285
|
x: string | number;
|
|
@@ -3317,7 +3313,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
3317
3313
|
y: string | number;
|
|
3318
3314
|
z: string | number;
|
|
3319
3315
|
} | undefined;
|
|
3320
|
-
}>, zod.ZodObject<
|
|
3316
|
+
}>, zod.ZodObject<{
|
|
3321
3317
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
3322
3318
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
3323
3319
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -3357,10 +3353,10 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
3357
3353
|
y: string | number;
|
|
3358
3354
|
z: string | number;
|
|
3359
3355
|
}>>;
|
|
3360
|
-
}
|
|
3356
|
+
} & {
|
|
3361
3357
|
objUrl: zod.ZodString;
|
|
3362
3358
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
3363
|
-
}
|
|
3359
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3364
3360
|
objUrl: string;
|
|
3365
3361
|
rotationOffset?: number | {
|
|
3366
3362
|
x: string | number;
|
|
@@ -3396,7 +3392,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
3396
3392
|
z: string | number;
|
|
3397
3393
|
} | undefined;
|
|
3398
3394
|
mtlUrl?: string | undefined;
|
|
3399
|
-
}>, zod.ZodObject<
|
|
3395
|
+
}>, zod.ZodObject<{
|
|
3400
3396
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
3401
3397
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
3402
3398
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -3436,9 +3432,9 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
3436
3432
|
y: string | number;
|
|
3437
3433
|
z: string | number;
|
|
3438
3434
|
}>>;
|
|
3439
|
-
}
|
|
3435
|
+
} & {
|
|
3440
3436
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
3441
|
-
}
|
|
3437
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3442
3438
|
jscad: Record<string, any>;
|
|
3443
3439
|
rotationOffset?: number | {
|
|
3444
3440
|
x: string | number;
|
|
@@ -3991,7 +3987,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
3991
3987
|
} & {
|
|
3992
3988
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
3993
3989
|
name: zod.ZodString;
|
|
3994
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
3990
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
3995
3991
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
3996
3992
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
3997
3993
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -4031,9 +4027,9 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
4031
4027
|
y: string | number;
|
|
4032
4028
|
z: string | number;
|
|
4033
4029
|
}>>;
|
|
4034
|
-
}
|
|
4030
|
+
} & {
|
|
4035
4031
|
stlUrl: zod.ZodString;
|
|
4036
|
-
}
|
|
4032
|
+
}, "strip", zod.ZodTypeAny, {
|
|
4037
4033
|
stlUrl: string;
|
|
4038
4034
|
rotationOffset?: number | {
|
|
4039
4035
|
x: string | number;
|
|
@@ -4067,7 +4063,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
4067
4063
|
y: string | number;
|
|
4068
4064
|
z: string | number;
|
|
4069
4065
|
} | undefined;
|
|
4070
|
-
}>, zod.ZodObject<
|
|
4066
|
+
}>, zod.ZodObject<{
|
|
4071
4067
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
4072
4068
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
4073
4069
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -4107,10 +4103,10 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
4107
4103
|
y: string | number;
|
|
4108
4104
|
z: string | number;
|
|
4109
4105
|
}>>;
|
|
4110
|
-
}
|
|
4106
|
+
} & {
|
|
4111
4107
|
objUrl: zod.ZodString;
|
|
4112
4108
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
4113
|
-
}
|
|
4109
|
+
}, "strip", zod.ZodTypeAny, {
|
|
4114
4110
|
objUrl: string;
|
|
4115
4111
|
rotationOffset?: number | {
|
|
4116
4112
|
x: string | number;
|
|
@@ -4146,7 +4142,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
4146
4142
|
z: string | number;
|
|
4147
4143
|
} | undefined;
|
|
4148
4144
|
mtlUrl?: string | undefined;
|
|
4149
|
-
}>, zod.ZodObject<
|
|
4145
|
+
}>, zod.ZodObject<{
|
|
4150
4146
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
4151
4147
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
4152
4148
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -4186,9 +4182,9 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
4186
4182
|
y: string | number;
|
|
4187
4183
|
z: string | number;
|
|
4188
4184
|
}>>;
|
|
4189
|
-
}
|
|
4185
|
+
} & {
|
|
4190
4186
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
4191
|
-
}
|
|
4187
|
+
}, "strip", zod.ZodTypeAny, {
|
|
4192
4188
|
jscad: Record<string, any>;
|
|
4193
4189
|
rotationOffset?: number | {
|
|
4194
4190
|
x: string | number;
|
|
@@ -4417,7 +4413,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
4417
4413
|
} & {
|
|
4418
4414
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
4419
4415
|
name: zod.ZodString;
|
|
4420
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
4416
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
4421
4417
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
4422
4418
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
4423
4419
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -4457,9 +4453,9 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
4457
4453
|
y: string | number;
|
|
4458
4454
|
z: string | number;
|
|
4459
4455
|
}>>;
|
|
4460
|
-
}
|
|
4456
|
+
} & {
|
|
4461
4457
|
stlUrl: zod.ZodString;
|
|
4462
|
-
}
|
|
4458
|
+
}, "strip", zod.ZodTypeAny, {
|
|
4463
4459
|
stlUrl: string;
|
|
4464
4460
|
rotationOffset?: number | {
|
|
4465
4461
|
x: string | number;
|
|
@@ -4493,7 +4489,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
4493
4489
|
y: string | number;
|
|
4494
4490
|
z: string | number;
|
|
4495
4491
|
} | undefined;
|
|
4496
|
-
}>, zod.ZodObject<
|
|
4492
|
+
}>, zod.ZodObject<{
|
|
4497
4493
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
4498
4494
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
4499
4495
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -4533,10 +4529,10 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
4533
4529
|
y: string | number;
|
|
4534
4530
|
z: string | number;
|
|
4535
4531
|
}>>;
|
|
4536
|
-
}
|
|
4532
|
+
} & {
|
|
4537
4533
|
objUrl: zod.ZodString;
|
|
4538
4534
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
4539
|
-
}
|
|
4535
|
+
}, "strip", zod.ZodTypeAny, {
|
|
4540
4536
|
objUrl: string;
|
|
4541
4537
|
rotationOffset?: number | {
|
|
4542
4538
|
x: string | number;
|
|
@@ -4572,7 +4568,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
4572
4568
|
z: string | number;
|
|
4573
4569
|
} | undefined;
|
|
4574
4570
|
mtlUrl?: string | undefined;
|
|
4575
|
-
}>, zod.ZodObject<
|
|
4571
|
+
}>, zod.ZodObject<{
|
|
4576
4572
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
4577
4573
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
4578
4574
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -4612,9 +4608,9 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
4612
4608
|
y: string | number;
|
|
4613
4609
|
z: string | number;
|
|
4614
4610
|
}>>;
|
|
4615
|
-
}
|
|
4611
|
+
} & {
|
|
4616
4612
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
4617
|
-
}
|
|
4613
|
+
}, "strip", zod.ZodTypeAny, {
|
|
4618
4614
|
jscad: Record<string, any>;
|
|
4619
4615
|
rotationOffset?: number | {
|
|
4620
4616
|
x: string | number;
|
|
@@ -5059,7 +5055,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
5059
5055
|
} & {
|
|
5060
5056
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
5061
5057
|
name: zod.ZodString;
|
|
5062
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
5058
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
5063
5059
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
5064
5060
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
5065
5061
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -5099,9 +5095,9 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
5099
5095
|
y: string | number;
|
|
5100
5096
|
z: string | number;
|
|
5101
5097
|
}>>;
|
|
5102
|
-
}
|
|
5098
|
+
} & {
|
|
5103
5099
|
stlUrl: zod.ZodString;
|
|
5104
|
-
}
|
|
5100
|
+
}, "strip", zod.ZodTypeAny, {
|
|
5105
5101
|
stlUrl: string;
|
|
5106
5102
|
rotationOffset?: number | {
|
|
5107
5103
|
x: string | number;
|
|
@@ -5135,7 +5131,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
5135
5131
|
y: string | number;
|
|
5136
5132
|
z: string | number;
|
|
5137
5133
|
} | undefined;
|
|
5138
|
-
}>, zod.ZodObject<
|
|
5134
|
+
}>, zod.ZodObject<{
|
|
5139
5135
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
5140
5136
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
5141
5137
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -5175,10 +5171,10 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
5175
5171
|
y: string | number;
|
|
5176
5172
|
z: string | number;
|
|
5177
5173
|
}>>;
|
|
5178
|
-
}
|
|
5174
|
+
} & {
|
|
5179
5175
|
objUrl: zod.ZodString;
|
|
5180
5176
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
5181
|
-
}
|
|
5177
|
+
}, "strip", zod.ZodTypeAny, {
|
|
5182
5178
|
objUrl: string;
|
|
5183
5179
|
rotationOffset?: number | {
|
|
5184
5180
|
x: string | number;
|
|
@@ -5214,7 +5210,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
5214
5210
|
z: string | number;
|
|
5215
5211
|
} | undefined;
|
|
5216
5212
|
mtlUrl?: string | undefined;
|
|
5217
|
-
}>, zod.ZodObject<
|
|
5213
|
+
}>, zod.ZodObject<{
|
|
5218
5214
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
5219
5215
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
5220
5216
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -5254,9 +5250,9 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
5254
5250
|
y: string | number;
|
|
5255
5251
|
z: string | number;
|
|
5256
5252
|
}>>;
|
|
5257
|
-
}
|
|
5253
|
+
} & {
|
|
5258
5254
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
5259
|
-
}
|
|
5255
|
+
}, "strip", zod.ZodTypeAny, {
|
|
5260
5256
|
jscad: Record<string, any>;
|
|
5261
5257
|
rotationOffset?: number | {
|
|
5262
5258
|
x: string | number;
|
|
@@ -5705,7 +5701,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
5705
5701
|
} & {
|
|
5706
5702
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
5707
5703
|
name: zod.ZodString;
|
|
5708
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
5704
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
5709
5705
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
5710
5706
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
5711
5707
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -5745,9 +5741,9 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
5745
5741
|
y: string | number;
|
|
5746
5742
|
z: string | number;
|
|
5747
5743
|
}>>;
|
|
5748
|
-
}
|
|
5744
|
+
} & {
|
|
5749
5745
|
stlUrl: zod.ZodString;
|
|
5750
|
-
}
|
|
5746
|
+
}, "strip", zod.ZodTypeAny, {
|
|
5751
5747
|
stlUrl: string;
|
|
5752
5748
|
rotationOffset?: number | {
|
|
5753
5749
|
x: string | number;
|
|
@@ -5781,7 +5777,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
5781
5777
|
y: string | number;
|
|
5782
5778
|
z: string | number;
|
|
5783
5779
|
} | undefined;
|
|
5784
|
-
}>, zod.ZodObject<
|
|
5780
|
+
}>, zod.ZodObject<{
|
|
5785
5781
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
5786
5782
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
5787
5783
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -5821,10 +5817,10 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
5821
5817
|
y: string | number;
|
|
5822
5818
|
z: string | number;
|
|
5823
5819
|
}>>;
|
|
5824
|
-
}
|
|
5820
|
+
} & {
|
|
5825
5821
|
objUrl: zod.ZodString;
|
|
5826
5822
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
5827
|
-
}
|
|
5823
|
+
}, "strip", zod.ZodTypeAny, {
|
|
5828
5824
|
objUrl: string;
|
|
5829
5825
|
rotationOffset?: number | {
|
|
5830
5826
|
x: string | number;
|
|
@@ -5860,7 +5856,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
5860
5856
|
z: string | number;
|
|
5861
5857
|
} | undefined;
|
|
5862
5858
|
mtlUrl?: string | undefined;
|
|
5863
|
-
}>, zod.ZodObject<
|
|
5859
|
+
}>, zod.ZodObject<{
|
|
5864
5860
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
5865
5861
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
5866
5862
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -5900,9 +5896,9 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
5900
5896
|
y: string | number;
|
|
5901
5897
|
z: string | number;
|
|
5902
5898
|
}>>;
|
|
5903
|
-
}
|
|
5899
|
+
} & {
|
|
5904
5900
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
5905
|
-
}
|
|
5901
|
+
}, "strip", zod.ZodTypeAny, {
|
|
5906
5902
|
jscad: Record<string, any>;
|
|
5907
5903
|
rotationOffset?: number | {
|
|
5908
5904
|
x: string | number;
|
|
@@ -6016,10 +6012,10 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
6016
6012
|
children?: any;
|
|
6017
6013
|
symbolName?: string | undefined;
|
|
6018
6014
|
doNotPlace?: boolean | undefined;
|
|
6019
|
-
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
6020
|
-
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
6021
6015
|
color?: string | undefined;
|
|
6022
6016
|
wavelength?: string | undefined;
|
|
6017
|
+
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
6018
|
+
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
6023
6019
|
schDisplayValue?: string | undefined;
|
|
6024
6020
|
}, {
|
|
6025
6021
|
name: string;
|
|
@@ -6092,10 +6088,10 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
6092
6088
|
children?: any;
|
|
6093
6089
|
symbolName?: string | undefined;
|
|
6094
6090
|
doNotPlace?: boolean | undefined;
|
|
6095
|
-
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
6096
|
-
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
6097
6091
|
color?: string | undefined;
|
|
6098
6092
|
wavelength?: string | undefined;
|
|
6093
|
+
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
6094
|
+
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
6099
6095
|
schDisplayValue?: string | undefined;
|
|
6100
6096
|
}>;
|
|
6101
6097
|
sourceFtype: Ftype;
|
|
@@ -6135,7 +6131,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
6135
6131
|
} & {
|
|
6136
6132
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
6137
6133
|
name: zod.ZodString;
|
|
6138
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
6134
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
6139
6135
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
6140
6136
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
6141
6137
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -6175,9 +6171,9 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
6175
6171
|
y: string | number;
|
|
6176
6172
|
z: string | number;
|
|
6177
6173
|
}>>;
|
|
6178
|
-
}
|
|
6174
|
+
} & {
|
|
6179
6175
|
stlUrl: zod.ZodString;
|
|
6180
|
-
}
|
|
6176
|
+
}, "strip", zod.ZodTypeAny, {
|
|
6181
6177
|
stlUrl: string;
|
|
6182
6178
|
rotationOffset?: number | {
|
|
6183
6179
|
x: string | number;
|
|
@@ -6211,7 +6207,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
6211
6207
|
y: string | number;
|
|
6212
6208
|
z: string | number;
|
|
6213
6209
|
} | undefined;
|
|
6214
|
-
}>, zod.ZodObject<
|
|
6210
|
+
}>, zod.ZodObject<{
|
|
6215
6211
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
6216
6212
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
6217
6213
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -6251,10 +6247,10 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
6251
6247
|
y: string | number;
|
|
6252
6248
|
z: string | number;
|
|
6253
6249
|
}>>;
|
|
6254
|
-
}
|
|
6250
|
+
} & {
|
|
6255
6251
|
objUrl: zod.ZodString;
|
|
6256
6252
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
6257
|
-
}
|
|
6253
|
+
}, "strip", zod.ZodTypeAny, {
|
|
6258
6254
|
objUrl: string;
|
|
6259
6255
|
rotationOffset?: number | {
|
|
6260
6256
|
x: string | number;
|
|
@@ -6290,7 +6286,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
6290
6286
|
z: string | number;
|
|
6291
6287
|
} | undefined;
|
|
6292
6288
|
mtlUrl?: string | undefined;
|
|
6293
|
-
}>, zod.ZodObject<
|
|
6289
|
+
}>, zod.ZodObject<{
|
|
6294
6290
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
6295
6291
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
6296
6292
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -6330,9 +6326,9 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
6330
6326
|
y: string | number;
|
|
6331
6327
|
z: string | number;
|
|
6332
6328
|
}>>;
|
|
6333
|
-
}
|
|
6329
|
+
} & {
|
|
6334
6330
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
6335
|
-
}
|
|
6331
|
+
}, "strip", zod.ZodTypeAny, {
|
|
6336
6332
|
jscad: Record<string, any>;
|
|
6337
6333
|
rotationOffset?: number | {
|
|
6338
6334
|
x: string | number;
|
|
@@ -6552,7 +6548,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
6552
6548
|
} & {
|
|
6553
6549
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
6554
6550
|
name: zod.ZodString;
|
|
6555
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
6551
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
6556
6552
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
6557
6553
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
6558
6554
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -6592,9 +6588,9 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
6592
6588
|
y: string | number;
|
|
6593
6589
|
z: string | number;
|
|
6594
6590
|
}>>;
|
|
6595
|
-
}
|
|
6591
|
+
} & {
|
|
6596
6592
|
stlUrl: zod.ZodString;
|
|
6597
|
-
}
|
|
6593
|
+
}, "strip", zod.ZodTypeAny, {
|
|
6598
6594
|
stlUrl: string;
|
|
6599
6595
|
rotationOffset?: number | {
|
|
6600
6596
|
x: string | number;
|
|
@@ -6628,7 +6624,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
6628
6624
|
y: string | number;
|
|
6629
6625
|
z: string | number;
|
|
6630
6626
|
} | undefined;
|
|
6631
|
-
}>, zod.ZodObject<
|
|
6627
|
+
}>, zod.ZodObject<{
|
|
6632
6628
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
6633
6629
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
6634
6630
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -6668,10 +6664,10 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
6668
6664
|
y: string | number;
|
|
6669
6665
|
z: string | number;
|
|
6670
6666
|
}>>;
|
|
6671
|
-
}
|
|
6667
|
+
} & {
|
|
6672
6668
|
objUrl: zod.ZodString;
|
|
6673
6669
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
6674
|
-
}
|
|
6670
|
+
}, "strip", zod.ZodTypeAny, {
|
|
6675
6671
|
objUrl: string;
|
|
6676
6672
|
rotationOffset?: number | {
|
|
6677
6673
|
x: string | number;
|
|
@@ -6707,7 +6703,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
6707
6703
|
z: string | number;
|
|
6708
6704
|
} | undefined;
|
|
6709
6705
|
mtlUrl?: string | undefined;
|
|
6710
|
-
}>, zod.ZodObject<
|
|
6706
|
+
}>, zod.ZodObject<{
|
|
6711
6707
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
6712
6708
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
6713
6709
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -6747,9 +6743,9 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
6747
6743
|
y: string | number;
|
|
6748
6744
|
z: string | number;
|
|
6749
6745
|
}>>;
|
|
6750
|
-
}
|
|
6746
|
+
} & {
|
|
6751
6747
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
6752
|
-
}
|
|
6748
|
+
}, "strip", zod.ZodTypeAny, {
|
|
6753
6749
|
jscad: Record<string, any>;
|
|
6754
6750
|
rotationOffset?: number | {
|
|
6755
6751
|
x: string | number;
|
|
@@ -7230,7 +7226,7 @@ declare class BreakoutPoint extends PrimitiveComponent<typeof breakoutPointProps
|
|
|
7230
7226
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7231
7227
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7232
7228
|
}>>;
|
|
7233
|
-
}, "
|
|
7229
|
+
}, "layer" | "pcbRotation"> & {
|
|
7234
7230
|
connection: zod.ZodString;
|
|
7235
7231
|
}, "strip", zod.ZodTypeAny, {
|
|
7236
7232
|
connection: string;
|
|
@@ -7485,7 +7481,7 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
7485
7481
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7486
7482
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7487
7483
|
}>>;
|
|
7488
|
-
}, "
|
|
7484
|
+
}, "layer" | "pcbRotation"> & {
|
|
7489
7485
|
name: zod.ZodOptional<zod.ZodString>;
|
|
7490
7486
|
connectsTo: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodArray<zod.ZodString, "many">]>>;
|
|
7491
7487
|
shape: zod.ZodLiteral<"circle">;
|
|
@@ -7523,7 +7519,7 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
7523
7519
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7524
7520
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7525
7521
|
}>>;
|
|
7526
|
-
}, "
|
|
7522
|
+
}, "layer" | "pcbRotation"> & {
|
|
7527
7523
|
name: zod.ZodOptional<zod.ZodString>;
|
|
7528
7524
|
connectsTo: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodArray<zod.ZodString, "many">]>>;
|
|
7529
7525
|
shape: zod.ZodLiteral<"oval">;
|
|
@@ -7573,7 +7569,7 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
7573
7569
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7574
7570
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7575
7571
|
}>>;
|
|
7576
|
-
}, "
|
|
7572
|
+
}, "layer" | "pcbRotation"> & {
|
|
7577
7573
|
name: zod.ZodOptional<zod.ZodString>;
|
|
7578
7574
|
connectsTo: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodArray<zod.ZodString, "many">]>>;
|
|
7579
7575
|
shape: zod.ZodLiteral<"pill">;
|
|
@@ -7623,7 +7619,7 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
7623
7619
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7624
7620
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7625
7621
|
}>>;
|
|
7626
|
-
}, "
|
|
7622
|
+
}, "layer" | "pcbRotation"> & {
|
|
7627
7623
|
name: zod.ZodOptional<zod.ZodString>;
|
|
7628
7624
|
connectsTo: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodArray<zod.ZodString, "many">]>>;
|
|
7629
7625
|
shape: zod.ZodLiteral<"circular_hole_with_rect_pad">;
|
|
@@ -7670,7 +7666,7 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
7670
7666
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7671
7667
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7672
7668
|
}>>;
|
|
7673
|
-
}, "
|
|
7669
|
+
}, "layer" | "pcbRotation"> & {
|
|
7674
7670
|
name: zod.ZodOptional<zod.ZodString>;
|
|
7675
7671
|
connectsTo: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodArray<zod.ZodString, "many">]>>;
|
|
7676
7672
|
shape: zod.ZodLiteral<"pill_hole_with_rect_pad">;
|
|
@@ -8919,7 +8915,7 @@ declare class Cutout extends PrimitiveComponent<typeof cutoutProps> {
|
|
|
8919
8915
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
8920
8916
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8921
8917
|
}>>;
|
|
8922
|
-
}, "
|
|
8918
|
+
}, "layer" | "pcbRotation"> & {
|
|
8923
8919
|
name: zod.ZodOptional<zod.ZodString>;
|
|
8924
8920
|
shape: zod.ZodLiteral<"rect">;
|
|
8925
8921
|
width: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
@@ -8951,7 +8947,7 @@ declare class Cutout extends PrimitiveComponent<typeof cutoutProps> {
|
|
|
8951
8947
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
8952
8948
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8953
8949
|
}>>;
|
|
8954
|
-
}, "
|
|
8950
|
+
}, "layer" | "pcbRotation"> & {
|
|
8955
8951
|
name: zod.ZodOptional<zod.ZodString>;
|
|
8956
8952
|
shape: zod.ZodLiteral<"circle">;
|
|
8957
8953
|
radius: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
@@ -8980,7 +8976,7 @@ declare class Cutout extends PrimitiveComponent<typeof cutoutProps> {
|
|
|
8980
8976
|
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
8981
8977
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8982
8978
|
}>>;
|
|
8983
|
-
}, "
|
|
8979
|
+
}, "layer" | "pcbRotation"> & {
|
|
8984
8980
|
name: zod.ZodOptional<zod.ZodString>;
|
|
8985
8981
|
shape: zod.ZodLiteral<"polygon">;
|
|
8986
8982
|
points: zod.ZodArray<zod.ZodObject<{
|
|
@@ -9064,7 +9060,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
9064
9060
|
} & {
|
|
9065
9061
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
9066
9062
|
name: zod.ZodString;
|
|
9067
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
9063
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
9068
9064
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
9069
9065
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
9070
9066
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -9104,9 +9100,9 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
9104
9100
|
y: string | number;
|
|
9105
9101
|
z: string | number;
|
|
9106
9102
|
}>>;
|
|
9107
|
-
}
|
|
9103
|
+
} & {
|
|
9108
9104
|
stlUrl: zod.ZodString;
|
|
9109
|
-
}
|
|
9105
|
+
}, "strip", zod.ZodTypeAny, {
|
|
9110
9106
|
stlUrl: string;
|
|
9111
9107
|
rotationOffset?: number | {
|
|
9112
9108
|
x: string | number;
|
|
@@ -9140,7 +9136,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
9140
9136
|
y: string | number;
|
|
9141
9137
|
z: string | number;
|
|
9142
9138
|
} | undefined;
|
|
9143
|
-
}>, zod.ZodObject<
|
|
9139
|
+
}>, zod.ZodObject<{
|
|
9144
9140
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
9145
9141
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
9146
9142
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -9180,10 +9176,10 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
9180
9176
|
y: string | number;
|
|
9181
9177
|
z: string | number;
|
|
9182
9178
|
}>>;
|
|
9183
|
-
}
|
|
9179
|
+
} & {
|
|
9184
9180
|
objUrl: zod.ZodString;
|
|
9185
9181
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
9186
|
-
}
|
|
9182
|
+
}, "strip", zod.ZodTypeAny, {
|
|
9187
9183
|
objUrl: string;
|
|
9188
9184
|
rotationOffset?: number | {
|
|
9189
9185
|
x: string | number;
|
|
@@ -9219,7 +9215,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
9219
9215
|
z: string | number;
|
|
9220
9216
|
} | undefined;
|
|
9221
9217
|
mtlUrl?: string | undefined;
|
|
9222
|
-
}>, zod.ZodObject<
|
|
9218
|
+
}>, zod.ZodObject<{
|
|
9223
9219
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
9224
9220
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
9225
9221
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -9259,9 +9255,9 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
9259
9255
|
y: string | number;
|
|
9260
9256
|
z: string | number;
|
|
9261
9257
|
}>>;
|
|
9262
|
-
}
|
|
9258
|
+
} & {
|
|
9263
9259
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
9264
|
-
}
|
|
9260
|
+
}, "strip", zod.ZodTypeAny, {
|
|
9265
9261
|
jscad: Record<string, any>;
|
|
9266
9262
|
rotationOffset?: number | {
|
|
9267
9263
|
x: string | number;
|
|
@@ -9372,8 +9368,8 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
9372
9368
|
children?: any;
|
|
9373
9369
|
symbolName?: string | undefined;
|
|
9374
9370
|
doNotPlace?: boolean | undefined;
|
|
9375
|
-
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
9376
9371
|
capacity?: number | undefined;
|
|
9372
|
+
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
9377
9373
|
}, {
|
|
9378
9374
|
name: string;
|
|
9379
9375
|
pcbX?: string | number | undefined;
|
|
@@ -9445,8 +9441,8 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
9445
9441
|
children?: any;
|
|
9446
9442
|
symbolName?: string | undefined;
|
|
9447
9443
|
doNotPlace?: boolean | undefined;
|
|
9448
|
-
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
9449
9444
|
capacity?: string | number | undefined;
|
|
9445
|
+
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
9450
9446
|
}>;
|
|
9451
9447
|
sourceFtype: Ftype;
|
|
9452
9448
|
};
|
|
@@ -9479,7 +9475,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
9479
9475
|
} & {
|
|
9480
9476
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
9481
9477
|
name: zod.ZodString;
|
|
9482
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
9478
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
9483
9479
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
9484
9480
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
9485
9481
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -9519,9 +9515,9 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
9519
9515
|
y: string | number;
|
|
9520
9516
|
z: string | number;
|
|
9521
9517
|
}>>;
|
|
9522
|
-
}
|
|
9518
|
+
} & {
|
|
9523
9519
|
stlUrl: zod.ZodString;
|
|
9524
|
-
}
|
|
9520
|
+
}, "strip", zod.ZodTypeAny, {
|
|
9525
9521
|
stlUrl: string;
|
|
9526
9522
|
rotationOffset?: number | {
|
|
9527
9523
|
x: string | number;
|
|
@@ -9555,7 +9551,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
9555
9551
|
y: string | number;
|
|
9556
9552
|
z: string | number;
|
|
9557
9553
|
} | undefined;
|
|
9558
|
-
}>, zod.ZodObject<
|
|
9554
|
+
}>, zod.ZodObject<{
|
|
9559
9555
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
9560
9556
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
9561
9557
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -9595,10 +9591,10 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
9595
9591
|
y: string | number;
|
|
9596
9592
|
z: string | number;
|
|
9597
9593
|
}>>;
|
|
9598
|
-
}
|
|
9594
|
+
} & {
|
|
9599
9595
|
objUrl: zod.ZodString;
|
|
9600
9596
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
9601
|
-
}
|
|
9597
|
+
}, "strip", zod.ZodTypeAny, {
|
|
9602
9598
|
objUrl: string;
|
|
9603
9599
|
rotationOffset?: number | {
|
|
9604
9600
|
x: string | number;
|
|
@@ -9634,7 +9630,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
9634
9630
|
z: string | number;
|
|
9635
9631
|
} | undefined;
|
|
9636
9632
|
mtlUrl?: string | undefined;
|
|
9637
|
-
}>, zod.ZodObject<
|
|
9633
|
+
}>, zod.ZodObject<{
|
|
9638
9634
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
9639
9635
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
9640
9636
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -9674,9 +9670,9 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
9674
9670
|
y: string | number;
|
|
9675
9671
|
z: string | number;
|
|
9676
9672
|
}>>;
|
|
9677
|
-
}
|
|
9673
|
+
} & {
|
|
9678
9674
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
9679
|
-
}
|
|
9675
|
+
}, "strip", zod.ZodTypeAny, {
|
|
9680
9676
|
jscad: Record<string, any>;
|
|
9681
9677
|
rotationOffset?: number | {
|
|
9682
9678
|
x: string | number;
|
|
@@ -9860,8 +9856,8 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
9860
9856
|
schHeight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
9861
9857
|
}, "strip", zod.ZodTypeAny, {
|
|
9862
9858
|
name: string;
|
|
9863
|
-
pinCount: number;
|
|
9864
9859
|
gender: "male" | "female";
|
|
9860
|
+
pinCount: number;
|
|
9865
9861
|
pcbX?: number | undefined;
|
|
9866
9862
|
pcbY?: number | undefined;
|
|
9867
9863
|
pcbRotation?: number | undefined;
|
|
@@ -10051,6 +10047,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
10051
10047
|
doNotPlace?: boolean | undefined;
|
|
10052
10048
|
schWidth?: string | number | undefined;
|
|
10053
10049
|
schHeight?: string | number | undefined;
|
|
10050
|
+
gender?: "male" | "female" | undefined;
|
|
10054
10051
|
pinLabels?: string[] | undefined;
|
|
10055
10052
|
schPinArrangement?: {
|
|
10056
10053
|
leftSize?: number | undefined;
|
|
@@ -10093,7 +10090,6 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
10093
10090
|
holeDiameter?: string | number | undefined;
|
|
10094
10091
|
pitch?: string | number | undefined;
|
|
10095
10092
|
schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
10096
|
-
gender?: "male" | "female" | undefined;
|
|
10097
10093
|
showSilkscreenPinLabels?: boolean | undefined;
|
|
10098
10094
|
doubleRow?: boolean | undefined;
|
|
10099
10095
|
platedDiameter?: string | number | undefined;
|
|
@@ -10133,7 +10129,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
10133
10129
|
} & {
|
|
10134
10130
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
10135
10131
|
name: zod.ZodString;
|
|
10136
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
10132
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
10137
10133
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
10138
10134
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
10139
10135
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -10173,9 +10169,9 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
10173
10169
|
y: string | number;
|
|
10174
10170
|
z: string | number;
|
|
10175
10171
|
}>>;
|
|
10176
|
-
}
|
|
10172
|
+
} & {
|
|
10177
10173
|
stlUrl: zod.ZodString;
|
|
10178
|
-
}
|
|
10174
|
+
}, "strip", zod.ZodTypeAny, {
|
|
10179
10175
|
stlUrl: string;
|
|
10180
10176
|
rotationOffset?: number | {
|
|
10181
10177
|
x: string | number;
|
|
@@ -10209,7 +10205,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
10209
10205
|
y: string | number;
|
|
10210
10206
|
z: string | number;
|
|
10211
10207
|
} | undefined;
|
|
10212
|
-
}>, zod.ZodObject<
|
|
10208
|
+
}>, zod.ZodObject<{
|
|
10213
10209
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
10214
10210
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
10215
10211
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -10249,10 +10245,10 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
10249
10245
|
y: string | number;
|
|
10250
10246
|
z: string | number;
|
|
10251
10247
|
}>>;
|
|
10252
|
-
}
|
|
10248
|
+
} & {
|
|
10253
10249
|
objUrl: zod.ZodString;
|
|
10254
10250
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
10255
|
-
}
|
|
10251
|
+
}, "strip", zod.ZodTypeAny, {
|
|
10256
10252
|
objUrl: string;
|
|
10257
10253
|
rotationOffset?: number | {
|
|
10258
10254
|
x: string | number;
|
|
@@ -10288,7 +10284,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
10288
10284
|
z: string | number;
|
|
10289
10285
|
} | undefined;
|
|
10290
10286
|
mtlUrl?: string | undefined;
|
|
10291
|
-
}>, zod.ZodObject<
|
|
10287
|
+
}>, zod.ZodObject<{
|
|
10292
10288
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
10293
10289
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
10294
10290
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -10328,9 +10324,9 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
10328
10324
|
y: string | number;
|
|
10329
10325
|
z: string | number;
|
|
10330
10326
|
}>>;
|
|
10331
|
-
}
|
|
10327
|
+
} & {
|
|
10332
10328
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
10333
|
-
}
|
|
10329
|
+
}, "strip", zod.ZodTypeAny, {
|
|
10334
10330
|
jscad: Record<string, any>;
|
|
10335
10331
|
rotationOffset?: number | {
|
|
10336
10332
|
x: string | number;
|
|
@@ -10551,7 +10547,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
10551
10547
|
} & {
|
|
10552
10548
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
10553
10549
|
name: zod.ZodString;
|
|
10554
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
10550
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
10555
10551
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
10556
10552
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
10557
10553
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -10591,9 +10587,9 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
10591
10587
|
y: string | number;
|
|
10592
10588
|
z: string | number;
|
|
10593
10589
|
}>>;
|
|
10594
|
-
}
|
|
10590
|
+
} & {
|
|
10595
10591
|
stlUrl: zod.ZodString;
|
|
10596
|
-
}
|
|
10592
|
+
}, "strip", zod.ZodTypeAny, {
|
|
10597
10593
|
stlUrl: string;
|
|
10598
10594
|
rotationOffset?: number | {
|
|
10599
10595
|
x: string | number;
|
|
@@ -10627,7 +10623,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
10627
10623
|
y: string | number;
|
|
10628
10624
|
z: string | number;
|
|
10629
10625
|
} | undefined;
|
|
10630
|
-
}>, zod.ZodObject<
|
|
10626
|
+
}>, zod.ZodObject<{
|
|
10631
10627
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
10632
10628
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
10633
10629
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -10667,10 +10663,10 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
10667
10663
|
y: string | number;
|
|
10668
10664
|
z: string | number;
|
|
10669
10665
|
}>>;
|
|
10670
|
-
}
|
|
10666
|
+
} & {
|
|
10671
10667
|
objUrl: zod.ZodString;
|
|
10672
10668
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
10673
|
-
}
|
|
10669
|
+
}, "strip", zod.ZodTypeAny, {
|
|
10674
10670
|
objUrl: string;
|
|
10675
10671
|
rotationOffset?: number | {
|
|
10676
10672
|
x: string | number;
|
|
@@ -10706,7 +10702,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
10706
10702
|
z: string | number;
|
|
10707
10703
|
} | undefined;
|
|
10708
10704
|
mtlUrl?: string | undefined;
|
|
10709
|
-
}>, zod.ZodObject<
|
|
10705
|
+
}>, zod.ZodObject<{
|
|
10710
10706
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
10711
10707
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
10712
10708
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -10746,9 +10742,9 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
10746
10742
|
y: string | number;
|
|
10747
10743
|
z: string | number;
|
|
10748
10744
|
}>>;
|
|
10749
|
-
}
|
|
10745
|
+
} & {
|
|
10750
10746
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
10751
|
-
}
|
|
10747
|
+
}, "strip", zod.ZodTypeAny, {
|
|
10752
10748
|
jscad: Record<string, any>;
|
|
10753
10749
|
rotationOffset?: number | {
|
|
10754
10750
|
x: string | number;
|
|
@@ -10971,7 +10967,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
10971
10967
|
} & {
|
|
10972
10968
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
10973
10969
|
name: zod.ZodString;
|
|
10974
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
10970
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
10975
10971
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
10976
10972
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
10977
10973
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -11011,9 +11007,9 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
11011
11007
|
y: string | number;
|
|
11012
11008
|
z: string | number;
|
|
11013
11009
|
}>>;
|
|
11014
|
-
}
|
|
11010
|
+
} & {
|
|
11015
11011
|
stlUrl: zod.ZodString;
|
|
11016
|
-
}
|
|
11012
|
+
}, "strip", zod.ZodTypeAny, {
|
|
11017
11013
|
stlUrl: string;
|
|
11018
11014
|
rotationOffset?: number | {
|
|
11019
11015
|
x: string | number;
|
|
@@ -11047,7 +11043,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
11047
11043
|
y: string | number;
|
|
11048
11044
|
z: string | number;
|
|
11049
11045
|
} | undefined;
|
|
11050
|
-
}>, zod.ZodObject<
|
|
11046
|
+
}>, zod.ZodObject<{
|
|
11051
11047
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
11052
11048
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
11053
11049
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -11087,10 +11083,10 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
11087
11083
|
y: string | number;
|
|
11088
11084
|
z: string | number;
|
|
11089
11085
|
}>>;
|
|
11090
|
-
}
|
|
11086
|
+
} & {
|
|
11091
11087
|
objUrl: zod.ZodString;
|
|
11092
11088
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
11093
|
-
}
|
|
11089
|
+
}, "strip", zod.ZodTypeAny, {
|
|
11094
11090
|
objUrl: string;
|
|
11095
11091
|
rotationOffset?: number | {
|
|
11096
11092
|
x: string | number;
|
|
@@ -11126,7 +11122,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
11126
11122
|
z: string | number;
|
|
11127
11123
|
} | undefined;
|
|
11128
11124
|
mtlUrl?: string | undefined;
|
|
11129
|
-
}>, zod.ZodObject<
|
|
11125
|
+
}>, zod.ZodObject<{
|
|
11130
11126
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
11131
11127
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
11132
11128
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -11166,9 +11162,9 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
11166
11162
|
y: string | number;
|
|
11167
11163
|
z: string | number;
|
|
11168
11164
|
}>>;
|
|
11169
|
-
}
|
|
11165
|
+
} & {
|
|
11170
11166
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
11171
|
-
}
|
|
11167
|
+
}, "strip", zod.ZodTypeAny, {
|
|
11172
11168
|
jscad: Record<string, any>;
|
|
11173
11169
|
rotationOffset?: number | {
|
|
11174
11170
|
x: string | number;
|
|
@@ -11387,7 +11383,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
11387
11383
|
} & {
|
|
11388
11384
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
11389
11385
|
name: zod.ZodString;
|
|
11390
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
11386
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
11391
11387
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
11392
11388
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
11393
11389
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -11427,9 +11423,9 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
11427
11423
|
y: string | number;
|
|
11428
11424
|
z: string | number;
|
|
11429
11425
|
}>>;
|
|
11430
|
-
}
|
|
11426
|
+
} & {
|
|
11431
11427
|
stlUrl: zod.ZodString;
|
|
11432
|
-
}
|
|
11428
|
+
}, "strip", zod.ZodTypeAny, {
|
|
11433
11429
|
stlUrl: string;
|
|
11434
11430
|
rotationOffset?: number | {
|
|
11435
11431
|
x: string | number;
|
|
@@ -11463,7 +11459,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
11463
11459
|
y: string | number;
|
|
11464
11460
|
z: string | number;
|
|
11465
11461
|
} | undefined;
|
|
11466
|
-
}>, zod.ZodObject<
|
|
11462
|
+
}>, zod.ZodObject<{
|
|
11467
11463
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
11468
11464
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
11469
11465
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -11503,10 +11499,10 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
11503
11499
|
y: string | number;
|
|
11504
11500
|
z: string | number;
|
|
11505
11501
|
}>>;
|
|
11506
|
-
}
|
|
11502
|
+
} & {
|
|
11507
11503
|
objUrl: zod.ZodString;
|
|
11508
11504
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
11509
|
-
}
|
|
11505
|
+
}, "strip", zod.ZodTypeAny, {
|
|
11510
11506
|
objUrl: string;
|
|
11511
11507
|
rotationOffset?: number | {
|
|
11512
11508
|
x: string | number;
|
|
@@ -11542,7 +11538,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
11542
11538
|
z: string | number;
|
|
11543
11539
|
} | undefined;
|
|
11544
11540
|
mtlUrl?: string | undefined;
|
|
11545
|
-
}>, zod.ZodObject<
|
|
11541
|
+
}>, zod.ZodObject<{
|
|
11546
11542
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
11547
11543
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
11548
11544
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -11582,9 +11578,9 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
11582
11578
|
y: string | number;
|
|
11583
11579
|
z: string | number;
|
|
11584
11580
|
}>>;
|
|
11585
|
-
}
|
|
11581
|
+
} & {
|
|
11586
11582
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
11587
|
-
}
|
|
11583
|
+
}, "strip", zod.ZodTypeAny, {
|
|
11588
11584
|
jscad: Record<string, any>;
|
|
11589
11585
|
rotationOffset?: number | {
|
|
11590
11586
|
x: string | number;
|
|
@@ -12198,7 +12194,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
12198
12194
|
} & {
|
|
12199
12195
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
12200
12196
|
name: zod.ZodString;
|
|
12201
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
12197
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
12202
12198
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
12203
12199
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
12204
12200
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -12238,9 +12234,9 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
12238
12234
|
y: string | number;
|
|
12239
12235
|
z: string | number;
|
|
12240
12236
|
}>>;
|
|
12241
|
-
}
|
|
12237
|
+
} & {
|
|
12242
12238
|
stlUrl: zod.ZodString;
|
|
12243
|
-
}
|
|
12239
|
+
}, "strip", zod.ZodTypeAny, {
|
|
12244
12240
|
stlUrl: string;
|
|
12245
12241
|
rotationOffset?: number | {
|
|
12246
12242
|
x: string | number;
|
|
@@ -12274,7 +12270,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
12274
12270
|
y: string | number;
|
|
12275
12271
|
z: string | number;
|
|
12276
12272
|
} | undefined;
|
|
12277
|
-
}>, zod.ZodObject<
|
|
12273
|
+
}>, zod.ZodObject<{
|
|
12278
12274
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
12279
12275
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
12280
12276
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -12314,10 +12310,10 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
12314
12310
|
y: string | number;
|
|
12315
12311
|
z: string | number;
|
|
12316
12312
|
}>>;
|
|
12317
|
-
}
|
|
12313
|
+
} & {
|
|
12318
12314
|
objUrl: zod.ZodString;
|
|
12319
12315
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
12320
|
-
}
|
|
12316
|
+
}, "strip", zod.ZodTypeAny, {
|
|
12321
12317
|
objUrl: string;
|
|
12322
12318
|
rotationOffset?: number | {
|
|
12323
12319
|
x: string | number;
|
|
@@ -12353,7 +12349,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
12353
12349
|
z: string | number;
|
|
12354
12350
|
} | undefined;
|
|
12355
12351
|
mtlUrl?: string | undefined;
|
|
12356
|
-
}>, zod.ZodObject<
|
|
12352
|
+
}>, zod.ZodObject<{
|
|
12357
12353
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
12358
12354
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
12359
12355
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -12393,9 +12389,9 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
12393
12389
|
y: string | number;
|
|
12394
12390
|
z: string | number;
|
|
12395
12391
|
}>>;
|
|
12396
|
-
}
|
|
12392
|
+
} & {
|
|
12397
12393
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
12398
|
-
}
|
|
12394
|
+
}, "strip", zod.ZodTypeAny, {
|
|
12399
12395
|
jscad: Record<string, any>;
|
|
12400
12396
|
rotationOffset?: number | {
|
|
12401
12397
|
x: string | number;
|
|
@@ -12621,7 +12617,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
12621
12617
|
} & {
|
|
12622
12618
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
12623
12619
|
name: zod.ZodString;
|
|
12624
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
12620
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
12625
12621
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
12626
12622
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
12627
12623
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -12661,9 +12657,9 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
12661
12657
|
y: string | number;
|
|
12662
12658
|
z: string | number;
|
|
12663
12659
|
}>>;
|
|
12664
|
-
}
|
|
12660
|
+
} & {
|
|
12665
12661
|
stlUrl: zod.ZodString;
|
|
12666
|
-
}
|
|
12662
|
+
}, "strip", zod.ZodTypeAny, {
|
|
12667
12663
|
stlUrl: string;
|
|
12668
12664
|
rotationOffset?: number | {
|
|
12669
12665
|
x: string | number;
|
|
@@ -12697,7 +12693,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
12697
12693
|
y: string | number;
|
|
12698
12694
|
z: string | number;
|
|
12699
12695
|
} | undefined;
|
|
12700
|
-
}>, zod.ZodObject<
|
|
12696
|
+
}>, zod.ZodObject<{
|
|
12701
12697
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
12702
12698
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
12703
12699
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -12737,10 +12733,10 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
12737
12733
|
y: string | number;
|
|
12738
12734
|
z: string | number;
|
|
12739
12735
|
}>>;
|
|
12740
|
-
}
|
|
12736
|
+
} & {
|
|
12741
12737
|
objUrl: zod.ZodString;
|
|
12742
12738
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
12743
|
-
}
|
|
12739
|
+
}, "strip", zod.ZodTypeAny, {
|
|
12744
12740
|
objUrl: string;
|
|
12745
12741
|
rotationOffset?: number | {
|
|
12746
12742
|
x: string | number;
|
|
@@ -12776,7 +12772,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
12776
12772
|
z: string | number;
|
|
12777
12773
|
} | undefined;
|
|
12778
12774
|
mtlUrl?: string | undefined;
|
|
12779
|
-
}>, zod.ZodObject<
|
|
12775
|
+
}>, zod.ZodObject<{
|
|
12780
12776
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
12781
12777
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
12782
12778
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -12816,9 +12812,9 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
12816
12812
|
y: string | number;
|
|
12817
12813
|
z: string | number;
|
|
12818
12814
|
}>>;
|
|
12819
|
-
}
|
|
12815
|
+
} & {
|
|
12820
12816
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
12821
|
-
}
|
|
12817
|
+
}, "strip", zod.ZodTypeAny, {
|
|
12822
12818
|
jscad: Record<string, any>;
|
|
12823
12819
|
rotationOffset?: number | {
|
|
12824
12820
|
x: string | number;
|
|
@@ -13038,7 +13034,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
13038
13034
|
} & {
|
|
13039
13035
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
13040
13036
|
name: zod.ZodString;
|
|
13041
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
13037
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
13042
13038
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
13043
13039
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
13044
13040
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -13078,9 +13074,9 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
13078
13074
|
y: string | number;
|
|
13079
13075
|
z: string | number;
|
|
13080
13076
|
}>>;
|
|
13081
|
-
}
|
|
13077
|
+
} & {
|
|
13082
13078
|
stlUrl: zod.ZodString;
|
|
13083
|
-
}
|
|
13079
|
+
}, "strip", zod.ZodTypeAny, {
|
|
13084
13080
|
stlUrl: string;
|
|
13085
13081
|
rotationOffset?: number | {
|
|
13086
13082
|
x: string | number;
|
|
@@ -13114,7 +13110,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
13114
13110
|
y: string | number;
|
|
13115
13111
|
z: string | number;
|
|
13116
13112
|
} | undefined;
|
|
13117
|
-
}>, zod.ZodObject<
|
|
13113
|
+
}>, zod.ZodObject<{
|
|
13118
13114
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
13119
13115
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
13120
13116
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -13154,10 +13150,10 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
13154
13150
|
y: string | number;
|
|
13155
13151
|
z: string | number;
|
|
13156
13152
|
}>>;
|
|
13157
|
-
}
|
|
13153
|
+
} & {
|
|
13158
13154
|
objUrl: zod.ZodString;
|
|
13159
13155
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
13160
|
-
}
|
|
13156
|
+
}, "strip", zod.ZodTypeAny, {
|
|
13161
13157
|
objUrl: string;
|
|
13162
13158
|
rotationOffset?: number | {
|
|
13163
13159
|
x: string | number;
|
|
@@ -13193,7 +13189,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
13193
13189
|
z: string | number;
|
|
13194
13190
|
} | undefined;
|
|
13195
13191
|
mtlUrl?: string | undefined;
|
|
13196
|
-
}>, zod.ZodObject<
|
|
13192
|
+
}>, zod.ZodObject<{
|
|
13197
13193
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
13198
13194
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
13199
13195
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -13233,9 +13229,9 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
13233
13229
|
y: string | number;
|
|
13234
13230
|
z: string | number;
|
|
13235
13231
|
}>>;
|
|
13236
|
-
}
|
|
13232
|
+
} & {
|
|
13237
13233
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
13238
|
-
}
|
|
13234
|
+
}, "strip", zod.ZodTypeAny, {
|
|
13239
13235
|
jscad: Record<string, any>;
|
|
13240
13236
|
rotationOffset?: number | {
|
|
13241
13237
|
x: string | number;
|
|
@@ -13454,7 +13450,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
13454
13450
|
} & {
|
|
13455
13451
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
13456
13452
|
name: zod.ZodString;
|
|
13457
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
13453
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
13458
13454
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
13459
13455
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
13460
13456
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -13494,9 +13490,9 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
13494
13490
|
y: string | number;
|
|
13495
13491
|
z: string | number;
|
|
13496
13492
|
}>>;
|
|
13497
|
-
}
|
|
13493
|
+
} & {
|
|
13498
13494
|
stlUrl: zod.ZodString;
|
|
13499
|
-
}
|
|
13495
|
+
}, "strip", zod.ZodTypeAny, {
|
|
13500
13496
|
stlUrl: string;
|
|
13501
13497
|
rotationOffset?: number | {
|
|
13502
13498
|
x: string | number;
|
|
@@ -13530,7 +13526,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
13530
13526
|
y: string | number;
|
|
13531
13527
|
z: string | number;
|
|
13532
13528
|
} | undefined;
|
|
13533
|
-
}>, zod.ZodObject<
|
|
13529
|
+
}>, zod.ZodObject<{
|
|
13534
13530
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
13535
13531
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
13536
13532
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -13570,10 +13566,10 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
13570
13566
|
y: string | number;
|
|
13571
13567
|
z: string | number;
|
|
13572
13568
|
}>>;
|
|
13573
|
-
}
|
|
13569
|
+
} & {
|
|
13574
13570
|
objUrl: zod.ZodString;
|
|
13575
13571
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
13576
|
-
}
|
|
13572
|
+
}, "strip", zod.ZodTypeAny, {
|
|
13577
13573
|
objUrl: string;
|
|
13578
13574
|
rotationOffset?: number | {
|
|
13579
13575
|
x: string | number;
|
|
@@ -13609,7 +13605,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
13609
13605
|
z: string | number;
|
|
13610
13606
|
} | undefined;
|
|
13611
13607
|
mtlUrl?: string | undefined;
|
|
13612
|
-
}>, zod.ZodObject<
|
|
13608
|
+
}>, zod.ZodObject<{
|
|
13613
13609
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
13614
13610
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
13615
13611
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -13649,9 +13645,9 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
13649
13645
|
y: string | number;
|
|
13650
13646
|
z: string | number;
|
|
13651
13647
|
}>>;
|
|
13652
|
-
}
|
|
13648
|
+
} & {
|
|
13653
13649
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
13654
|
-
}
|
|
13650
|
+
}, "strip", zod.ZodTypeAny, {
|
|
13655
13651
|
jscad: Record<string, any>;
|
|
13656
13652
|
rotationOffset?: number | {
|
|
13657
13653
|
x: string | number;
|
|
@@ -13958,7 +13954,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
13958
13954
|
} & {
|
|
13959
13955
|
key: zod.ZodOptional<zod.ZodAny>;
|
|
13960
13956
|
name: zod.ZodString;
|
|
13961
|
-
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<
|
|
13957
|
+
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodString, zod.ZodObject<{
|
|
13962
13958
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
13963
13959
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
13964
13960
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -13998,9 +13994,9 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
13998
13994
|
y: string | number;
|
|
13999
13995
|
z: string | number;
|
|
14000
13996
|
}>>;
|
|
14001
|
-
}
|
|
13997
|
+
} & {
|
|
14002
13998
|
stlUrl: zod.ZodString;
|
|
14003
|
-
}
|
|
13999
|
+
}, "strip", zod.ZodTypeAny, {
|
|
14004
14000
|
stlUrl: string;
|
|
14005
14001
|
rotationOffset?: number | {
|
|
14006
14002
|
x: string | number;
|
|
@@ -14034,7 +14030,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
14034
14030
|
y: string | number;
|
|
14035
14031
|
z: string | number;
|
|
14036
14032
|
} | undefined;
|
|
14037
|
-
}>, zod.ZodObject<
|
|
14033
|
+
}>, zod.ZodObject<{
|
|
14038
14034
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
14039
14035
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
14040
14036
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -14074,10 +14070,10 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
14074
14070
|
y: string | number;
|
|
14075
14071
|
z: string | number;
|
|
14076
14072
|
}>>;
|
|
14077
|
-
}
|
|
14073
|
+
} & {
|
|
14078
14074
|
objUrl: zod.ZodString;
|
|
14079
14075
|
mtlUrl: zod.ZodOptional<zod.ZodString>;
|
|
14080
|
-
}
|
|
14076
|
+
}, "strip", zod.ZodTypeAny, {
|
|
14081
14077
|
objUrl: string;
|
|
14082
14078
|
rotationOffset?: number | {
|
|
14083
14079
|
x: string | number;
|
|
@@ -14113,7 +14109,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
14113
14109
|
z: string | number;
|
|
14114
14110
|
} | undefined;
|
|
14115
14111
|
mtlUrl?: string | undefined;
|
|
14116
|
-
}>, zod.ZodObject<
|
|
14112
|
+
}>, zod.ZodObject<{
|
|
14117
14113
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
14118
14114
|
x: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
14119
14115
|
y: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -14153,9 +14149,9 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
14153
14149
|
y: string | number;
|
|
14154
14150
|
z: string | number;
|
|
14155
14151
|
}>>;
|
|
14156
|
-
}
|
|
14152
|
+
} & {
|
|
14157
14153
|
jscad: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
14158
|
-
}
|
|
14154
|
+
}, "strip", zod.ZodTypeAny, {
|
|
14159
14155
|
jscad: Record<string, any>;
|
|
14160
14156
|
rotationOffset?: number | {
|
|
14161
14157
|
x: string | number;
|
|
@@ -14769,10 +14765,10 @@ declare const useLed: <PropsFromHook extends Omit<{
|
|
|
14769
14765
|
children?: any;
|
|
14770
14766
|
symbolName?: string | undefined;
|
|
14771
14767
|
doNotPlace?: boolean | undefined;
|
|
14772
|
-
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
14773
|
-
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
14774
14768
|
color?: string | undefined;
|
|
14775
14769
|
wavelength?: string | undefined;
|
|
14770
|
+
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
14771
|
+
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
14776
14772
|
schDisplayValue?: string | undefined;
|
|
14777
14773
|
}, "name"> | undefined = undefined>(name: string, props?: PropsFromHook | undefined) => ComponentWithPins<{
|
|
14778
14774
|
name: string;
|
|
@@ -14845,10 +14841,10 @@ declare const useLed: <PropsFromHook extends Omit<{
|
|
|
14845
14841
|
children?: any;
|
|
14846
14842
|
symbolName?: string | undefined;
|
|
14847
14843
|
doNotPlace?: boolean | undefined;
|
|
14848
|
-
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
14849
|
-
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
14850
14844
|
color?: string | undefined;
|
|
14851
14845
|
wavelength?: string | undefined;
|
|
14846
|
+
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
14847
|
+
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
14852
14848
|
schDisplayValue?: string | undefined;
|
|
14853
14849
|
}, "left" | "right" | "pin1" | "pin2" | "anode" | "cathode" | "pos" | "neg", PropsFromHook>;
|
|
14854
14850
|
|