@tscircuit/props 0.0.577 → 0.0.579
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 +365 -327
- package/dist/index.js +1026 -1012
- package/dist/index.js.map +1 -1
- package/lib/components/netlabel.ts +9 -17
- package/lib/enclosure/fdm/box.ts +24 -0
- package/lib/enclosure/fdm/index.ts +1 -0
- package/lib/enclosure/index.ts +9 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as zod from 'zod';
|
|
1
2
|
import { z } from 'zod';
|
|
2
3
|
import * as react from 'react';
|
|
3
4
|
import { ReactElement } from 'react';
|
|
@@ -8,11 +9,64 @@ type Direction = "up" | "down" | "left" | "right";
|
|
|
8
9
|
type DirectionAlongEdge = "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9
10
|
declare const directionAlongEdge: z.ZodEnum<["top-to-bottom", "left-to-right", "bottom-to-top", "right-to-left"]>;
|
|
10
11
|
|
|
12
|
+
type Distance = number | string;
|
|
13
|
+
|
|
14
|
+
interface EnclosureFdmBoxProps {
|
|
15
|
+
/** The name or selector of the board enclosed by this box. */
|
|
16
|
+
boardRef: string;
|
|
17
|
+
width?: Distance;
|
|
18
|
+
height?: Distance;
|
|
19
|
+
depth?: Distance;
|
|
20
|
+
wallThickness?: Distance;
|
|
21
|
+
}
|
|
22
|
+
declare const enclosureFdmBoxProps: z.ZodObject<{
|
|
23
|
+
boardRef: z.ZodString;
|
|
24
|
+
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25
|
+
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26
|
+
depth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27
|
+
wallThickness: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28
|
+
}, "strip", z.ZodTypeAny, {
|
|
29
|
+
boardRef: string;
|
|
30
|
+
wallThickness: number;
|
|
31
|
+
width?: number | undefined;
|
|
32
|
+
height?: number | undefined;
|
|
33
|
+
depth?: number | undefined;
|
|
34
|
+
}, {
|
|
35
|
+
boardRef: string;
|
|
36
|
+
width?: string | number | undefined;
|
|
37
|
+
height?: string | number | undefined;
|
|
38
|
+
depth?: string | number | undefined;
|
|
39
|
+
wallThickness?: string | number | undefined;
|
|
40
|
+
}>;
|
|
41
|
+
type EnclosureFdmBoxPropsInput = z.input<typeof enclosureFdmBoxProps>;
|
|
42
|
+
|
|
43
|
+
declare const enclosureProps: {
|
|
44
|
+
readonly fdm: {
|
|
45
|
+
readonly Box: zod.ZodObject<{
|
|
46
|
+
boardRef: zod.ZodString;
|
|
47
|
+
width: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
48
|
+
height: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
49
|
+
depth: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
50
|
+
wallThickness: zod.ZodDefault<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
51
|
+
}, "strip", zod.ZodTypeAny, {
|
|
52
|
+
boardRef: string;
|
|
53
|
+
wallThickness: number;
|
|
54
|
+
width?: number | undefined;
|
|
55
|
+
height?: number | undefined;
|
|
56
|
+
depth?: number | undefined;
|
|
57
|
+
}, {
|
|
58
|
+
boardRef: string;
|
|
59
|
+
width?: string | number | undefined;
|
|
60
|
+
height?: string | number | undefined;
|
|
61
|
+
depth?: string | number | undefined;
|
|
62
|
+
wallThickness?: string | number | undefined;
|
|
63
|
+
}>;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
|
|
11
67
|
declare const portHints: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
12
68
|
type PortHints = (string | number)[];
|
|
13
69
|
|
|
14
|
-
type Distance = number | string;
|
|
15
|
-
|
|
16
70
|
declare const rotationPoint3: z.ZodObject<{
|
|
17
71
|
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
18
72
|
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -17612,6 +17666,8 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
17612
17666
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
17613
17667
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
17614
17668
|
}, "strip", z.ZodTypeAny, {
|
|
17669
|
+
width?: number | undefined;
|
|
17670
|
+
height?: number | undefined;
|
|
17615
17671
|
grid?: boolean | undefined;
|
|
17616
17672
|
flex?: string | boolean | undefined;
|
|
17617
17673
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -17640,11 +17696,11 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
17640
17696
|
paddingBottom?: number | undefined;
|
|
17641
17697
|
paddingX?: number | undefined;
|
|
17642
17698
|
paddingY?: number | undefined;
|
|
17643
|
-
width?: number | undefined;
|
|
17644
|
-
height?: number | undefined;
|
|
17645
17699
|
matchAdapt?: boolean | undefined;
|
|
17646
17700
|
matchAdaptTemplate?: any;
|
|
17647
17701
|
}, {
|
|
17702
|
+
width?: string | number | undefined;
|
|
17703
|
+
height?: string | number | undefined;
|
|
17648
17704
|
grid?: boolean | undefined;
|
|
17649
17705
|
flex?: string | boolean | undefined;
|
|
17650
17706
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -17673,8 +17729,6 @@ declare const layoutConfig: z.ZodObject<{
|
|
|
17673
17729
|
paddingBottom?: string | number | undefined;
|
|
17674
17730
|
paddingX?: string | number | undefined;
|
|
17675
17731
|
paddingY?: string | number | undefined;
|
|
17676
|
-
width?: string | number | undefined;
|
|
17677
|
-
height?: string | number | undefined;
|
|
17678
17732
|
matchAdapt?: boolean | undefined;
|
|
17679
17733
|
matchAdaptTemplate?: any;
|
|
17680
17734
|
}>;
|
|
@@ -18166,6 +18220,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
18166
18220
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
18167
18221
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
18168
18222
|
}, "strip", z.ZodTypeAny, {
|
|
18223
|
+
width?: number | undefined;
|
|
18224
|
+
height?: number | undefined;
|
|
18169
18225
|
grid?: boolean | undefined;
|
|
18170
18226
|
flex?: string | boolean | undefined;
|
|
18171
18227
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -18194,11 +18250,11 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
18194
18250
|
paddingBottom?: number | undefined;
|
|
18195
18251
|
paddingX?: number | undefined;
|
|
18196
18252
|
paddingY?: number | undefined;
|
|
18197
|
-
width?: number | undefined;
|
|
18198
|
-
height?: number | undefined;
|
|
18199
18253
|
matchAdapt?: boolean | undefined;
|
|
18200
18254
|
matchAdaptTemplate?: any;
|
|
18201
18255
|
}, {
|
|
18256
|
+
width?: string | number | undefined;
|
|
18257
|
+
height?: string | number | undefined;
|
|
18202
18258
|
grid?: boolean | undefined;
|
|
18203
18259
|
flex?: string | boolean | undefined;
|
|
18204
18260
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -18227,8 +18283,6 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
18227
18283
|
paddingBottom?: string | number | undefined;
|
|
18228
18284
|
paddingX?: string | number | undefined;
|
|
18229
18285
|
paddingY?: string | number | undefined;
|
|
18230
|
-
width?: string | number | undefined;
|
|
18231
|
-
height?: string | number | undefined;
|
|
18232
18286
|
matchAdapt?: boolean | undefined;
|
|
18233
18287
|
matchAdaptTemplate?: any;
|
|
18234
18288
|
}>>;
|
|
@@ -18266,6 +18320,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
18266
18320
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
18267
18321
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
18268
18322
|
}, "strip", z.ZodTypeAny, {
|
|
18323
|
+
width?: number | undefined;
|
|
18324
|
+
height?: number | undefined;
|
|
18269
18325
|
grid?: boolean | undefined;
|
|
18270
18326
|
flex?: string | boolean | undefined;
|
|
18271
18327
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -18294,11 +18350,11 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
18294
18350
|
paddingBottom?: number | undefined;
|
|
18295
18351
|
paddingX?: number | undefined;
|
|
18296
18352
|
paddingY?: number | undefined;
|
|
18297
|
-
width?: number | undefined;
|
|
18298
|
-
height?: number | undefined;
|
|
18299
18353
|
matchAdapt?: boolean | undefined;
|
|
18300
18354
|
matchAdaptTemplate?: any;
|
|
18301
18355
|
}, {
|
|
18356
|
+
width?: string | number | undefined;
|
|
18357
|
+
height?: string | number | undefined;
|
|
18302
18358
|
grid?: boolean | undefined;
|
|
18303
18359
|
flex?: string | boolean | undefined;
|
|
18304
18360
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -18327,8 +18383,6 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
18327
18383
|
paddingBottom?: string | number | undefined;
|
|
18328
18384
|
paddingX?: string | number | undefined;
|
|
18329
18385
|
paddingY?: string | number | undefined;
|
|
18330
|
-
width?: string | number | undefined;
|
|
18331
|
-
height?: string | number | undefined;
|
|
18332
18386
|
matchAdapt?: boolean | undefined;
|
|
18333
18387
|
matchAdaptTemplate?: any;
|
|
18334
18388
|
}>>;
|
|
@@ -18561,6 +18615,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
18561
18615
|
}>>>;
|
|
18562
18616
|
}, "strip", z.ZodTypeAny, {
|
|
18563
18617
|
symbol?: SymbolProp | undefined;
|
|
18618
|
+
width?: number | undefined;
|
|
18619
|
+
height?: number | undefined;
|
|
18564
18620
|
key?: any;
|
|
18565
18621
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
18566
18622
|
name?: string | undefined;
|
|
@@ -18640,8 +18696,6 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
18640
18696
|
paddingBottom?: number | undefined;
|
|
18641
18697
|
paddingX?: number | undefined;
|
|
18642
18698
|
paddingY?: number | undefined;
|
|
18643
|
-
width?: number | undefined;
|
|
18644
|
-
height?: number | undefined;
|
|
18645
18699
|
matchAdapt?: boolean | undefined;
|
|
18646
18700
|
matchAdaptTemplate?: any;
|
|
18647
18701
|
schTitle?: string | undefined;
|
|
@@ -18691,6 +18745,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
18691
18745
|
schWidth?: number | undefined;
|
|
18692
18746
|
schHeight?: number | undefined;
|
|
18693
18747
|
pcbLayout?: {
|
|
18748
|
+
width?: number | undefined;
|
|
18749
|
+
height?: number | undefined;
|
|
18694
18750
|
grid?: boolean | undefined;
|
|
18695
18751
|
flex?: string | boolean | undefined;
|
|
18696
18752
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -18719,12 +18775,12 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
18719
18775
|
paddingBottom?: number | undefined;
|
|
18720
18776
|
paddingX?: number | undefined;
|
|
18721
18777
|
paddingY?: number | undefined;
|
|
18722
|
-
width?: number | undefined;
|
|
18723
|
-
height?: number | undefined;
|
|
18724
18778
|
matchAdapt?: boolean | undefined;
|
|
18725
18779
|
matchAdaptTemplate?: any;
|
|
18726
18780
|
} | undefined;
|
|
18727
18781
|
schLayout?: {
|
|
18782
|
+
width?: number | undefined;
|
|
18783
|
+
height?: number | undefined;
|
|
18728
18784
|
grid?: boolean | undefined;
|
|
18729
18785
|
flex?: string | boolean | undefined;
|
|
18730
18786
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -18753,8 +18809,6 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
18753
18809
|
paddingBottom?: number | undefined;
|
|
18754
18810
|
paddingX?: number | undefined;
|
|
18755
18811
|
paddingY?: number | undefined;
|
|
18756
|
-
width?: number | undefined;
|
|
18757
|
-
height?: number | undefined;
|
|
18758
18812
|
matchAdapt?: boolean | undefined;
|
|
18759
18813
|
matchAdaptTemplate?: any;
|
|
18760
18814
|
} | undefined;
|
|
@@ -18819,6 +18873,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
18819
18873
|
schMatchAdapt?: boolean | undefined;
|
|
18820
18874
|
}, {
|
|
18821
18875
|
symbol?: SymbolProp | undefined;
|
|
18876
|
+
width?: string | number | undefined;
|
|
18877
|
+
height?: string | number | undefined;
|
|
18822
18878
|
key?: any;
|
|
18823
18879
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
18824
18880
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -18900,8 +18956,6 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
18900
18956
|
paddingBottom?: string | number | undefined;
|
|
18901
18957
|
paddingX?: string | number | undefined;
|
|
18902
18958
|
paddingY?: string | number | undefined;
|
|
18903
|
-
width?: string | number | undefined;
|
|
18904
|
-
height?: string | number | undefined;
|
|
18905
18959
|
matchAdapt?: boolean | undefined;
|
|
18906
18960
|
matchAdaptTemplate?: any;
|
|
18907
18961
|
schTitle?: string | undefined;
|
|
@@ -18951,6 +19005,8 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
18951
19005
|
schWidth?: string | number | undefined;
|
|
18952
19006
|
schHeight?: string | number | undefined;
|
|
18953
19007
|
pcbLayout?: {
|
|
19008
|
+
width?: string | number | undefined;
|
|
19009
|
+
height?: string | number | undefined;
|
|
18954
19010
|
grid?: boolean | undefined;
|
|
18955
19011
|
flex?: string | boolean | undefined;
|
|
18956
19012
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -18979,12 +19035,12 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
18979
19035
|
paddingBottom?: string | number | undefined;
|
|
18980
19036
|
paddingX?: string | number | undefined;
|
|
18981
19037
|
paddingY?: string | number | undefined;
|
|
18982
|
-
width?: string | number | undefined;
|
|
18983
|
-
height?: string | number | undefined;
|
|
18984
19038
|
matchAdapt?: boolean | undefined;
|
|
18985
19039
|
matchAdaptTemplate?: any;
|
|
18986
19040
|
} | undefined;
|
|
18987
19041
|
schLayout?: {
|
|
19042
|
+
width?: string | number | undefined;
|
|
19043
|
+
height?: string | number | undefined;
|
|
18988
19044
|
grid?: boolean | undefined;
|
|
18989
19045
|
flex?: string | boolean | undefined;
|
|
18990
19046
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -19013,8 +19069,6 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
19013
19069
|
paddingBottom?: string | number | undefined;
|
|
19014
19070
|
paddingX?: string | number | undefined;
|
|
19015
19071
|
paddingY?: string | number | undefined;
|
|
19016
|
-
width?: string | number | undefined;
|
|
19017
|
-
height?: string | number | undefined;
|
|
19018
19072
|
matchAdapt?: boolean | undefined;
|
|
19019
19073
|
matchAdaptTemplate?: any;
|
|
19020
19074
|
} | undefined;
|
|
@@ -19244,6 +19298,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
19244
19298
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
19245
19299
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
19246
19300
|
}, "strip", z.ZodTypeAny, {
|
|
19301
|
+
width?: number | undefined;
|
|
19302
|
+
height?: number | undefined;
|
|
19247
19303
|
grid?: boolean | undefined;
|
|
19248
19304
|
flex?: string | boolean | undefined;
|
|
19249
19305
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -19272,11 +19328,11 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
19272
19328
|
paddingBottom?: number | undefined;
|
|
19273
19329
|
paddingX?: number | undefined;
|
|
19274
19330
|
paddingY?: number | undefined;
|
|
19275
|
-
width?: number | undefined;
|
|
19276
|
-
height?: number | undefined;
|
|
19277
19331
|
matchAdapt?: boolean | undefined;
|
|
19278
19332
|
matchAdaptTemplate?: any;
|
|
19279
19333
|
}, {
|
|
19334
|
+
width?: string | number | undefined;
|
|
19335
|
+
height?: string | number | undefined;
|
|
19280
19336
|
grid?: boolean | undefined;
|
|
19281
19337
|
flex?: string | boolean | undefined;
|
|
19282
19338
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -19305,8 +19361,6 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
19305
19361
|
paddingBottom?: string | number | undefined;
|
|
19306
19362
|
paddingX?: string | number | undefined;
|
|
19307
19363
|
paddingY?: string | number | undefined;
|
|
19308
|
-
width?: string | number | undefined;
|
|
19309
|
-
height?: string | number | undefined;
|
|
19310
19364
|
matchAdapt?: boolean | undefined;
|
|
19311
19365
|
matchAdaptTemplate?: any;
|
|
19312
19366
|
}>>;
|
|
@@ -19344,6 +19398,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
19344
19398
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
19345
19399
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
19346
19400
|
}, "strip", z.ZodTypeAny, {
|
|
19401
|
+
width?: number | undefined;
|
|
19402
|
+
height?: number | undefined;
|
|
19347
19403
|
grid?: boolean | undefined;
|
|
19348
19404
|
flex?: string | boolean | undefined;
|
|
19349
19405
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -19372,11 +19428,11 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
19372
19428
|
paddingBottom?: number | undefined;
|
|
19373
19429
|
paddingX?: number | undefined;
|
|
19374
19430
|
paddingY?: number | undefined;
|
|
19375
|
-
width?: number | undefined;
|
|
19376
|
-
height?: number | undefined;
|
|
19377
19431
|
matchAdapt?: boolean | undefined;
|
|
19378
19432
|
matchAdaptTemplate?: any;
|
|
19379
19433
|
}, {
|
|
19434
|
+
width?: string | number | undefined;
|
|
19435
|
+
height?: string | number | undefined;
|
|
19380
19436
|
grid?: boolean | undefined;
|
|
19381
19437
|
flex?: string | boolean | undefined;
|
|
19382
19438
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -19405,8 +19461,6 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
19405
19461
|
paddingBottom?: string | number | undefined;
|
|
19406
19462
|
paddingX?: string | number | undefined;
|
|
19407
19463
|
paddingY?: string | number | undefined;
|
|
19408
|
-
width?: string | number | undefined;
|
|
19409
|
-
height?: string | number | undefined;
|
|
19410
19464
|
matchAdapt?: boolean | undefined;
|
|
19411
19465
|
matchAdaptTemplate?: any;
|
|
19412
19466
|
}>>;
|
|
@@ -19846,6 +19900,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
19846
19900
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19847
19901
|
}, "strip", z.ZodTypeAny, {
|
|
19848
19902
|
symbol?: SymbolProp | undefined;
|
|
19903
|
+
width?: number | undefined;
|
|
19904
|
+
height?: number | undefined;
|
|
19849
19905
|
key?: any;
|
|
19850
19906
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
19851
19907
|
name?: string | undefined;
|
|
@@ -19925,8 +19981,6 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
19925
19981
|
paddingBottom?: number | undefined;
|
|
19926
19982
|
paddingX?: number | undefined;
|
|
19927
19983
|
paddingY?: number | undefined;
|
|
19928
|
-
width?: number | undefined;
|
|
19929
|
-
height?: number | undefined;
|
|
19930
19984
|
matchAdapt?: boolean | undefined;
|
|
19931
19985
|
matchAdaptTemplate?: any;
|
|
19932
19986
|
schTitle?: string | undefined;
|
|
@@ -19976,6 +20030,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
19976
20030
|
schWidth?: number | undefined;
|
|
19977
20031
|
schHeight?: number | undefined;
|
|
19978
20032
|
pcbLayout?: {
|
|
20033
|
+
width?: number | undefined;
|
|
20034
|
+
height?: number | undefined;
|
|
19979
20035
|
grid?: boolean | undefined;
|
|
19980
20036
|
flex?: string | boolean | undefined;
|
|
19981
20037
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -20004,12 +20060,12 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20004
20060
|
paddingBottom?: number | undefined;
|
|
20005
20061
|
paddingX?: number | undefined;
|
|
20006
20062
|
paddingY?: number | undefined;
|
|
20007
|
-
width?: number | undefined;
|
|
20008
|
-
height?: number | undefined;
|
|
20009
20063
|
matchAdapt?: boolean | undefined;
|
|
20010
20064
|
matchAdaptTemplate?: any;
|
|
20011
20065
|
} | undefined;
|
|
20012
20066
|
schLayout?: {
|
|
20067
|
+
width?: number | undefined;
|
|
20068
|
+
height?: number | undefined;
|
|
20013
20069
|
grid?: boolean | undefined;
|
|
20014
20070
|
flex?: string | boolean | undefined;
|
|
20015
20071
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -20038,8 +20094,6 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20038
20094
|
paddingBottom?: number | undefined;
|
|
20039
20095
|
paddingX?: number | undefined;
|
|
20040
20096
|
paddingY?: number | undefined;
|
|
20041
|
-
width?: number | undefined;
|
|
20042
|
-
height?: number | undefined;
|
|
20043
20097
|
matchAdapt?: boolean | undefined;
|
|
20044
20098
|
matchAdaptTemplate?: any;
|
|
20045
20099
|
} | undefined;
|
|
@@ -20164,6 +20218,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20164
20218
|
schMatchAdapt?: boolean | undefined;
|
|
20165
20219
|
}, {
|
|
20166
20220
|
symbol?: SymbolProp | undefined;
|
|
20221
|
+
width?: string | number | undefined;
|
|
20222
|
+
height?: string | number | undefined;
|
|
20167
20223
|
key?: any;
|
|
20168
20224
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
20169
20225
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -20245,8 +20301,6 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20245
20301
|
paddingBottom?: string | number | undefined;
|
|
20246
20302
|
paddingX?: string | number | undefined;
|
|
20247
20303
|
paddingY?: string | number | undefined;
|
|
20248
|
-
width?: string | number | undefined;
|
|
20249
|
-
height?: string | number | undefined;
|
|
20250
20304
|
matchAdapt?: boolean | undefined;
|
|
20251
20305
|
matchAdaptTemplate?: any;
|
|
20252
20306
|
schTitle?: string | undefined;
|
|
@@ -20296,6 +20350,8 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20296
20350
|
schWidth?: string | number | undefined;
|
|
20297
20351
|
schHeight?: string | number | undefined;
|
|
20298
20352
|
pcbLayout?: {
|
|
20353
|
+
width?: string | number | undefined;
|
|
20354
|
+
height?: string | number | undefined;
|
|
20299
20355
|
grid?: boolean | undefined;
|
|
20300
20356
|
flex?: string | boolean | undefined;
|
|
20301
20357
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -20324,12 +20380,12 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20324
20380
|
paddingBottom?: string | number | undefined;
|
|
20325
20381
|
paddingX?: string | number | undefined;
|
|
20326
20382
|
paddingY?: string | number | undefined;
|
|
20327
|
-
width?: string | number | undefined;
|
|
20328
|
-
height?: string | number | undefined;
|
|
20329
20383
|
matchAdapt?: boolean | undefined;
|
|
20330
20384
|
matchAdaptTemplate?: any;
|
|
20331
20385
|
} | undefined;
|
|
20332
20386
|
schLayout?: {
|
|
20387
|
+
width?: string | number | undefined;
|
|
20388
|
+
height?: string | number | undefined;
|
|
20333
20389
|
grid?: boolean | undefined;
|
|
20334
20390
|
flex?: string | boolean | undefined;
|
|
20335
20391
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -20358,8 +20414,6 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20358
20414
|
paddingBottom?: string | number | undefined;
|
|
20359
20415
|
paddingX?: string | number | undefined;
|
|
20360
20416
|
paddingY?: string | number | undefined;
|
|
20361
|
-
width?: string | number | undefined;
|
|
20362
|
-
height?: string | number | undefined;
|
|
20363
20417
|
matchAdapt?: boolean | undefined;
|
|
20364
20418
|
matchAdaptTemplate?: any;
|
|
20365
20419
|
} | undefined;
|
|
@@ -20650,6 +20704,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
20650
20704
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
20651
20705
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
20652
20706
|
}, "strip", z.ZodTypeAny, {
|
|
20707
|
+
width?: number | undefined;
|
|
20708
|
+
height?: number | undefined;
|
|
20653
20709
|
grid?: boolean | undefined;
|
|
20654
20710
|
flex?: string | boolean | undefined;
|
|
20655
20711
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -20678,11 +20734,11 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
20678
20734
|
paddingBottom?: number | undefined;
|
|
20679
20735
|
paddingX?: number | undefined;
|
|
20680
20736
|
paddingY?: number | undefined;
|
|
20681
|
-
width?: number | undefined;
|
|
20682
|
-
height?: number | undefined;
|
|
20683
20737
|
matchAdapt?: boolean | undefined;
|
|
20684
20738
|
matchAdaptTemplate?: any;
|
|
20685
20739
|
}, {
|
|
20740
|
+
width?: string | number | undefined;
|
|
20741
|
+
height?: string | number | undefined;
|
|
20686
20742
|
grid?: boolean | undefined;
|
|
20687
20743
|
flex?: string | boolean | undefined;
|
|
20688
20744
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -20711,8 +20767,6 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
20711
20767
|
paddingBottom?: string | number | undefined;
|
|
20712
20768
|
paddingX?: string | number | undefined;
|
|
20713
20769
|
paddingY?: string | number | undefined;
|
|
20714
|
-
width?: string | number | undefined;
|
|
20715
|
-
height?: string | number | undefined;
|
|
20716
20770
|
matchAdapt?: boolean | undefined;
|
|
20717
20771
|
matchAdaptTemplate?: any;
|
|
20718
20772
|
}>>;
|
|
@@ -20750,6 +20804,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
20750
20804
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
20751
20805
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
20752
20806
|
}, "strip", z.ZodTypeAny, {
|
|
20807
|
+
width?: number | undefined;
|
|
20808
|
+
height?: number | undefined;
|
|
20753
20809
|
grid?: boolean | undefined;
|
|
20754
20810
|
flex?: string | boolean | undefined;
|
|
20755
20811
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -20778,11 +20834,11 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
20778
20834
|
paddingBottom?: number | undefined;
|
|
20779
20835
|
paddingX?: number | undefined;
|
|
20780
20836
|
paddingY?: number | undefined;
|
|
20781
|
-
width?: number | undefined;
|
|
20782
|
-
height?: number | undefined;
|
|
20783
20837
|
matchAdapt?: boolean | undefined;
|
|
20784
20838
|
matchAdaptTemplate?: any;
|
|
20785
20839
|
}, {
|
|
20840
|
+
width?: string | number | undefined;
|
|
20841
|
+
height?: string | number | undefined;
|
|
20786
20842
|
grid?: boolean | undefined;
|
|
20787
20843
|
flex?: string | boolean | undefined;
|
|
20788
20844
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -20811,8 +20867,6 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
20811
20867
|
paddingBottom?: string | number | undefined;
|
|
20812
20868
|
paddingX?: string | number | undefined;
|
|
20813
20869
|
paddingY?: string | number | undefined;
|
|
20814
|
-
width?: string | number | undefined;
|
|
20815
|
-
height?: string | number | undefined;
|
|
20816
20870
|
matchAdapt?: boolean | undefined;
|
|
20817
20871
|
matchAdaptTemplate?: any;
|
|
20818
20872
|
}>>;
|
|
@@ -21255,6 +21309,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21255
21309
|
}, "strip", z.ZodTypeAny, {
|
|
21256
21310
|
subcircuit: true;
|
|
21257
21311
|
symbol?: SymbolProp | undefined;
|
|
21312
|
+
width?: number | undefined;
|
|
21313
|
+
height?: number | undefined;
|
|
21258
21314
|
key?: any;
|
|
21259
21315
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
21260
21316
|
name?: string | undefined;
|
|
@@ -21334,8 +21390,6 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21334
21390
|
paddingBottom?: number | undefined;
|
|
21335
21391
|
paddingX?: number | undefined;
|
|
21336
21392
|
paddingY?: number | undefined;
|
|
21337
|
-
width?: number | undefined;
|
|
21338
|
-
height?: number | undefined;
|
|
21339
21393
|
matchAdapt?: boolean | undefined;
|
|
21340
21394
|
matchAdaptTemplate?: any;
|
|
21341
21395
|
schTitle?: string | undefined;
|
|
@@ -21385,6 +21439,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21385
21439
|
schWidth?: number | undefined;
|
|
21386
21440
|
schHeight?: number | undefined;
|
|
21387
21441
|
pcbLayout?: {
|
|
21442
|
+
width?: number | undefined;
|
|
21443
|
+
height?: number | undefined;
|
|
21388
21444
|
grid?: boolean | undefined;
|
|
21389
21445
|
flex?: string | boolean | undefined;
|
|
21390
21446
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -21413,12 +21469,12 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21413
21469
|
paddingBottom?: number | undefined;
|
|
21414
21470
|
paddingX?: number | undefined;
|
|
21415
21471
|
paddingY?: number | undefined;
|
|
21416
|
-
width?: number | undefined;
|
|
21417
|
-
height?: number | undefined;
|
|
21418
21472
|
matchAdapt?: boolean | undefined;
|
|
21419
21473
|
matchAdaptTemplate?: any;
|
|
21420
21474
|
} | undefined;
|
|
21421
21475
|
schLayout?: {
|
|
21476
|
+
width?: number | undefined;
|
|
21477
|
+
height?: number | undefined;
|
|
21422
21478
|
grid?: boolean | undefined;
|
|
21423
21479
|
flex?: string | boolean | undefined;
|
|
21424
21480
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -21447,8 +21503,6 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21447
21503
|
paddingBottom?: number | undefined;
|
|
21448
21504
|
paddingX?: number | undefined;
|
|
21449
21505
|
paddingY?: number | undefined;
|
|
21450
|
-
width?: number | undefined;
|
|
21451
|
-
height?: number | undefined;
|
|
21452
21506
|
matchAdapt?: boolean | undefined;
|
|
21453
21507
|
matchAdaptTemplate?: any;
|
|
21454
21508
|
} | undefined;
|
|
@@ -21574,6 +21628,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21574
21628
|
}, {
|
|
21575
21629
|
subcircuit: true;
|
|
21576
21630
|
symbol?: SymbolProp | undefined;
|
|
21631
|
+
width?: string | number | undefined;
|
|
21632
|
+
height?: string | number | undefined;
|
|
21577
21633
|
key?: any;
|
|
21578
21634
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
21579
21635
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -21655,8 +21711,6 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21655
21711
|
paddingBottom?: string | number | undefined;
|
|
21656
21712
|
paddingX?: string | number | undefined;
|
|
21657
21713
|
paddingY?: string | number | undefined;
|
|
21658
|
-
width?: string | number | undefined;
|
|
21659
|
-
height?: string | number | undefined;
|
|
21660
21714
|
matchAdapt?: boolean | undefined;
|
|
21661
21715
|
matchAdaptTemplate?: any;
|
|
21662
21716
|
schTitle?: string | undefined;
|
|
@@ -21706,6 +21760,8 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21706
21760
|
schWidth?: string | number | undefined;
|
|
21707
21761
|
schHeight?: string | number | undefined;
|
|
21708
21762
|
pcbLayout?: {
|
|
21763
|
+
width?: string | number | undefined;
|
|
21764
|
+
height?: string | number | undefined;
|
|
21709
21765
|
grid?: boolean | undefined;
|
|
21710
21766
|
flex?: string | boolean | undefined;
|
|
21711
21767
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -21734,12 +21790,12 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21734
21790
|
paddingBottom?: string | number | undefined;
|
|
21735
21791
|
paddingX?: string | number | undefined;
|
|
21736
21792
|
paddingY?: string | number | undefined;
|
|
21737
|
-
width?: string | number | undefined;
|
|
21738
|
-
height?: string | number | undefined;
|
|
21739
21793
|
matchAdapt?: boolean | undefined;
|
|
21740
21794
|
matchAdaptTemplate?: any;
|
|
21741
21795
|
} | undefined;
|
|
21742
21796
|
schLayout?: {
|
|
21797
|
+
width?: string | number | undefined;
|
|
21798
|
+
height?: string | number | undefined;
|
|
21743
21799
|
grid?: boolean | undefined;
|
|
21744
21800
|
flex?: string | boolean | undefined;
|
|
21745
21801
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -21768,8 +21824,6 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21768
21824
|
paddingBottom?: string | number | undefined;
|
|
21769
21825
|
paddingX?: string | number | undefined;
|
|
21770
21826
|
paddingY?: string | number | undefined;
|
|
21771
|
-
width?: string | number | undefined;
|
|
21772
|
-
height?: string | number | undefined;
|
|
21773
21827
|
matchAdapt?: boolean | undefined;
|
|
21774
21828
|
matchAdaptTemplate?: any;
|
|
21775
21829
|
} | undefined;
|
|
@@ -22063,6 +22117,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22063
22117
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
22064
22118
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
22065
22119
|
}, "strip", z.ZodTypeAny, {
|
|
22120
|
+
width?: number | undefined;
|
|
22121
|
+
height?: number | undefined;
|
|
22066
22122
|
grid?: boolean | undefined;
|
|
22067
22123
|
flex?: string | boolean | undefined;
|
|
22068
22124
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -22091,11 +22147,11 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22091
22147
|
paddingBottom?: number | undefined;
|
|
22092
22148
|
paddingX?: number | undefined;
|
|
22093
22149
|
paddingY?: number | undefined;
|
|
22094
|
-
width?: number | undefined;
|
|
22095
|
-
height?: number | undefined;
|
|
22096
22150
|
matchAdapt?: boolean | undefined;
|
|
22097
22151
|
matchAdaptTemplate?: any;
|
|
22098
22152
|
}, {
|
|
22153
|
+
width?: string | number | undefined;
|
|
22154
|
+
height?: string | number | undefined;
|
|
22099
22155
|
grid?: boolean | undefined;
|
|
22100
22156
|
flex?: string | boolean | undefined;
|
|
22101
22157
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -22124,8 +22180,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22124
22180
|
paddingBottom?: string | number | undefined;
|
|
22125
22181
|
paddingX?: string | number | undefined;
|
|
22126
22182
|
paddingY?: string | number | undefined;
|
|
22127
|
-
width?: string | number | undefined;
|
|
22128
|
-
height?: string | number | undefined;
|
|
22129
22183
|
matchAdapt?: boolean | undefined;
|
|
22130
22184
|
matchAdaptTemplate?: any;
|
|
22131
22185
|
}>>;
|
|
@@ -22163,6 +22217,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22163
22217
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
22164
22218
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
22165
22219
|
}, "strip", z.ZodTypeAny, {
|
|
22220
|
+
width?: number | undefined;
|
|
22221
|
+
height?: number | undefined;
|
|
22166
22222
|
grid?: boolean | undefined;
|
|
22167
22223
|
flex?: string | boolean | undefined;
|
|
22168
22224
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -22191,11 +22247,11 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22191
22247
|
paddingBottom?: number | undefined;
|
|
22192
22248
|
paddingX?: number | undefined;
|
|
22193
22249
|
paddingY?: number | undefined;
|
|
22194
|
-
width?: number | undefined;
|
|
22195
|
-
height?: number | undefined;
|
|
22196
22250
|
matchAdapt?: boolean | undefined;
|
|
22197
22251
|
matchAdaptTemplate?: any;
|
|
22198
22252
|
}, {
|
|
22253
|
+
width?: string | number | undefined;
|
|
22254
|
+
height?: string | number | undefined;
|
|
22199
22255
|
grid?: boolean | undefined;
|
|
22200
22256
|
flex?: string | boolean | undefined;
|
|
22201
22257
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -22224,8 +22280,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22224
22280
|
paddingBottom?: string | number | undefined;
|
|
22225
22281
|
paddingX?: string | number | undefined;
|
|
22226
22282
|
paddingY?: string | number | undefined;
|
|
22227
|
-
width?: string | number | undefined;
|
|
22228
|
-
height?: string | number | undefined;
|
|
22229
22283
|
matchAdapt?: boolean | undefined;
|
|
22230
22284
|
matchAdaptTemplate?: any;
|
|
22231
22285
|
}>>;
|
|
@@ -22460,6 +22514,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22460
22514
|
subcircuit: z.ZodOptional<z.ZodLiteral<false>>;
|
|
22461
22515
|
}, "strip", z.ZodTypeAny, {
|
|
22462
22516
|
symbol?: SymbolProp | undefined;
|
|
22517
|
+
width?: number | undefined;
|
|
22518
|
+
height?: number | undefined;
|
|
22463
22519
|
key?: any;
|
|
22464
22520
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
22465
22521
|
name?: string | undefined;
|
|
@@ -22539,8 +22595,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22539
22595
|
paddingBottom?: number | undefined;
|
|
22540
22596
|
paddingX?: number | undefined;
|
|
22541
22597
|
paddingY?: number | undefined;
|
|
22542
|
-
width?: number | undefined;
|
|
22543
|
-
height?: number | undefined;
|
|
22544
22598
|
matchAdapt?: boolean | undefined;
|
|
22545
22599
|
matchAdaptTemplate?: any;
|
|
22546
22600
|
schTitle?: string | undefined;
|
|
@@ -22590,6 +22644,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22590
22644
|
schWidth?: number | undefined;
|
|
22591
22645
|
schHeight?: number | undefined;
|
|
22592
22646
|
pcbLayout?: {
|
|
22647
|
+
width?: number | undefined;
|
|
22648
|
+
height?: number | undefined;
|
|
22593
22649
|
grid?: boolean | undefined;
|
|
22594
22650
|
flex?: string | boolean | undefined;
|
|
22595
22651
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -22618,12 +22674,12 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22618
22674
|
paddingBottom?: number | undefined;
|
|
22619
22675
|
paddingX?: number | undefined;
|
|
22620
22676
|
paddingY?: number | undefined;
|
|
22621
|
-
width?: number | undefined;
|
|
22622
|
-
height?: number | undefined;
|
|
22623
22677
|
matchAdapt?: boolean | undefined;
|
|
22624
22678
|
matchAdaptTemplate?: any;
|
|
22625
22679
|
} | undefined;
|
|
22626
22680
|
schLayout?: {
|
|
22681
|
+
width?: number | undefined;
|
|
22682
|
+
height?: number | undefined;
|
|
22627
22683
|
grid?: boolean | undefined;
|
|
22628
22684
|
flex?: string | boolean | undefined;
|
|
22629
22685
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -22652,8 +22708,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22652
22708
|
paddingBottom?: number | undefined;
|
|
22653
22709
|
paddingX?: number | undefined;
|
|
22654
22710
|
paddingY?: number | undefined;
|
|
22655
|
-
width?: number | undefined;
|
|
22656
|
-
height?: number | undefined;
|
|
22657
22711
|
matchAdapt?: boolean | undefined;
|
|
22658
22712
|
matchAdaptTemplate?: any;
|
|
22659
22713
|
} | undefined;
|
|
@@ -22719,6 +22773,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22719
22773
|
schMatchAdapt?: boolean | undefined;
|
|
22720
22774
|
}, {
|
|
22721
22775
|
symbol?: SymbolProp | undefined;
|
|
22776
|
+
width?: string | number | undefined;
|
|
22777
|
+
height?: string | number | undefined;
|
|
22722
22778
|
key?: any;
|
|
22723
22779
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
22724
22780
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -22800,8 +22856,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22800
22856
|
paddingBottom?: string | number | undefined;
|
|
22801
22857
|
paddingX?: string | number | undefined;
|
|
22802
22858
|
paddingY?: string | number | undefined;
|
|
22803
|
-
width?: string | number | undefined;
|
|
22804
|
-
height?: string | number | undefined;
|
|
22805
22859
|
matchAdapt?: boolean | undefined;
|
|
22806
22860
|
matchAdaptTemplate?: any;
|
|
22807
22861
|
schTitle?: string | undefined;
|
|
@@ -22851,6 +22905,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22851
22905
|
schWidth?: string | number | undefined;
|
|
22852
22906
|
schHeight?: string | number | undefined;
|
|
22853
22907
|
pcbLayout?: {
|
|
22908
|
+
width?: string | number | undefined;
|
|
22909
|
+
height?: string | number | undefined;
|
|
22854
22910
|
grid?: boolean | undefined;
|
|
22855
22911
|
flex?: string | boolean | undefined;
|
|
22856
22912
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -22879,12 +22935,12 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22879
22935
|
paddingBottom?: string | number | undefined;
|
|
22880
22936
|
paddingX?: string | number | undefined;
|
|
22881
22937
|
paddingY?: string | number | undefined;
|
|
22882
|
-
width?: string | number | undefined;
|
|
22883
|
-
height?: string | number | undefined;
|
|
22884
22938
|
matchAdapt?: boolean | undefined;
|
|
22885
22939
|
matchAdaptTemplate?: any;
|
|
22886
22940
|
} | undefined;
|
|
22887
22941
|
schLayout?: {
|
|
22942
|
+
width?: string | number | undefined;
|
|
22943
|
+
height?: string | number | undefined;
|
|
22888
22944
|
grid?: boolean | undefined;
|
|
22889
22945
|
flex?: string | boolean | undefined;
|
|
22890
22946
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -22913,8 +22969,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22913
22969
|
paddingBottom?: string | number | undefined;
|
|
22914
22970
|
paddingX?: string | number | undefined;
|
|
22915
22971
|
paddingY?: string | number | undefined;
|
|
22916
|
-
width?: string | number | undefined;
|
|
22917
|
-
height?: string | number | undefined;
|
|
22918
22972
|
matchAdapt?: boolean | undefined;
|
|
22919
22973
|
matchAdaptTemplate?: any;
|
|
22920
22974
|
} | undefined;
|
|
@@ -23143,6 +23197,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
23143
23197
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
23144
23198
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
23145
23199
|
}, "strip", z.ZodTypeAny, {
|
|
23200
|
+
width?: number | undefined;
|
|
23201
|
+
height?: number | undefined;
|
|
23146
23202
|
grid?: boolean | undefined;
|
|
23147
23203
|
flex?: string | boolean | undefined;
|
|
23148
23204
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -23171,11 +23227,11 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
23171
23227
|
paddingBottom?: number | undefined;
|
|
23172
23228
|
paddingX?: number | undefined;
|
|
23173
23229
|
paddingY?: number | undefined;
|
|
23174
|
-
width?: number | undefined;
|
|
23175
|
-
height?: number | undefined;
|
|
23176
23230
|
matchAdapt?: boolean | undefined;
|
|
23177
23231
|
matchAdaptTemplate?: any;
|
|
23178
23232
|
}, {
|
|
23233
|
+
width?: string | number | undefined;
|
|
23234
|
+
height?: string | number | undefined;
|
|
23179
23235
|
grid?: boolean | undefined;
|
|
23180
23236
|
flex?: string | boolean | undefined;
|
|
23181
23237
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -23204,8 +23260,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
23204
23260
|
paddingBottom?: string | number | undefined;
|
|
23205
23261
|
paddingX?: string | number | undefined;
|
|
23206
23262
|
paddingY?: string | number | undefined;
|
|
23207
|
-
width?: string | number | undefined;
|
|
23208
|
-
height?: string | number | undefined;
|
|
23209
23263
|
matchAdapt?: boolean | undefined;
|
|
23210
23264
|
matchAdaptTemplate?: any;
|
|
23211
23265
|
}>>;
|
|
@@ -23243,6 +23297,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
23243
23297
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
23244
23298
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
23245
23299
|
}, "strip", z.ZodTypeAny, {
|
|
23300
|
+
width?: number | undefined;
|
|
23301
|
+
height?: number | undefined;
|
|
23246
23302
|
grid?: boolean | undefined;
|
|
23247
23303
|
flex?: string | boolean | undefined;
|
|
23248
23304
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -23271,11 +23327,11 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
23271
23327
|
paddingBottom?: number | undefined;
|
|
23272
23328
|
paddingX?: number | undefined;
|
|
23273
23329
|
paddingY?: number | undefined;
|
|
23274
|
-
width?: number | undefined;
|
|
23275
|
-
height?: number | undefined;
|
|
23276
23330
|
matchAdapt?: boolean | undefined;
|
|
23277
23331
|
matchAdaptTemplate?: any;
|
|
23278
23332
|
}, {
|
|
23333
|
+
width?: string | number | undefined;
|
|
23334
|
+
height?: string | number | undefined;
|
|
23279
23335
|
grid?: boolean | undefined;
|
|
23280
23336
|
flex?: string | boolean | undefined;
|
|
23281
23337
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -23304,8 +23360,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
23304
23360
|
paddingBottom?: string | number | undefined;
|
|
23305
23361
|
paddingX?: string | number | undefined;
|
|
23306
23362
|
paddingY?: string | number | undefined;
|
|
23307
|
-
width?: string | number | undefined;
|
|
23308
|
-
height?: string | number | undefined;
|
|
23309
23363
|
matchAdapt?: boolean | undefined;
|
|
23310
23364
|
matchAdaptTemplate?: any;
|
|
23311
23365
|
}>>;
|
|
@@ -23748,6 +23802,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
23748
23802
|
}, "strip", z.ZodTypeAny, {
|
|
23749
23803
|
subcircuit: true;
|
|
23750
23804
|
symbol?: SymbolProp | undefined;
|
|
23805
|
+
width?: number | undefined;
|
|
23806
|
+
height?: number | undefined;
|
|
23751
23807
|
key?: any;
|
|
23752
23808
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
23753
23809
|
name?: string | undefined;
|
|
@@ -23827,8 +23883,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
23827
23883
|
paddingBottom?: number | undefined;
|
|
23828
23884
|
paddingX?: number | undefined;
|
|
23829
23885
|
paddingY?: number | undefined;
|
|
23830
|
-
width?: number | undefined;
|
|
23831
|
-
height?: number | undefined;
|
|
23832
23886
|
matchAdapt?: boolean | undefined;
|
|
23833
23887
|
matchAdaptTemplate?: any;
|
|
23834
23888
|
schTitle?: string | undefined;
|
|
@@ -23878,6 +23932,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
23878
23932
|
schWidth?: number | undefined;
|
|
23879
23933
|
schHeight?: number | undefined;
|
|
23880
23934
|
pcbLayout?: {
|
|
23935
|
+
width?: number | undefined;
|
|
23936
|
+
height?: number | undefined;
|
|
23881
23937
|
grid?: boolean | undefined;
|
|
23882
23938
|
flex?: string | boolean | undefined;
|
|
23883
23939
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -23906,12 +23962,12 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
23906
23962
|
paddingBottom?: number | undefined;
|
|
23907
23963
|
paddingX?: number | undefined;
|
|
23908
23964
|
paddingY?: number | undefined;
|
|
23909
|
-
width?: number | undefined;
|
|
23910
|
-
height?: number | undefined;
|
|
23911
23965
|
matchAdapt?: boolean | undefined;
|
|
23912
23966
|
matchAdaptTemplate?: any;
|
|
23913
23967
|
} | undefined;
|
|
23914
23968
|
schLayout?: {
|
|
23969
|
+
width?: number | undefined;
|
|
23970
|
+
height?: number | undefined;
|
|
23915
23971
|
grid?: boolean | undefined;
|
|
23916
23972
|
flex?: string | boolean | undefined;
|
|
23917
23973
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -23940,8 +23996,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
23940
23996
|
paddingBottom?: number | undefined;
|
|
23941
23997
|
paddingX?: number | undefined;
|
|
23942
23998
|
paddingY?: number | undefined;
|
|
23943
|
-
width?: number | undefined;
|
|
23944
|
-
height?: number | undefined;
|
|
23945
23999
|
matchAdapt?: boolean | undefined;
|
|
23946
24000
|
matchAdaptTemplate?: any;
|
|
23947
24001
|
} | undefined;
|
|
@@ -24067,6 +24121,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
24067
24121
|
}, {
|
|
24068
24122
|
subcircuit: true;
|
|
24069
24123
|
symbol?: SymbolProp | undefined;
|
|
24124
|
+
width?: string | number | undefined;
|
|
24125
|
+
height?: string | number | undefined;
|
|
24070
24126
|
key?: any;
|
|
24071
24127
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
24072
24128
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -24148,8 +24204,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
24148
24204
|
paddingBottom?: string | number | undefined;
|
|
24149
24205
|
paddingX?: string | number | undefined;
|
|
24150
24206
|
paddingY?: string | number | undefined;
|
|
24151
|
-
width?: string | number | undefined;
|
|
24152
|
-
height?: string | number | undefined;
|
|
24153
24207
|
matchAdapt?: boolean | undefined;
|
|
24154
24208
|
matchAdaptTemplate?: any;
|
|
24155
24209
|
schTitle?: string | undefined;
|
|
@@ -24199,6 +24253,8 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
24199
24253
|
schWidth?: string | number | undefined;
|
|
24200
24254
|
schHeight?: string | number | undefined;
|
|
24201
24255
|
pcbLayout?: {
|
|
24256
|
+
width?: string | number | undefined;
|
|
24257
|
+
height?: string | number | undefined;
|
|
24202
24258
|
grid?: boolean | undefined;
|
|
24203
24259
|
flex?: string | boolean | undefined;
|
|
24204
24260
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -24227,12 +24283,12 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
24227
24283
|
paddingBottom?: string | number | undefined;
|
|
24228
24284
|
paddingX?: string | number | undefined;
|
|
24229
24285
|
paddingY?: string | number | undefined;
|
|
24230
|
-
width?: string | number | undefined;
|
|
24231
|
-
height?: string | number | undefined;
|
|
24232
24286
|
matchAdapt?: boolean | undefined;
|
|
24233
24287
|
matchAdaptTemplate?: any;
|
|
24234
24288
|
} | undefined;
|
|
24235
24289
|
schLayout?: {
|
|
24290
|
+
width?: string | number | undefined;
|
|
24291
|
+
height?: string | number | undefined;
|
|
24236
24292
|
grid?: boolean | undefined;
|
|
24237
24293
|
flex?: string | boolean | undefined;
|
|
24238
24294
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -24261,8 +24317,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
24261
24317
|
paddingBottom?: string | number | undefined;
|
|
24262
24318
|
paddingX?: string | number | undefined;
|
|
24263
24319
|
paddingY?: string | number | undefined;
|
|
24264
|
-
width?: string | number | undefined;
|
|
24265
|
-
height?: string | number | undefined;
|
|
24266
24320
|
matchAdapt?: boolean | undefined;
|
|
24267
24321
|
matchAdaptTemplate?: any;
|
|
24268
24322
|
} | undefined;
|
|
@@ -24584,6 +24638,8 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
24584
24638
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
24585
24639
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
24586
24640
|
}, "strip", z.ZodTypeAny, {
|
|
24641
|
+
width?: number | undefined;
|
|
24642
|
+
height?: number | undefined;
|
|
24587
24643
|
grid?: boolean | undefined;
|
|
24588
24644
|
flex?: string | boolean | undefined;
|
|
24589
24645
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -24612,11 +24668,11 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
24612
24668
|
paddingBottom?: number | undefined;
|
|
24613
24669
|
paddingX?: number | undefined;
|
|
24614
24670
|
paddingY?: number | undefined;
|
|
24615
|
-
width?: number | undefined;
|
|
24616
|
-
height?: number | undefined;
|
|
24617
24671
|
matchAdapt?: boolean | undefined;
|
|
24618
24672
|
matchAdaptTemplate?: any;
|
|
24619
24673
|
}, {
|
|
24674
|
+
width?: string | number | undefined;
|
|
24675
|
+
height?: string | number | undefined;
|
|
24620
24676
|
grid?: boolean | undefined;
|
|
24621
24677
|
flex?: string | boolean | undefined;
|
|
24622
24678
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -24645,8 +24701,6 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
24645
24701
|
paddingBottom?: string | number | undefined;
|
|
24646
24702
|
paddingX?: string | number | undefined;
|
|
24647
24703
|
paddingY?: string | number | undefined;
|
|
24648
|
-
width?: string | number | undefined;
|
|
24649
|
-
height?: string | number | undefined;
|
|
24650
24704
|
matchAdapt?: boolean | undefined;
|
|
24651
24705
|
matchAdaptTemplate?: any;
|
|
24652
24706
|
}>>;
|
|
@@ -24684,6 +24738,8 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
24684
24738
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
24685
24739
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
24686
24740
|
}, "strip", z.ZodTypeAny, {
|
|
24741
|
+
width?: number | undefined;
|
|
24742
|
+
height?: number | undefined;
|
|
24687
24743
|
grid?: boolean | undefined;
|
|
24688
24744
|
flex?: string | boolean | undefined;
|
|
24689
24745
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -24712,11 +24768,11 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
24712
24768
|
paddingBottom?: number | undefined;
|
|
24713
24769
|
paddingX?: number | undefined;
|
|
24714
24770
|
paddingY?: number | undefined;
|
|
24715
|
-
width?: number | undefined;
|
|
24716
|
-
height?: number | undefined;
|
|
24717
24771
|
matchAdapt?: boolean | undefined;
|
|
24718
24772
|
matchAdaptTemplate?: any;
|
|
24719
24773
|
}, {
|
|
24774
|
+
width?: string | number | undefined;
|
|
24775
|
+
height?: string | number | undefined;
|
|
24720
24776
|
grid?: boolean | undefined;
|
|
24721
24777
|
flex?: string | boolean | undefined;
|
|
24722
24778
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -24745,8 +24801,6 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
24745
24801
|
paddingBottom?: string | number | undefined;
|
|
24746
24802
|
paddingX?: string | number | undefined;
|
|
24747
24803
|
paddingY?: string | number | undefined;
|
|
24748
|
-
width?: string | number | undefined;
|
|
24749
|
-
height?: string | number | undefined;
|
|
24750
24804
|
matchAdapt?: boolean | undefined;
|
|
24751
24805
|
matchAdaptTemplate?: any;
|
|
24752
24806
|
}>>;
|
|
@@ -25215,6 +25269,8 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25215
25269
|
material: "flex" | "fr4" | "fr1";
|
|
25216
25270
|
doubleSidedAssembly: boolean;
|
|
25217
25271
|
symbol?: SymbolProp | undefined;
|
|
25272
|
+
width?: number | undefined;
|
|
25273
|
+
height?: number | undefined;
|
|
25218
25274
|
key?: any;
|
|
25219
25275
|
thickness?: number | undefined;
|
|
25220
25276
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
@@ -25295,8 +25351,6 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25295
25351
|
paddingBottom?: number | undefined;
|
|
25296
25352
|
paddingX?: number | undefined;
|
|
25297
25353
|
paddingY?: number | undefined;
|
|
25298
|
-
width?: number | undefined;
|
|
25299
|
-
height?: number | undefined;
|
|
25300
25354
|
matchAdapt?: boolean | undefined;
|
|
25301
25355
|
matchAdaptTemplate?: any;
|
|
25302
25356
|
schTitle?: string | undefined;
|
|
@@ -25345,6 +25399,8 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25345
25399
|
schWidth?: number | undefined;
|
|
25346
25400
|
schHeight?: number | undefined;
|
|
25347
25401
|
pcbLayout?: {
|
|
25402
|
+
width?: number | undefined;
|
|
25403
|
+
height?: number | undefined;
|
|
25348
25404
|
grid?: boolean | undefined;
|
|
25349
25405
|
flex?: string | boolean | undefined;
|
|
25350
25406
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -25373,12 +25429,12 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25373
25429
|
paddingBottom?: number | undefined;
|
|
25374
25430
|
paddingX?: number | undefined;
|
|
25375
25431
|
paddingY?: number | undefined;
|
|
25376
|
-
width?: number | undefined;
|
|
25377
|
-
height?: number | undefined;
|
|
25378
25432
|
matchAdapt?: boolean | undefined;
|
|
25379
25433
|
matchAdaptTemplate?: any;
|
|
25380
25434
|
} | undefined;
|
|
25381
25435
|
schLayout?: {
|
|
25436
|
+
width?: number | undefined;
|
|
25437
|
+
height?: number | undefined;
|
|
25382
25438
|
grid?: boolean | undefined;
|
|
25383
25439
|
flex?: string | boolean | undefined;
|
|
25384
25440
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -25407,8 +25463,6 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25407
25463
|
paddingBottom?: number | undefined;
|
|
25408
25464
|
paddingX?: number | undefined;
|
|
25409
25465
|
paddingY?: number | undefined;
|
|
25410
|
-
width?: number | undefined;
|
|
25411
|
-
height?: number | undefined;
|
|
25412
25466
|
matchAdapt?: boolean | undefined;
|
|
25413
25467
|
matchAdaptTemplate?: any;
|
|
25414
25468
|
} | undefined;
|
|
@@ -25548,6 +25602,8 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25548
25602
|
schematicDisabled?: boolean | undefined;
|
|
25549
25603
|
}, {
|
|
25550
25604
|
symbol?: SymbolProp | undefined;
|
|
25605
|
+
width?: string | number | undefined;
|
|
25606
|
+
height?: string | number | undefined;
|
|
25551
25607
|
key?: any;
|
|
25552
25608
|
thickness?: string | number | undefined;
|
|
25553
25609
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -25631,8 +25687,6 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25631
25687
|
paddingBottom?: string | number | undefined;
|
|
25632
25688
|
paddingX?: string | number | undefined;
|
|
25633
25689
|
paddingY?: string | number | undefined;
|
|
25634
|
-
width?: string | number | undefined;
|
|
25635
|
-
height?: string | number | undefined;
|
|
25636
25690
|
matchAdapt?: boolean | undefined;
|
|
25637
25691
|
matchAdaptTemplate?: any;
|
|
25638
25692
|
schTitle?: string | undefined;
|
|
@@ -25681,6 +25735,8 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25681
25735
|
schWidth?: string | number | undefined;
|
|
25682
25736
|
schHeight?: string | number | undefined;
|
|
25683
25737
|
pcbLayout?: {
|
|
25738
|
+
width?: string | number | undefined;
|
|
25739
|
+
height?: string | number | undefined;
|
|
25684
25740
|
grid?: boolean | undefined;
|
|
25685
25741
|
flex?: string | boolean | undefined;
|
|
25686
25742
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -25709,12 +25765,12 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25709
25765
|
paddingBottom?: string | number | undefined;
|
|
25710
25766
|
paddingX?: string | number | undefined;
|
|
25711
25767
|
paddingY?: string | number | undefined;
|
|
25712
|
-
width?: string | number | undefined;
|
|
25713
|
-
height?: string | number | undefined;
|
|
25714
25768
|
matchAdapt?: boolean | undefined;
|
|
25715
25769
|
matchAdaptTemplate?: any;
|
|
25716
25770
|
} | undefined;
|
|
25717
25771
|
schLayout?: {
|
|
25772
|
+
width?: string | number | undefined;
|
|
25773
|
+
height?: string | number | undefined;
|
|
25718
25774
|
grid?: boolean | undefined;
|
|
25719
25775
|
flex?: string | boolean | undefined;
|
|
25720
25776
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -25743,8 +25799,6 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25743
25799
|
paddingBottom?: string | number | undefined;
|
|
25744
25800
|
paddingX?: string | number | undefined;
|
|
25745
25801
|
paddingY?: string | number | undefined;
|
|
25746
|
-
width?: string | number | undefined;
|
|
25747
|
-
height?: string | number | undefined;
|
|
25748
25802
|
matchAdapt?: boolean | undefined;
|
|
25749
25803
|
matchAdaptTemplate?: any;
|
|
25750
25804
|
} | undefined;
|
|
@@ -26084,6 +26138,8 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26084
26138
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
26085
26139
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
26086
26140
|
}, "strip", z.ZodTypeAny, {
|
|
26141
|
+
width?: number | undefined;
|
|
26142
|
+
height?: number | undefined;
|
|
26087
26143
|
grid?: boolean | undefined;
|
|
26088
26144
|
flex?: string | boolean | undefined;
|
|
26089
26145
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -26112,11 +26168,11 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26112
26168
|
paddingBottom?: number | undefined;
|
|
26113
26169
|
paddingX?: number | undefined;
|
|
26114
26170
|
paddingY?: number | undefined;
|
|
26115
|
-
width?: number | undefined;
|
|
26116
|
-
height?: number | undefined;
|
|
26117
26171
|
matchAdapt?: boolean | undefined;
|
|
26118
26172
|
matchAdaptTemplate?: any;
|
|
26119
26173
|
}, {
|
|
26174
|
+
width?: string | number | undefined;
|
|
26175
|
+
height?: string | number | undefined;
|
|
26120
26176
|
grid?: boolean | undefined;
|
|
26121
26177
|
flex?: string | boolean | undefined;
|
|
26122
26178
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -26145,8 +26201,6 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26145
26201
|
paddingBottom?: string | number | undefined;
|
|
26146
26202
|
paddingX?: string | number | undefined;
|
|
26147
26203
|
paddingY?: string | number | undefined;
|
|
26148
|
-
width?: string | number | undefined;
|
|
26149
|
-
height?: string | number | undefined;
|
|
26150
26204
|
matchAdapt?: boolean | undefined;
|
|
26151
26205
|
matchAdaptTemplate?: any;
|
|
26152
26206
|
}>>;
|
|
@@ -26184,6 +26238,8 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26184
26238
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
26185
26239
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
26186
26240
|
}, "strip", z.ZodTypeAny, {
|
|
26241
|
+
width?: number | undefined;
|
|
26242
|
+
height?: number | undefined;
|
|
26187
26243
|
grid?: boolean | undefined;
|
|
26188
26244
|
flex?: string | boolean | undefined;
|
|
26189
26245
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -26212,11 +26268,11 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26212
26268
|
paddingBottom?: number | undefined;
|
|
26213
26269
|
paddingX?: number | undefined;
|
|
26214
26270
|
paddingY?: number | undefined;
|
|
26215
|
-
width?: number | undefined;
|
|
26216
|
-
height?: number | undefined;
|
|
26217
26271
|
matchAdapt?: boolean | undefined;
|
|
26218
26272
|
matchAdaptTemplate?: any;
|
|
26219
26273
|
}, {
|
|
26274
|
+
width?: string | number | undefined;
|
|
26275
|
+
height?: string | number | undefined;
|
|
26220
26276
|
grid?: boolean | undefined;
|
|
26221
26277
|
flex?: string | boolean | undefined;
|
|
26222
26278
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -26245,8 +26301,6 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26245
26301
|
paddingBottom?: string | number | undefined;
|
|
26246
26302
|
paddingX?: string | number | undefined;
|
|
26247
26303
|
paddingY?: string | number | undefined;
|
|
26248
|
-
width?: string | number | undefined;
|
|
26249
|
-
height?: string | number | undefined;
|
|
26250
26304
|
matchAdapt?: boolean | undefined;
|
|
26251
26305
|
matchAdaptTemplate?: any;
|
|
26252
26306
|
}>>;
|
|
@@ -26477,7 +26531,7 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26477
26531
|
topMargin?: string | number | undefined;
|
|
26478
26532
|
bottomMargin?: string | number | undefined;
|
|
26479
26533
|
}>>>;
|
|
26480
|
-
}, "
|
|
26534
|
+
}, "width" | "height" | "children" | "layoutMode"> & {
|
|
26481
26535
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26482
26536
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26483
26537
|
children: z.ZodOptional<z.ZodAny>;
|
|
@@ -26501,6 +26555,8 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26501
26555
|
_subcircuitCachingEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
26502
26556
|
}, "strip", z.ZodTypeAny, {
|
|
26503
26557
|
symbol?: SymbolProp | undefined;
|
|
26558
|
+
width?: number | undefined;
|
|
26559
|
+
height?: number | undefined;
|
|
26504
26560
|
key?: any;
|
|
26505
26561
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
26506
26562
|
name?: string | undefined;
|
|
@@ -26581,8 +26637,6 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26581
26637
|
paddingBottom?: number | undefined;
|
|
26582
26638
|
paddingX?: number | undefined;
|
|
26583
26639
|
paddingY?: number | undefined;
|
|
26584
|
-
width?: number | undefined;
|
|
26585
|
-
height?: number | undefined;
|
|
26586
26640
|
matchAdapt?: boolean | undefined;
|
|
26587
26641
|
matchAdaptTemplate?: any;
|
|
26588
26642
|
schTitle?: string | undefined;
|
|
@@ -26632,6 +26686,8 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26632
26686
|
schWidth?: number | undefined;
|
|
26633
26687
|
schHeight?: number | undefined;
|
|
26634
26688
|
pcbLayout?: {
|
|
26689
|
+
width?: number | undefined;
|
|
26690
|
+
height?: number | undefined;
|
|
26635
26691
|
grid?: boolean | undefined;
|
|
26636
26692
|
flex?: string | boolean | undefined;
|
|
26637
26693
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -26660,12 +26716,12 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26660
26716
|
paddingBottom?: number | undefined;
|
|
26661
26717
|
paddingX?: number | undefined;
|
|
26662
26718
|
paddingY?: number | undefined;
|
|
26663
|
-
width?: number | undefined;
|
|
26664
|
-
height?: number | undefined;
|
|
26665
26719
|
matchAdapt?: boolean | undefined;
|
|
26666
26720
|
matchAdaptTemplate?: any;
|
|
26667
26721
|
} | undefined;
|
|
26668
26722
|
schLayout?: {
|
|
26723
|
+
width?: number | undefined;
|
|
26724
|
+
height?: number | undefined;
|
|
26669
26725
|
grid?: boolean | undefined;
|
|
26670
26726
|
flex?: string | boolean | undefined;
|
|
26671
26727
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -26694,8 +26750,6 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26694
26750
|
paddingBottom?: number | undefined;
|
|
26695
26751
|
paddingX?: number | undefined;
|
|
26696
26752
|
paddingY?: number | undefined;
|
|
26697
|
-
width?: number | undefined;
|
|
26698
|
-
height?: number | undefined;
|
|
26699
26753
|
matchAdapt?: boolean | undefined;
|
|
26700
26754
|
matchAdaptTemplate?: any;
|
|
26701
26755
|
} | undefined;
|
|
@@ -26776,6 +26830,8 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26776
26830
|
edgePaddingBottom?: number | undefined;
|
|
26777
26831
|
}, {
|
|
26778
26832
|
symbol?: SymbolProp | undefined;
|
|
26833
|
+
width?: string | number | undefined;
|
|
26834
|
+
height?: string | number | undefined;
|
|
26779
26835
|
key?: any;
|
|
26780
26836
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
26781
26837
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -26858,8 +26914,6 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26858
26914
|
paddingBottom?: string | number | undefined;
|
|
26859
26915
|
paddingX?: string | number | undefined;
|
|
26860
26916
|
paddingY?: string | number | undefined;
|
|
26861
|
-
width?: string | number | undefined;
|
|
26862
|
-
height?: string | number | undefined;
|
|
26863
26917
|
matchAdapt?: boolean | undefined;
|
|
26864
26918
|
matchAdaptTemplate?: any;
|
|
26865
26919
|
schTitle?: string | undefined;
|
|
@@ -26909,6 +26963,8 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26909
26963
|
schWidth?: string | number | undefined;
|
|
26910
26964
|
schHeight?: string | number | undefined;
|
|
26911
26965
|
pcbLayout?: {
|
|
26966
|
+
width?: string | number | undefined;
|
|
26967
|
+
height?: string | number | undefined;
|
|
26912
26968
|
grid?: boolean | undefined;
|
|
26913
26969
|
flex?: string | boolean | undefined;
|
|
26914
26970
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -26937,12 +26993,12 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26937
26993
|
paddingBottom?: string | number | undefined;
|
|
26938
26994
|
paddingX?: string | number | undefined;
|
|
26939
26995
|
paddingY?: string | number | undefined;
|
|
26940
|
-
width?: string | number | undefined;
|
|
26941
|
-
height?: string | number | undefined;
|
|
26942
26996
|
matchAdapt?: boolean | undefined;
|
|
26943
26997
|
matchAdaptTemplate?: any;
|
|
26944
26998
|
} | undefined;
|
|
26945
26999
|
schLayout?: {
|
|
27000
|
+
width?: string | number | undefined;
|
|
27001
|
+
height?: string | number | undefined;
|
|
26946
27002
|
grid?: boolean | undefined;
|
|
26947
27003
|
flex?: string | boolean | undefined;
|
|
26948
27004
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -26971,8 +27027,6 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
26971
27027
|
paddingBottom?: string | number | undefined;
|
|
26972
27028
|
paddingX?: string | number | undefined;
|
|
26973
27029
|
paddingY?: string | number | undefined;
|
|
26974
|
-
width?: string | number | undefined;
|
|
26975
|
-
height?: string | number | undefined;
|
|
26976
27030
|
matchAdapt?: boolean | undefined;
|
|
26977
27031
|
matchAdaptTemplate?: any;
|
|
26978
27032
|
} | undefined;
|
|
@@ -27223,6 +27277,8 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
27223
27277
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
27224
27278
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
27225
27279
|
}, "strip", z.ZodTypeAny, {
|
|
27280
|
+
width?: number | undefined;
|
|
27281
|
+
height?: number | undefined;
|
|
27226
27282
|
grid?: boolean | undefined;
|
|
27227
27283
|
flex?: string | boolean | undefined;
|
|
27228
27284
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -27251,11 +27307,11 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
27251
27307
|
paddingBottom?: number | undefined;
|
|
27252
27308
|
paddingX?: number | undefined;
|
|
27253
27309
|
paddingY?: number | undefined;
|
|
27254
|
-
width?: number | undefined;
|
|
27255
|
-
height?: number | undefined;
|
|
27256
27310
|
matchAdapt?: boolean | undefined;
|
|
27257
27311
|
matchAdaptTemplate?: any;
|
|
27258
27312
|
}, {
|
|
27313
|
+
width?: string | number | undefined;
|
|
27314
|
+
height?: string | number | undefined;
|
|
27259
27315
|
grid?: boolean | undefined;
|
|
27260
27316
|
flex?: string | boolean | undefined;
|
|
27261
27317
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -27284,8 +27340,6 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
27284
27340
|
paddingBottom?: string | number | undefined;
|
|
27285
27341
|
paddingX?: string | number | undefined;
|
|
27286
27342
|
paddingY?: string | number | undefined;
|
|
27287
|
-
width?: string | number | undefined;
|
|
27288
|
-
height?: string | number | undefined;
|
|
27289
27343
|
matchAdapt?: boolean | undefined;
|
|
27290
27344
|
matchAdaptTemplate?: any;
|
|
27291
27345
|
}>>;
|
|
@@ -27323,6 +27377,8 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
27323
27377
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
27324
27378
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
27325
27379
|
}, "strip", z.ZodTypeAny, {
|
|
27380
|
+
width?: number | undefined;
|
|
27381
|
+
height?: number | undefined;
|
|
27326
27382
|
grid?: boolean | undefined;
|
|
27327
27383
|
flex?: string | boolean | undefined;
|
|
27328
27384
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -27351,11 +27407,11 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
27351
27407
|
paddingBottom?: number | undefined;
|
|
27352
27408
|
paddingX?: number | undefined;
|
|
27353
27409
|
paddingY?: number | undefined;
|
|
27354
|
-
width?: number | undefined;
|
|
27355
|
-
height?: number | undefined;
|
|
27356
27410
|
matchAdapt?: boolean | undefined;
|
|
27357
27411
|
matchAdaptTemplate?: any;
|
|
27358
27412
|
}, {
|
|
27413
|
+
width?: string | number | undefined;
|
|
27414
|
+
height?: string | number | undefined;
|
|
27359
27415
|
grid?: boolean | undefined;
|
|
27360
27416
|
flex?: string | boolean | undefined;
|
|
27361
27417
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -27384,8 +27440,6 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
27384
27440
|
paddingBottom?: string | number | undefined;
|
|
27385
27441
|
paddingX?: string | number | undefined;
|
|
27386
27442
|
paddingY?: string | number | undefined;
|
|
27387
|
-
width?: string | number | undefined;
|
|
27388
|
-
height?: string | number | undefined;
|
|
27389
27443
|
matchAdapt?: boolean | undefined;
|
|
27390
27444
|
matchAdaptTemplate?: any;
|
|
27391
27445
|
}>>;
|
|
@@ -27616,7 +27670,7 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
27616
27670
|
topMargin?: string | number | undefined;
|
|
27617
27671
|
bottomMargin?: string | number | undefined;
|
|
27618
27672
|
}>>>;
|
|
27619
|
-
}, "
|
|
27673
|
+
}, "width" | "height" | "children" | "layoutMode"> & {
|
|
27620
27674
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27621
27675
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27622
27676
|
children: z.ZodOptional<z.ZodAny>;
|
|
@@ -27640,6 +27694,8 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
27640
27694
|
_subcircuitCachingEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
27641
27695
|
}, "strip", z.ZodTypeAny, {
|
|
27642
27696
|
symbol?: SymbolProp | undefined;
|
|
27697
|
+
width?: number | undefined;
|
|
27698
|
+
height?: number | undefined;
|
|
27643
27699
|
key?: any;
|
|
27644
27700
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
27645
27701
|
name?: string | undefined;
|
|
@@ -27720,8 +27776,6 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
27720
27776
|
paddingBottom?: number | undefined;
|
|
27721
27777
|
paddingX?: number | undefined;
|
|
27722
27778
|
paddingY?: number | undefined;
|
|
27723
|
-
width?: number | undefined;
|
|
27724
|
-
height?: number | undefined;
|
|
27725
27779
|
matchAdapt?: boolean | undefined;
|
|
27726
27780
|
matchAdaptTemplate?: any;
|
|
27727
27781
|
schTitle?: string | undefined;
|
|
@@ -27771,6 +27825,8 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
27771
27825
|
schWidth?: number | undefined;
|
|
27772
27826
|
schHeight?: number | undefined;
|
|
27773
27827
|
pcbLayout?: {
|
|
27828
|
+
width?: number | undefined;
|
|
27829
|
+
height?: number | undefined;
|
|
27774
27830
|
grid?: boolean | undefined;
|
|
27775
27831
|
flex?: string | boolean | undefined;
|
|
27776
27832
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -27799,12 +27855,12 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
27799
27855
|
paddingBottom?: number | undefined;
|
|
27800
27856
|
paddingX?: number | undefined;
|
|
27801
27857
|
paddingY?: number | undefined;
|
|
27802
|
-
width?: number | undefined;
|
|
27803
|
-
height?: number | undefined;
|
|
27804
27858
|
matchAdapt?: boolean | undefined;
|
|
27805
27859
|
matchAdaptTemplate?: any;
|
|
27806
27860
|
} | undefined;
|
|
27807
27861
|
schLayout?: {
|
|
27862
|
+
width?: number | undefined;
|
|
27863
|
+
height?: number | undefined;
|
|
27808
27864
|
grid?: boolean | undefined;
|
|
27809
27865
|
flex?: string | boolean | undefined;
|
|
27810
27866
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -27833,8 +27889,6 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
27833
27889
|
paddingBottom?: number | undefined;
|
|
27834
27890
|
paddingX?: number | undefined;
|
|
27835
27891
|
paddingY?: number | undefined;
|
|
27836
|
-
width?: number | undefined;
|
|
27837
|
-
height?: number | undefined;
|
|
27838
27892
|
matchAdapt?: boolean | undefined;
|
|
27839
27893
|
matchAdaptTemplate?: any;
|
|
27840
27894
|
} | undefined;
|
|
@@ -27915,6 +27969,8 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
27915
27969
|
edgePaddingBottom?: number | undefined;
|
|
27916
27970
|
}, {
|
|
27917
27971
|
symbol?: SymbolProp | undefined;
|
|
27972
|
+
width?: string | number | undefined;
|
|
27973
|
+
height?: string | number | undefined;
|
|
27918
27974
|
key?: any;
|
|
27919
27975
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
27920
27976
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -27997,8 +28053,6 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
27997
28053
|
paddingBottom?: string | number | undefined;
|
|
27998
28054
|
paddingX?: string | number | undefined;
|
|
27999
28055
|
paddingY?: string | number | undefined;
|
|
28000
|
-
width?: string | number | undefined;
|
|
28001
|
-
height?: string | number | undefined;
|
|
28002
28056
|
matchAdapt?: boolean | undefined;
|
|
28003
28057
|
matchAdaptTemplate?: any;
|
|
28004
28058
|
schTitle?: string | undefined;
|
|
@@ -28048,6 +28102,8 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
28048
28102
|
schWidth?: string | number | undefined;
|
|
28049
28103
|
schHeight?: string | number | undefined;
|
|
28050
28104
|
pcbLayout?: {
|
|
28105
|
+
width?: string | number | undefined;
|
|
28106
|
+
height?: string | number | undefined;
|
|
28051
28107
|
grid?: boolean | undefined;
|
|
28052
28108
|
flex?: string | boolean | undefined;
|
|
28053
28109
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -28076,12 +28132,12 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
28076
28132
|
paddingBottom?: string | number | undefined;
|
|
28077
28133
|
paddingX?: string | number | undefined;
|
|
28078
28134
|
paddingY?: string | number | undefined;
|
|
28079
|
-
width?: string | number | undefined;
|
|
28080
|
-
height?: string | number | undefined;
|
|
28081
28135
|
matchAdapt?: boolean | undefined;
|
|
28082
28136
|
matchAdaptTemplate?: any;
|
|
28083
28137
|
} | undefined;
|
|
28084
28138
|
schLayout?: {
|
|
28139
|
+
width?: string | number | undefined;
|
|
28140
|
+
height?: string | number | undefined;
|
|
28085
28141
|
grid?: boolean | undefined;
|
|
28086
28142
|
flex?: string | boolean | undefined;
|
|
28087
28143
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -28110,8 +28166,6 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
28110
28166
|
paddingBottom?: string | number | undefined;
|
|
28111
28167
|
paddingX?: string | number | undefined;
|
|
28112
28168
|
paddingY?: string | number | undefined;
|
|
28113
|
-
width?: string | number | undefined;
|
|
28114
|
-
height?: string | number | undefined;
|
|
28115
28169
|
matchAdapt?: boolean | undefined;
|
|
28116
28170
|
matchAdaptTemplate?: any;
|
|
28117
28171
|
} | undefined;
|
|
@@ -28364,6 +28418,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
28364
28418
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
28365
28419
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
28366
28420
|
}, "strip", z.ZodTypeAny, {
|
|
28421
|
+
width?: number | undefined;
|
|
28422
|
+
height?: number | undefined;
|
|
28367
28423
|
grid?: boolean | undefined;
|
|
28368
28424
|
flex?: string | boolean | undefined;
|
|
28369
28425
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -28392,11 +28448,11 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
28392
28448
|
paddingBottom?: number | undefined;
|
|
28393
28449
|
paddingX?: number | undefined;
|
|
28394
28450
|
paddingY?: number | undefined;
|
|
28395
|
-
width?: number | undefined;
|
|
28396
|
-
height?: number | undefined;
|
|
28397
28451
|
matchAdapt?: boolean | undefined;
|
|
28398
28452
|
matchAdaptTemplate?: any;
|
|
28399
28453
|
}, {
|
|
28454
|
+
width?: string | number | undefined;
|
|
28455
|
+
height?: string | number | undefined;
|
|
28400
28456
|
grid?: boolean | undefined;
|
|
28401
28457
|
flex?: string | boolean | undefined;
|
|
28402
28458
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -28425,8 +28481,6 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
28425
28481
|
paddingBottom?: string | number | undefined;
|
|
28426
28482
|
paddingX?: string | number | undefined;
|
|
28427
28483
|
paddingY?: string | number | undefined;
|
|
28428
|
-
width?: string | number | undefined;
|
|
28429
|
-
height?: string | number | undefined;
|
|
28430
28484
|
matchAdapt?: boolean | undefined;
|
|
28431
28485
|
matchAdaptTemplate?: any;
|
|
28432
28486
|
}>>;
|
|
@@ -28464,6 +28518,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
28464
28518
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
28465
28519
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
28466
28520
|
}, "strip", z.ZodTypeAny, {
|
|
28521
|
+
width?: number | undefined;
|
|
28522
|
+
height?: number | undefined;
|
|
28467
28523
|
grid?: boolean | undefined;
|
|
28468
28524
|
flex?: string | boolean | undefined;
|
|
28469
28525
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -28492,11 +28548,11 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
28492
28548
|
paddingBottom?: number | undefined;
|
|
28493
28549
|
paddingX?: number | undefined;
|
|
28494
28550
|
paddingY?: number | undefined;
|
|
28495
|
-
width?: number | undefined;
|
|
28496
|
-
height?: number | undefined;
|
|
28497
28551
|
matchAdapt?: boolean | undefined;
|
|
28498
28552
|
matchAdaptTemplate?: any;
|
|
28499
28553
|
}, {
|
|
28554
|
+
width?: string | number | undefined;
|
|
28555
|
+
height?: string | number | undefined;
|
|
28500
28556
|
grid?: boolean | undefined;
|
|
28501
28557
|
flex?: string | boolean | undefined;
|
|
28502
28558
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -28525,8 +28581,6 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
28525
28581
|
paddingBottom?: string | number | undefined;
|
|
28526
28582
|
paddingX?: string | number | undefined;
|
|
28527
28583
|
paddingY?: string | number | undefined;
|
|
28528
|
-
width?: string | number | undefined;
|
|
28529
|
-
height?: string | number | undefined;
|
|
28530
28584
|
matchAdapt?: boolean | undefined;
|
|
28531
28585
|
matchAdaptTemplate?: any;
|
|
28532
28586
|
}>>;
|
|
@@ -28966,6 +29020,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
28966
29020
|
paddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28967
29021
|
}, "strip", z.ZodTypeAny, {
|
|
28968
29022
|
symbol?: SymbolProp | undefined;
|
|
29023
|
+
width?: number | undefined;
|
|
29024
|
+
height?: number | undefined;
|
|
28969
29025
|
key?: any;
|
|
28970
29026
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
28971
29027
|
name?: string | undefined;
|
|
@@ -29045,8 +29101,6 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29045
29101
|
paddingBottom?: number | undefined;
|
|
29046
29102
|
paddingX?: number | undefined;
|
|
29047
29103
|
paddingY?: number | undefined;
|
|
29048
|
-
width?: number | undefined;
|
|
29049
|
-
height?: number | undefined;
|
|
29050
29104
|
matchAdapt?: boolean | undefined;
|
|
29051
29105
|
matchAdaptTemplate?: any;
|
|
29052
29106
|
schTitle?: string | undefined;
|
|
@@ -29096,6 +29150,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29096
29150
|
schWidth?: number | undefined;
|
|
29097
29151
|
schHeight?: number | undefined;
|
|
29098
29152
|
pcbLayout?: {
|
|
29153
|
+
width?: number | undefined;
|
|
29154
|
+
height?: number | undefined;
|
|
29099
29155
|
grid?: boolean | undefined;
|
|
29100
29156
|
flex?: string | boolean | undefined;
|
|
29101
29157
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -29124,12 +29180,12 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29124
29180
|
paddingBottom?: number | undefined;
|
|
29125
29181
|
paddingX?: number | undefined;
|
|
29126
29182
|
paddingY?: number | undefined;
|
|
29127
|
-
width?: number | undefined;
|
|
29128
|
-
height?: number | undefined;
|
|
29129
29183
|
matchAdapt?: boolean | undefined;
|
|
29130
29184
|
matchAdaptTemplate?: any;
|
|
29131
29185
|
} | undefined;
|
|
29132
29186
|
schLayout?: {
|
|
29187
|
+
width?: number | undefined;
|
|
29188
|
+
height?: number | undefined;
|
|
29133
29189
|
grid?: boolean | undefined;
|
|
29134
29190
|
flex?: string | boolean | undefined;
|
|
29135
29191
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -29158,8 +29214,6 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29158
29214
|
paddingBottom?: number | undefined;
|
|
29159
29215
|
paddingX?: number | undefined;
|
|
29160
29216
|
paddingY?: number | undefined;
|
|
29161
|
-
width?: number | undefined;
|
|
29162
|
-
height?: number | undefined;
|
|
29163
29217
|
matchAdapt?: boolean | undefined;
|
|
29164
29218
|
matchAdaptTemplate?: any;
|
|
29165
29219
|
} | undefined;
|
|
@@ -29284,6 +29338,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29284
29338
|
schMatchAdapt?: boolean | undefined;
|
|
29285
29339
|
}, {
|
|
29286
29340
|
symbol?: SymbolProp | undefined;
|
|
29341
|
+
width?: string | number | undefined;
|
|
29342
|
+
height?: string | number | undefined;
|
|
29287
29343
|
key?: any;
|
|
29288
29344
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
29289
29345
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -29365,8 +29421,6 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29365
29421
|
paddingBottom?: string | number | undefined;
|
|
29366
29422
|
paddingX?: string | number | undefined;
|
|
29367
29423
|
paddingY?: string | number | undefined;
|
|
29368
|
-
width?: string | number | undefined;
|
|
29369
|
-
height?: string | number | undefined;
|
|
29370
29424
|
matchAdapt?: boolean | undefined;
|
|
29371
29425
|
matchAdaptTemplate?: any;
|
|
29372
29426
|
schTitle?: string | undefined;
|
|
@@ -29416,6 +29470,8 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29416
29470
|
schWidth?: string | number | undefined;
|
|
29417
29471
|
schHeight?: string | number | undefined;
|
|
29418
29472
|
pcbLayout?: {
|
|
29473
|
+
width?: string | number | undefined;
|
|
29474
|
+
height?: string | number | undefined;
|
|
29419
29475
|
grid?: boolean | undefined;
|
|
29420
29476
|
flex?: string | boolean | undefined;
|
|
29421
29477
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -29444,12 +29500,12 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29444
29500
|
paddingBottom?: string | number | undefined;
|
|
29445
29501
|
paddingX?: string | number | undefined;
|
|
29446
29502
|
paddingY?: string | number | undefined;
|
|
29447
|
-
width?: string | number | undefined;
|
|
29448
|
-
height?: string | number | undefined;
|
|
29449
29503
|
matchAdapt?: boolean | undefined;
|
|
29450
29504
|
matchAdaptTemplate?: any;
|
|
29451
29505
|
} | undefined;
|
|
29452
29506
|
schLayout?: {
|
|
29507
|
+
width?: string | number | undefined;
|
|
29508
|
+
height?: string | number | undefined;
|
|
29453
29509
|
grid?: boolean | undefined;
|
|
29454
29510
|
flex?: string | boolean | undefined;
|
|
29455
29511
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -29478,8 +29534,6 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29478
29534
|
paddingBottom?: string | number | undefined;
|
|
29479
29535
|
paddingX?: string | number | undefined;
|
|
29480
29536
|
paddingY?: string | number | undefined;
|
|
29481
|
-
width?: string | number | undefined;
|
|
29482
|
-
height?: string | number | undefined;
|
|
29483
29537
|
matchAdapt?: boolean | undefined;
|
|
29484
29538
|
matchAdaptTemplate?: any;
|
|
29485
29539
|
} | undefined;
|
|
@@ -88939,6 +88993,8 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
88939
88993
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
88940
88994
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
88941
88995
|
}, "strip", z.ZodTypeAny, {
|
|
88996
|
+
width?: number | undefined;
|
|
88997
|
+
height?: number | undefined;
|
|
88942
88998
|
grid?: boolean | undefined;
|
|
88943
88999
|
flex?: string | boolean | undefined;
|
|
88944
89000
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -88967,11 +89023,11 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
88967
89023
|
paddingBottom?: number | undefined;
|
|
88968
89024
|
paddingX?: number | undefined;
|
|
88969
89025
|
paddingY?: number | undefined;
|
|
88970
|
-
width?: number | undefined;
|
|
88971
|
-
height?: number | undefined;
|
|
88972
89026
|
matchAdapt?: boolean | undefined;
|
|
88973
89027
|
matchAdaptTemplate?: any;
|
|
88974
89028
|
}, {
|
|
89029
|
+
width?: string | number | undefined;
|
|
89030
|
+
height?: string | number | undefined;
|
|
88975
89031
|
grid?: boolean | undefined;
|
|
88976
89032
|
flex?: string | boolean | undefined;
|
|
88977
89033
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -89000,8 +89056,6 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89000
89056
|
paddingBottom?: string | number | undefined;
|
|
89001
89057
|
paddingX?: string | number | undefined;
|
|
89002
89058
|
paddingY?: string | number | undefined;
|
|
89003
|
-
width?: string | number | undefined;
|
|
89004
|
-
height?: string | number | undefined;
|
|
89005
89059
|
matchAdapt?: boolean | undefined;
|
|
89006
89060
|
matchAdaptTemplate?: any;
|
|
89007
89061
|
}>>;
|
|
@@ -89039,6 +89093,8 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89039
89093
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
89040
89094
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
89041
89095
|
}, "strip", z.ZodTypeAny, {
|
|
89096
|
+
width?: number | undefined;
|
|
89097
|
+
height?: number | undefined;
|
|
89042
89098
|
grid?: boolean | undefined;
|
|
89043
89099
|
flex?: string | boolean | undefined;
|
|
89044
89100
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -89067,11 +89123,11 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89067
89123
|
paddingBottom?: number | undefined;
|
|
89068
89124
|
paddingX?: number | undefined;
|
|
89069
89125
|
paddingY?: number | undefined;
|
|
89070
|
-
width?: number | undefined;
|
|
89071
|
-
height?: number | undefined;
|
|
89072
89126
|
matchAdapt?: boolean | undefined;
|
|
89073
89127
|
matchAdaptTemplate?: any;
|
|
89074
89128
|
}, {
|
|
89129
|
+
width?: string | number | undefined;
|
|
89130
|
+
height?: string | number | undefined;
|
|
89075
89131
|
grid?: boolean | undefined;
|
|
89076
89132
|
flex?: string | boolean | undefined;
|
|
89077
89133
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -89100,8 +89156,6 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89100
89156
|
paddingBottom?: string | number | undefined;
|
|
89101
89157
|
paddingX?: string | number | undefined;
|
|
89102
89158
|
paddingY?: string | number | undefined;
|
|
89103
|
-
width?: string | number | undefined;
|
|
89104
|
-
height?: string | number | undefined;
|
|
89105
89159
|
matchAdapt?: boolean | undefined;
|
|
89106
89160
|
matchAdaptTemplate?: any;
|
|
89107
89161
|
}>>;
|
|
@@ -89581,6 +89635,8 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89581
89635
|
material: "flex" | "fr4" | "fr1";
|
|
89582
89636
|
doubleSidedAssembly: boolean;
|
|
89583
89637
|
symbol?: SymbolProp | undefined;
|
|
89638
|
+
width?: number | undefined;
|
|
89639
|
+
height?: number | undefined;
|
|
89584
89640
|
key?: any;
|
|
89585
89641
|
thickness?: number | undefined;
|
|
89586
89642
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
@@ -89665,8 +89721,6 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89665
89721
|
paddingBottom?: number | undefined;
|
|
89666
89722
|
paddingX?: number | undefined;
|
|
89667
89723
|
paddingY?: number | undefined;
|
|
89668
|
-
width?: number | undefined;
|
|
89669
|
-
height?: number | undefined;
|
|
89670
89724
|
matchAdapt?: boolean | undefined;
|
|
89671
89725
|
matchAdaptTemplate?: any;
|
|
89672
89726
|
schTitle?: string | undefined;
|
|
@@ -89715,6 +89769,8 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89715
89769
|
schWidth?: number | undefined;
|
|
89716
89770
|
schHeight?: number | undefined;
|
|
89717
89771
|
pcbLayout?: {
|
|
89772
|
+
width?: number | undefined;
|
|
89773
|
+
height?: number | undefined;
|
|
89718
89774
|
grid?: boolean | undefined;
|
|
89719
89775
|
flex?: string | boolean | undefined;
|
|
89720
89776
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -89743,12 +89799,12 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89743
89799
|
paddingBottom?: number | undefined;
|
|
89744
89800
|
paddingX?: number | undefined;
|
|
89745
89801
|
paddingY?: number | undefined;
|
|
89746
|
-
width?: number | undefined;
|
|
89747
|
-
height?: number | undefined;
|
|
89748
89802
|
matchAdapt?: boolean | undefined;
|
|
89749
89803
|
matchAdaptTemplate?: any;
|
|
89750
89804
|
} | undefined;
|
|
89751
89805
|
schLayout?: {
|
|
89806
|
+
width?: number | undefined;
|
|
89807
|
+
height?: number | undefined;
|
|
89752
89808
|
grid?: boolean | undefined;
|
|
89753
89809
|
flex?: string | boolean | undefined;
|
|
89754
89810
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -89777,8 +89833,6 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89777
89833
|
paddingBottom?: number | undefined;
|
|
89778
89834
|
paddingX?: number | undefined;
|
|
89779
89835
|
paddingY?: number | undefined;
|
|
89780
|
-
width?: number | undefined;
|
|
89781
|
-
height?: number | undefined;
|
|
89782
89836
|
matchAdapt?: boolean | undefined;
|
|
89783
89837
|
matchAdaptTemplate?: any;
|
|
89784
89838
|
} | undefined;
|
|
@@ -89924,6 +89978,8 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89924
89978
|
innerHoles?: boolean | undefined;
|
|
89925
89979
|
}, {
|
|
89926
89980
|
symbol?: SymbolProp | undefined;
|
|
89981
|
+
width?: string | number | undefined;
|
|
89982
|
+
height?: string | number | undefined;
|
|
89927
89983
|
key?: any;
|
|
89928
89984
|
thickness?: string | number | undefined;
|
|
89929
89985
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -90011,8 +90067,6 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
90011
90067
|
paddingBottom?: string | number | undefined;
|
|
90012
90068
|
paddingX?: string | number | undefined;
|
|
90013
90069
|
paddingY?: string | number | undefined;
|
|
90014
|
-
width?: string | number | undefined;
|
|
90015
|
-
height?: string | number | undefined;
|
|
90016
90070
|
matchAdapt?: boolean | undefined;
|
|
90017
90071
|
matchAdaptTemplate?: any;
|
|
90018
90072
|
schTitle?: string | undefined;
|
|
@@ -90061,6 +90115,8 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
90061
90115
|
schWidth?: string | number | undefined;
|
|
90062
90116
|
schHeight?: string | number | undefined;
|
|
90063
90117
|
pcbLayout?: {
|
|
90118
|
+
width?: string | number | undefined;
|
|
90119
|
+
height?: string | number | undefined;
|
|
90064
90120
|
grid?: boolean | undefined;
|
|
90065
90121
|
flex?: string | boolean | undefined;
|
|
90066
90122
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -90089,12 +90145,12 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
90089
90145
|
paddingBottom?: string | number | undefined;
|
|
90090
90146
|
paddingX?: string | number | undefined;
|
|
90091
90147
|
paddingY?: string | number | undefined;
|
|
90092
|
-
width?: string | number | undefined;
|
|
90093
|
-
height?: string | number | undefined;
|
|
90094
90148
|
matchAdapt?: boolean | undefined;
|
|
90095
90149
|
matchAdaptTemplate?: any;
|
|
90096
90150
|
} | undefined;
|
|
90097
90151
|
schLayout?: {
|
|
90152
|
+
width?: string | number | undefined;
|
|
90153
|
+
height?: string | number | undefined;
|
|
90098
90154
|
grid?: boolean | undefined;
|
|
90099
90155
|
flex?: string | boolean | undefined;
|
|
90100
90156
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -90123,8 +90179,6 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
90123
90179
|
paddingBottom?: string | number | undefined;
|
|
90124
90180
|
paddingX?: string | number | undefined;
|
|
90125
90181
|
paddingY?: string | number | undefined;
|
|
90126
|
-
width?: string | number | undefined;
|
|
90127
|
-
height?: string | number | undefined;
|
|
90128
90182
|
matchAdapt?: boolean | undefined;
|
|
90129
90183
|
matchAdaptTemplate?: any;
|
|
90130
90184
|
} | undefined;
|
|
@@ -99706,9 +99760,9 @@ declare const rectCutoutProps: z.ZodObject<Omit<{
|
|
|
99706
99760
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
99707
99761
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
99708
99762
|
}, "strip", z.ZodTypeAny, {
|
|
99709
|
-
shape: "rect";
|
|
99710
99763
|
width: number;
|
|
99711
99764
|
height: number;
|
|
99765
|
+
shape: "rect";
|
|
99712
99766
|
name?: string | undefined;
|
|
99713
99767
|
pcbX?: string | number | undefined;
|
|
99714
99768
|
pcbY?: string | number | undefined;
|
|
@@ -99741,9 +99795,9 @@ declare const rectCutoutProps: z.ZodObject<Omit<{
|
|
|
99741
99795
|
pcbRelative?: boolean | undefined;
|
|
99742
99796
|
relative?: boolean | undefined;
|
|
99743
99797
|
}, {
|
|
99744
|
-
shape: "rect";
|
|
99745
99798
|
width: string | number;
|
|
99746
99799
|
height: string | number;
|
|
99800
|
+
shape: "rect";
|
|
99747
99801
|
name?: string | undefined;
|
|
99748
99802
|
pcbX?: string | number | undefined;
|
|
99749
99803
|
pcbY?: string | number | undefined;
|
|
@@ -100149,9 +100203,9 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
100149
100203
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
100150
100204
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
100151
100205
|
}, "strip", z.ZodTypeAny, {
|
|
100152
|
-
shape: "rect";
|
|
100153
100206
|
width: number;
|
|
100154
100207
|
height: number;
|
|
100208
|
+
shape: "rect";
|
|
100155
100209
|
name?: string | undefined;
|
|
100156
100210
|
pcbX?: string | number | undefined;
|
|
100157
100211
|
pcbY?: string | number | undefined;
|
|
@@ -100184,9 +100238,9 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
100184
100238
|
pcbRelative?: boolean | undefined;
|
|
100185
100239
|
relative?: boolean | undefined;
|
|
100186
100240
|
}, {
|
|
100187
|
-
shape: "rect";
|
|
100188
100241
|
width: string | number;
|
|
100189
100242
|
height: string | number;
|
|
100243
|
+
shape: "rect";
|
|
100190
100244
|
name?: string | undefined;
|
|
100191
100245
|
pcbX?: string | number | undefined;
|
|
100192
100246
|
pcbY?: string | number | undefined;
|
|
@@ -100662,9 +100716,9 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
100662
100716
|
solderMaskMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100663
100717
|
solderMaskMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100664
100718
|
}, "strip", z.ZodTypeAny, {
|
|
100665
|
-
shape: "rect";
|
|
100666
100719
|
width: number;
|
|
100667
100720
|
height: number;
|
|
100721
|
+
shape: "rect";
|
|
100668
100722
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
100669
100723
|
name?: string | undefined;
|
|
100670
100724
|
pcbX?: string | number | undefined;
|
|
@@ -100707,9 +100761,9 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
100707
100761
|
solderMaskMarginTop?: number | undefined;
|
|
100708
100762
|
solderMaskMarginBottom?: number | undefined;
|
|
100709
100763
|
}, {
|
|
100710
|
-
shape: "rect";
|
|
100711
100764
|
width: string | number;
|
|
100712
100765
|
height: string | number;
|
|
100766
|
+
shape: "rect";
|
|
100713
100767
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
100714
100768
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
100715
100769
|
} | undefined;
|
|
@@ -100834,9 +100888,9 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
100834
100888
|
solderMaskMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100835
100889
|
solderMaskMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100836
100890
|
}, "strip", z.ZodTypeAny, {
|
|
100837
|
-
shape: "rotated_rect";
|
|
100838
100891
|
width: number;
|
|
100839
100892
|
height: number;
|
|
100893
|
+
shape: "rotated_rect";
|
|
100840
100894
|
ccwRotation: number;
|
|
100841
100895
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
100842
100896
|
name?: string | undefined;
|
|
@@ -100879,9 +100933,9 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
100879
100933
|
solderMaskMarginTop?: number | undefined;
|
|
100880
100934
|
solderMaskMarginBottom?: number | undefined;
|
|
100881
100935
|
}, {
|
|
100882
|
-
shape: "rotated_rect";
|
|
100883
100936
|
width: string | number;
|
|
100884
100937
|
height: string | number;
|
|
100938
|
+
shape: "rotated_rect";
|
|
100885
100939
|
ccwRotation: number;
|
|
100886
100940
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
100887
100941
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -101152,9 +101206,9 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
101152
101206
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
101153
101207
|
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101154
101208
|
}, "strip", z.ZodTypeAny, {
|
|
101155
|
-
shape: "pill";
|
|
101156
101209
|
width: number;
|
|
101157
101210
|
height: number;
|
|
101211
|
+
shape: "pill";
|
|
101158
101212
|
radius: number;
|
|
101159
101213
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101160
101214
|
name?: string | undefined;
|
|
@@ -101192,9 +101246,9 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
101192
101246
|
solderMaskMargin?: number | undefined;
|
|
101193
101247
|
coveredWithSolderMask?: boolean | undefined;
|
|
101194
101248
|
}, {
|
|
101195
|
-
shape: "pill";
|
|
101196
101249
|
width: string | number;
|
|
101197
101250
|
height: string | number;
|
|
101251
|
+
shape: "pill";
|
|
101198
101252
|
radius: string | number;
|
|
101199
101253
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
101200
101254
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -101630,9 +101684,9 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
101630
101684
|
solderMaskMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101631
101685
|
solderMaskMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101632
101686
|
}, "strip", z.ZodTypeAny, {
|
|
101633
|
-
shape: "rect";
|
|
101634
101687
|
width: number;
|
|
101635
101688
|
height: number;
|
|
101689
|
+
shape: "rect";
|
|
101636
101690
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101637
101691
|
name?: string | undefined;
|
|
101638
101692
|
pcbX?: string | number | undefined;
|
|
@@ -101675,9 +101729,9 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
101675
101729
|
solderMaskMarginTop?: number | undefined;
|
|
101676
101730
|
solderMaskMarginBottom?: number | undefined;
|
|
101677
101731
|
}, {
|
|
101678
|
-
shape: "rect";
|
|
101679
101732
|
width: string | number;
|
|
101680
101733
|
height: string | number;
|
|
101734
|
+
shape: "rect";
|
|
101681
101735
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
101682
101736
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
101683
101737
|
} | undefined;
|
|
@@ -101801,9 +101855,9 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
101801
101855
|
solderMaskMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101802
101856
|
solderMaskMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101803
101857
|
}, "strip", z.ZodTypeAny, {
|
|
101804
|
-
shape: "rotated_rect";
|
|
101805
101858
|
width: number;
|
|
101806
101859
|
height: number;
|
|
101860
|
+
shape: "rotated_rect";
|
|
101807
101861
|
ccwRotation: number;
|
|
101808
101862
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101809
101863
|
name?: string | undefined;
|
|
@@ -101846,9 +101900,9 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
101846
101900
|
solderMaskMarginTop?: number | undefined;
|
|
101847
101901
|
solderMaskMarginBottom?: number | undefined;
|
|
101848
101902
|
}, {
|
|
101849
|
-
shape: "rotated_rect";
|
|
101850
101903
|
width: string | number;
|
|
101851
101904
|
height: string | number;
|
|
101905
|
+
shape: "rotated_rect";
|
|
101852
101906
|
ccwRotation: number;
|
|
101853
101907
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
101854
101908
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -101967,9 +102021,9 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
101967
102021
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
101968
102022
|
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101969
102023
|
}, "strip", z.ZodTypeAny, {
|
|
101970
|
-
shape: "pill";
|
|
101971
102024
|
width: number;
|
|
101972
102025
|
height: number;
|
|
102026
|
+
shape: "pill";
|
|
101973
102027
|
radius: number;
|
|
101974
102028
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
101975
102029
|
name?: string | undefined;
|
|
@@ -102007,9 +102061,9 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
102007
102061
|
solderMaskMargin?: number | undefined;
|
|
102008
102062
|
coveredWithSolderMask?: boolean | undefined;
|
|
102009
102063
|
}, {
|
|
102010
|
-
shape: "pill";
|
|
102011
102064
|
width: string | number;
|
|
102012
102065
|
height: string | number;
|
|
102066
|
+
shape: "pill";
|
|
102013
102067
|
radius: string | number;
|
|
102014
102068
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
102015
102069
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -102296,9 +102350,9 @@ declare const rectSolderPasteProps: z.ZodObject<Omit<{
|
|
|
102296
102350
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
102297
102351
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
102298
102352
|
}, "strip", z.ZodTypeAny, {
|
|
102299
|
-
shape: "rect";
|
|
102300
102353
|
width: number;
|
|
102301
102354
|
height: number;
|
|
102355
|
+
shape: "rect";
|
|
102302
102356
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
102303
102357
|
pcbX?: string | number | undefined;
|
|
102304
102358
|
pcbY?: string | number | undefined;
|
|
@@ -102331,9 +102385,9 @@ declare const rectSolderPasteProps: z.ZodObject<Omit<{
|
|
|
102331
102385
|
pcbRelative?: boolean | undefined;
|
|
102332
102386
|
relative?: boolean | undefined;
|
|
102333
102387
|
}, {
|
|
102334
|
-
shape: "rect";
|
|
102335
102388
|
width: string | number;
|
|
102336
102389
|
height: string | number;
|
|
102390
|
+
shape: "rect";
|
|
102337
102391
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
102338
102392
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
102339
102393
|
} | undefined;
|
|
@@ -102715,9 +102769,9 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
102715
102769
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
102716
102770
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
102717
102771
|
}, "strip", z.ZodTypeAny, {
|
|
102718
|
-
shape: "rect";
|
|
102719
102772
|
width: number;
|
|
102720
102773
|
height: number;
|
|
102774
|
+
shape: "rect";
|
|
102721
102775
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
102722
102776
|
pcbX?: string | number | undefined;
|
|
102723
102777
|
pcbY?: string | number | undefined;
|
|
@@ -102750,9 +102804,9 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
102750
102804
|
pcbRelative?: boolean | undefined;
|
|
102751
102805
|
relative?: boolean | undefined;
|
|
102752
102806
|
}, {
|
|
102753
|
-
shape: "rect";
|
|
102754
102807
|
width: string | number;
|
|
102755
102808
|
height: string | number;
|
|
102809
|
+
shape: "rect";
|
|
102756
102810
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
102757
102811
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
102758
102812
|
} | undefined;
|
|
@@ -103127,9 +103181,9 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103127
103181
|
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
103128
103182
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
103129
103183
|
}, "strip", z.ZodTypeAny, {
|
|
103130
|
-
shape: "pill";
|
|
103131
103184
|
width: number;
|
|
103132
103185
|
height: number;
|
|
103186
|
+
shape: "pill";
|
|
103133
103187
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103134
103188
|
name?: string | undefined;
|
|
103135
103189
|
pcbX?: string | number | undefined;
|
|
@@ -103166,9 +103220,9 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103166
103220
|
solderMaskMargin?: number | undefined;
|
|
103167
103221
|
coveredWithSolderMask?: boolean | undefined;
|
|
103168
103222
|
}, {
|
|
103169
|
-
shape: "pill";
|
|
103170
103223
|
width: string | number;
|
|
103171
103224
|
height: string | number;
|
|
103225
|
+
shape: "pill";
|
|
103172
103226
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
103173
103227
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
103174
103228
|
} | undefined;
|
|
@@ -103279,9 +103333,9 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103279
103333
|
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
103280
103334
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
103281
103335
|
}, "strip", z.ZodTypeAny, {
|
|
103282
|
-
shape: "oval";
|
|
103283
103336
|
width: number;
|
|
103284
103337
|
height: number;
|
|
103338
|
+
shape: "oval";
|
|
103285
103339
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103286
103340
|
name?: string | undefined;
|
|
103287
103341
|
pcbX?: string | number | undefined;
|
|
@@ -103318,9 +103372,9 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103318
103372
|
solderMaskMargin?: number | undefined;
|
|
103319
103373
|
coveredWithSolderMask?: boolean | undefined;
|
|
103320
103374
|
}, {
|
|
103321
|
-
shape: "oval";
|
|
103322
103375
|
width: string | number;
|
|
103323
103376
|
height: string | number;
|
|
103377
|
+
shape: "oval";
|
|
103324
103378
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
103325
103379
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
103326
103380
|
} | undefined;
|
|
@@ -103431,9 +103485,9 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103431
103485
|
solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
103432
103486
|
coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
|
|
103433
103487
|
}, "strip", z.ZodTypeAny, {
|
|
103434
|
-
shape: "rect";
|
|
103435
103488
|
width: number;
|
|
103436
103489
|
height: number;
|
|
103490
|
+
shape: "rect";
|
|
103437
103491
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
103438
103492
|
name?: string | undefined;
|
|
103439
103493
|
pcbX?: string | number | undefined;
|
|
@@ -103470,9 +103524,9 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
103470
103524
|
solderMaskMargin?: number | undefined;
|
|
103471
103525
|
coveredWithSolderMask?: boolean | undefined;
|
|
103472
103526
|
}, {
|
|
103473
|
-
shape: "rect";
|
|
103474
103527
|
width: string | number;
|
|
103475
103528
|
height: string | number;
|
|
103529
|
+
shape: "rect";
|
|
103476
103530
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
103477
103531
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
103478
103532
|
} | undefined;
|
|
@@ -103693,12 +103747,12 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
103693
103747
|
path: (string | {
|
|
103694
103748
|
getPortSelector: () => string;
|
|
103695
103749
|
})[];
|
|
103750
|
+
width?: number | undefined;
|
|
103696
103751
|
key?: string | undefined;
|
|
103697
103752
|
thickness?: number | undefined;
|
|
103698
103753
|
name?: string | undefined;
|
|
103699
103754
|
highlightColor?: string | undefined;
|
|
103700
103755
|
displayName?: string | undefined;
|
|
103701
|
-
width?: number | undefined;
|
|
103702
103756
|
maxLength?: number | undefined;
|
|
103703
103757
|
connectsTo?: string | string[] | undefined;
|
|
103704
103758
|
routingPhaseIndex?: number | null | undefined;
|
|
@@ -103735,12 +103789,12 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
103735
103789
|
path: (string | {
|
|
103736
103790
|
getPortSelector: () => string;
|
|
103737
103791
|
})[];
|
|
103792
|
+
width?: string | number | undefined;
|
|
103738
103793
|
key?: string | undefined;
|
|
103739
103794
|
thickness?: string | number | undefined;
|
|
103740
103795
|
name?: string | undefined;
|
|
103741
103796
|
highlightColor?: string | undefined;
|
|
103742
103797
|
displayName?: string | undefined;
|
|
103743
|
-
width?: string | number | undefined;
|
|
103744
103798
|
maxLength?: string | number | undefined;
|
|
103745
103799
|
connectsTo?: string | string[] | undefined;
|
|
103746
103800
|
routingPhaseIndex?: number | null | undefined;
|
|
@@ -103966,12 +104020,12 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
103966
104020
|
to: string | {
|
|
103967
104021
|
getPortSelector: () => string;
|
|
103968
104022
|
};
|
|
104023
|
+
width?: number | undefined;
|
|
103969
104024
|
key?: string | undefined;
|
|
103970
104025
|
thickness?: number | undefined;
|
|
103971
104026
|
name?: string | undefined;
|
|
103972
104027
|
highlightColor?: string | undefined;
|
|
103973
104028
|
displayName?: string | undefined;
|
|
103974
|
-
width?: number | undefined;
|
|
103975
104029
|
maxLength?: number | undefined;
|
|
103976
104030
|
connectsTo?: string | string[] | undefined;
|
|
103977
104031
|
routingPhaseIndex?: number | null | undefined;
|
|
@@ -104011,12 +104065,12 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104011
104065
|
to: string | {
|
|
104012
104066
|
getPortSelector: () => string;
|
|
104013
104067
|
};
|
|
104068
|
+
width?: string | number | undefined;
|
|
104014
104069
|
key?: string | undefined;
|
|
104015
104070
|
thickness?: string | number | undefined;
|
|
104016
104071
|
name?: string | undefined;
|
|
104017
104072
|
highlightColor?: string | undefined;
|
|
104018
104073
|
displayName?: string | undefined;
|
|
104019
|
-
width?: string | number | undefined;
|
|
104020
104074
|
maxLength?: string | number | undefined;
|
|
104021
104075
|
connectsTo?: string | string[] | undefined;
|
|
104022
104076
|
routingPhaseIndex?: number | null | undefined;
|
|
@@ -104242,12 +104296,12 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104242
104296
|
end: string | {
|
|
104243
104297
|
getPortSelector: () => string;
|
|
104244
104298
|
};
|
|
104299
|
+
width?: number | undefined;
|
|
104245
104300
|
key?: string | undefined;
|
|
104246
104301
|
thickness?: number | undefined;
|
|
104247
104302
|
name?: string | undefined;
|
|
104248
104303
|
highlightColor?: string | undefined;
|
|
104249
104304
|
displayName?: string | undefined;
|
|
104250
|
-
width?: number | undefined;
|
|
104251
104305
|
maxLength?: number | undefined;
|
|
104252
104306
|
connectsTo?: string | string[] | undefined;
|
|
104253
104307
|
routingPhaseIndex?: number | null | undefined;
|
|
@@ -104287,12 +104341,12 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104287
104341
|
end: string | {
|
|
104288
104342
|
getPortSelector: () => string;
|
|
104289
104343
|
};
|
|
104344
|
+
width?: string | number | undefined;
|
|
104290
104345
|
key?: string | undefined;
|
|
104291
104346
|
thickness?: string | number | undefined;
|
|
104292
104347
|
name?: string | undefined;
|
|
104293
104348
|
highlightColor?: string | undefined;
|
|
104294
104349
|
displayName?: string | undefined;
|
|
104295
|
-
width?: string | number | undefined;
|
|
104296
104350
|
maxLength?: string | number | undefined;
|
|
104297
104351
|
connectsTo?: string | string[] | undefined;
|
|
104298
104352
|
routingPhaseIndex?: number | null | undefined;
|
|
@@ -104450,14 +104504,14 @@ declare const symbolProps: z.ZodObject<{
|
|
|
104450
104504
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
104451
104505
|
name: z.ZodOptional<z.ZodString>;
|
|
104452
104506
|
}, "strip", z.ZodTypeAny, {
|
|
104453
|
-
name?: string | undefined;
|
|
104454
104507
|
width?: number | undefined;
|
|
104455
104508
|
height?: number | undefined;
|
|
104509
|
+
name?: string | undefined;
|
|
104456
104510
|
originalFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
104457
104511
|
}, {
|
|
104458
|
-
name?: string | undefined;
|
|
104459
104512
|
width?: string | number | undefined;
|
|
104460
104513
|
height?: string | number | undefined;
|
|
104514
|
+
name?: string | undefined;
|
|
104461
104515
|
originalFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
104462
104516
|
}>;
|
|
104463
104517
|
type SymbolPropsInput = z.input<typeof symbolProps>;
|
|
@@ -109172,6 +109226,8 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
109172
109226
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
109173
109227
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
109174
109228
|
}, "strip", z.ZodTypeAny, {
|
|
109229
|
+
width?: number | undefined;
|
|
109230
|
+
height?: number | undefined;
|
|
109175
109231
|
grid?: boolean | undefined;
|
|
109176
109232
|
flex?: string | boolean | undefined;
|
|
109177
109233
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -109200,11 +109256,11 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
109200
109256
|
paddingBottom?: number | undefined;
|
|
109201
109257
|
paddingX?: number | undefined;
|
|
109202
109258
|
paddingY?: number | undefined;
|
|
109203
|
-
width?: number | undefined;
|
|
109204
|
-
height?: number | undefined;
|
|
109205
109259
|
matchAdapt?: boolean | undefined;
|
|
109206
109260
|
matchAdaptTemplate?: any;
|
|
109207
109261
|
}, {
|
|
109262
|
+
width?: string | number | undefined;
|
|
109263
|
+
height?: string | number | undefined;
|
|
109208
109264
|
grid?: boolean | undefined;
|
|
109209
109265
|
flex?: string | boolean | undefined;
|
|
109210
109266
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -109233,8 +109289,6 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
109233
109289
|
paddingBottom?: string | number | undefined;
|
|
109234
109290
|
paddingX?: string | number | undefined;
|
|
109235
109291
|
paddingY?: string | number | undefined;
|
|
109236
|
-
width?: string | number | undefined;
|
|
109237
|
-
height?: string | number | undefined;
|
|
109238
109292
|
matchAdapt?: boolean | undefined;
|
|
109239
109293
|
matchAdaptTemplate?: any;
|
|
109240
109294
|
}>>;
|
|
@@ -109272,6 +109326,8 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
109272
109326
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
109273
109327
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
109274
109328
|
}, "strip", z.ZodTypeAny, {
|
|
109329
|
+
width?: number | undefined;
|
|
109330
|
+
height?: number | undefined;
|
|
109275
109331
|
grid?: boolean | undefined;
|
|
109276
109332
|
flex?: string | boolean | undefined;
|
|
109277
109333
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -109300,11 +109356,11 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
109300
109356
|
paddingBottom?: number | undefined;
|
|
109301
109357
|
paddingX?: number | undefined;
|
|
109302
109358
|
paddingY?: number | undefined;
|
|
109303
|
-
width?: number | undefined;
|
|
109304
|
-
height?: number | undefined;
|
|
109305
109359
|
matchAdapt?: boolean | undefined;
|
|
109306
109360
|
matchAdaptTemplate?: any;
|
|
109307
109361
|
}, {
|
|
109362
|
+
width?: string | number | undefined;
|
|
109363
|
+
height?: string | number | undefined;
|
|
109308
109364
|
grid?: boolean | undefined;
|
|
109309
109365
|
flex?: string | boolean | undefined;
|
|
109310
109366
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -109333,8 +109389,6 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
109333
109389
|
paddingBottom?: string | number | undefined;
|
|
109334
109390
|
paddingX?: string | number | undefined;
|
|
109335
109391
|
paddingY?: string | number | undefined;
|
|
109336
|
-
width?: string | number | undefined;
|
|
109337
|
-
height?: string | number | undefined;
|
|
109338
109392
|
matchAdapt?: boolean | undefined;
|
|
109339
109393
|
matchAdaptTemplate?: any;
|
|
109340
109394
|
}>>;
|
|
@@ -109918,6 +109972,8 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
109918
109972
|
mountOrientation: z.ZodOptional<z.ZodEnum<["faceDown", "faceUp"]>>;
|
|
109919
109973
|
}, "strip", z.ZodTypeAny, {
|
|
109920
109974
|
symbol?: SymbolProp | undefined;
|
|
109975
|
+
width?: number | undefined;
|
|
109976
|
+
height?: number | undefined;
|
|
109921
109977
|
key?: any;
|
|
109922
109978
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
109923
109979
|
name?: string | undefined;
|
|
@@ -109998,8 +110054,6 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
109998
110054
|
paddingBottom?: number | undefined;
|
|
109999
110055
|
paddingX?: number | undefined;
|
|
110000
110056
|
paddingY?: number | undefined;
|
|
110001
|
-
width?: number | undefined;
|
|
110002
|
-
height?: number | undefined;
|
|
110003
110057
|
matchAdapt?: boolean | undefined;
|
|
110004
110058
|
matchAdaptTemplate?: any;
|
|
110005
110059
|
schTitle?: string | undefined;
|
|
@@ -110049,6 +110103,8 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
110049
110103
|
schWidth?: number | undefined;
|
|
110050
110104
|
schHeight?: number | undefined;
|
|
110051
110105
|
pcbLayout?: {
|
|
110106
|
+
width?: number | undefined;
|
|
110107
|
+
height?: number | undefined;
|
|
110052
110108
|
grid?: boolean | undefined;
|
|
110053
110109
|
flex?: string | boolean | undefined;
|
|
110054
110110
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -110077,12 +110133,12 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
110077
110133
|
paddingBottom?: number | undefined;
|
|
110078
110134
|
paddingX?: number | undefined;
|
|
110079
110135
|
paddingY?: number | undefined;
|
|
110080
|
-
width?: number | undefined;
|
|
110081
|
-
height?: number | undefined;
|
|
110082
110136
|
matchAdapt?: boolean | undefined;
|
|
110083
110137
|
matchAdaptTemplate?: any;
|
|
110084
110138
|
} | undefined;
|
|
110085
110139
|
schLayout?: {
|
|
110140
|
+
width?: number | undefined;
|
|
110141
|
+
height?: number | undefined;
|
|
110086
110142
|
grid?: boolean | undefined;
|
|
110087
110143
|
flex?: string | boolean | undefined;
|
|
110088
110144
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -110111,8 +110167,6 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
110111
110167
|
paddingBottom?: number | undefined;
|
|
110112
110168
|
paddingX?: number | undefined;
|
|
110113
110169
|
paddingY?: number | undefined;
|
|
110114
|
-
width?: number | undefined;
|
|
110115
|
-
height?: number | undefined;
|
|
110116
110170
|
matchAdapt?: boolean | undefined;
|
|
110117
110171
|
matchAdaptTemplate?: any;
|
|
110118
110172
|
} | undefined;
|
|
@@ -110275,6 +110329,8 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
110275
110329
|
mountOrientation?: "faceDown" | "faceUp" | undefined;
|
|
110276
110330
|
}, {
|
|
110277
110331
|
symbol?: SymbolProp | undefined;
|
|
110332
|
+
width?: string | number | undefined;
|
|
110333
|
+
height?: string | number | undefined;
|
|
110278
110334
|
key?: any;
|
|
110279
110335
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
110280
110336
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -110357,8 +110413,6 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
110357
110413
|
paddingBottom?: string | number | undefined;
|
|
110358
110414
|
paddingX?: string | number | undefined;
|
|
110359
110415
|
paddingY?: string | number | undefined;
|
|
110360
|
-
width?: string | number | undefined;
|
|
110361
|
-
height?: string | number | undefined;
|
|
110362
110416
|
matchAdapt?: boolean | undefined;
|
|
110363
110417
|
matchAdaptTemplate?: any;
|
|
110364
110418
|
schTitle?: string | undefined;
|
|
@@ -110408,6 +110462,8 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
110408
110462
|
schWidth?: string | number | undefined;
|
|
110409
110463
|
schHeight?: string | number | undefined;
|
|
110410
110464
|
pcbLayout?: {
|
|
110465
|
+
width?: string | number | undefined;
|
|
110466
|
+
height?: string | number | undefined;
|
|
110411
110467
|
grid?: boolean | undefined;
|
|
110412
110468
|
flex?: string | boolean | undefined;
|
|
110413
110469
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -110436,12 +110492,12 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
110436
110492
|
paddingBottom?: string | number | undefined;
|
|
110437
110493
|
paddingX?: string | number | undefined;
|
|
110438
110494
|
paddingY?: string | number | undefined;
|
|
110439
|
-
width?: string | number | undefined;
|
|
110440
|
-
height?: string | number | undefined;
|
|
110441
110495
|
matchAdapt?: boolean | undefined;
|
|
110442
110496
|
matchAdaptTemplate?: any;
|
|
110443
110497
|
} | undefined;
|
|
110444
110498
|
schLayout?: {
|
|
110499
|
+
width?: string | number | undefined;
|
|
110500
|
+
height?: string | number | undefined;
|
|
110445
110501
|
grid?: boolean | undefined;
|
|
110446
110502
|
flex?: string | boolean | undefined;
|
|
110447
110503
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -110470,8 +110526,6 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
110470
110526
|
paddingBottom?: string | number | undefined;
|
|
110471
110527
|
paddingX?: string | number | undefined;
|
|
110472
110528
|
paddingY?: string | number | undefined;
|
|
110473
|
-
width?: string | number | undefined;
|
|
110474
|
-
height?: string | number | undefined;
|
|
110475
110529
|
matchAdapt?: boolean | undefined;
|
|
110476
110530
|
matchAdaptTemplate?: any;
|
|
110477
110531
|
} | undefined;
|
|
@@ -115556,7 +115610,7 @@ interface NetLabelProps {
|
|
|
115556
115610
|
schRotation?: number | string;
|
|
115557
115611
|
anchorSide?: "left" | "top" | "right" | "bottom";
|
|
115558
115612
|
}
|
|
115559
|
-
declare const netLabelProps: z.
|
|
115613
|
+
declare const netLabelProps: z.ZodObject<{
|
|
115560
115614
|
net: z.ZodOptional<z.ZodString>;
|
|
115561
115615
|
connection: z.ZodOptional<z.ZodString>;
|
|
115562
115616
|
connectsTo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
@@ -115580,22 +115634,6 @@ declare const netLabelProps: z.ZodEffects<z.ZodObject<{
|
|
|
115580
115634
|
net?: string | undefined;
|
|
115581
115635
|
connection?: string | undefined;
|
|
115582
115636
|
anchorSide?: "left" | "right" | "top" | "bottom" | undefined;
|
|
115583
|
-
}>, {
|
|
115584
|
-
schX?: number | undefined;
|
|
115585
|
-
schY?: number | undefined;
|
|
115586
|
-
schRotation?: number | undefined;
|
|
115587
|
-
connectsTo?: string | string[] | undefined;
|
|
115588
|
-
net?: string | undefined;
|
|
115589
|
-
connection?: string | undefined;
|
|
115590
|
-
anchorSide?: "left" | "right" | "top" | "bottom" | undefined;
|
|
115591
|
-
}, {
|
|
115592
|
-
schX?: string | number | undefined;
|
|
115593
|
-
schY?: string | number | undefined;
|
|
115594
|
-
schRotation?: string | number | undefined;
|
|
115595
|
-
connectsTo?: string | string[] | undefined;
|
|
115596
|
-
net?: string | undefined;
|
|
115597
|
-
connection?: string | undefined;
|
|
115598
|
-
anchorSide?: "left" | "right" | "top" | "bottom" | undefined;
|
|
115599
115637
|
}>;
|
|
115600
115638
|
|
|
115601
115639
|
type PushButtonProps<T extends PinLabelsProp | string = string> = ChipProps<T>;
|
|
@@ -120737,6 +120775,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
120737
120775
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
120738
120776
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
120739
120777
|
}, "strip", z.ZodTypeAny, {
|
|
120778
|
+
width?: number | undefined;
|
|
120779
|
+
height?: number | undefined;
|
|
120740
120780
|
grid?: boolean | undefined;
|
|
120741
120781
|
flex?: string | boolean | undefined;
|
|
120742
120782
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -120765,11 +120805,11 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
120765
120805
|
paddingBottom?: number | undefined;
|
|
120766
120806
|
paddingX?: number | undefined;
|
|
120767
120807
|
paddingY?: number | undefined;
|
|
120768
|
-
width?: number | undefined;
|
|
120769
|
-
height?: number | undefined;
|
|
120770
120808
|
matchAdapt?: boolean | undefined;
|
|
120771
120809
|
matchAdaptTemplate?: any;
|
|
120772
120810
|
}, {
|
|
120811
|
+
width?: string | number | undefined;
|
|
120812
|
+
height?: string | number | undefined;
|
|
120773
120813
|
grid?: boolean | undefined;
|
|
120774
120814
|
flex?: string | boolean | undefined;
|
|
120775
120815
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -120798,8 +120838,6 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
120798
120838
|
paddingBottom?: string | number | undefined;
|
|
120799
120839
|
paddingX?: string | number | undefined;
|
|
120800
120840
|
paddingY?: string | number | undefined;
|
|
120801
|
-
width?: string | number | undefined;
|
|
120802
|
-
height?: string | number | undefined;
|
|
120803
120841
|
matchAdapt?: boolean | undefined;
|
|
120804
120842
|
matchAdaptTemplate?: any;
|
|
120805
120843
|
}>>;
|
|
@@ -120837,6 +120875,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
120837
120875
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
120838
120876
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
120839
120877
|
}, "strip", z.ZodTypeAny, {
|
|
120878
|
+
width?: number | undefined;
|
|
120879
|
+
height?: number | undefined;
|
|
120840
120880
|
grid?: boolean | undefined;
|
|
120841
120881
|
flex?: string | boolean | undefined;
|
|
120842
120882
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -120865,11 +120905,11 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
120865
120905
|
paddingBottom?: number | undefined;
|
|
120866
120906
|
paddingX?: number | undefined;
|
|
120867
120907
|
paddingY?: number | undefined;
|
|
120868
|
-
width?: number | undefined;
|
|
120869
|
-
height?: number | undefined;
|
|
120870
120908
|
matchAdapt?: boolean | undefined;
|
|
120871
120909
|
matchAdaptTemplate?: any;
|
|
120872
120910
|
}, {
|
|
120911
|
+
width?: string | number | undefined;
|
|
120912
|
+
height?: string | number | undefined;
|
|
120873
120913
|
grid?: boolean | undefined;
|
|
120874
120914
|
flex?: string | boolean | undefined;
|
|
120875
120915
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -120898,8 +120938,6 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
120898
120938
|
paddingBottom?: string | number | undefined;
|
|
120899
120939
|
paddingX?: string | number | undefined;
|
|
120900
120940
|
paddingY?: string | number | undefined;
|
|
120901
|
-
width?: string | number | undefined;
|
|
120902
|
-
height?: string | number | undefined;
|
|
120903
120941
|
matchAdapt?: boolean | undefined;
|
|
120904
120942
|
matchAdaptTemplate?: any;
|
|
120905
120943
|
}>>;
|
|
@@ -121339,6 +121377,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121339
121377
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
121340
121378
|
}, "strip", z.ZodTypeAny, {
|
|
121341
121379
|
symbol?: SymbolProp | undefined;
|
|
121380
|
+
width?: number | undefined;
|
|
121381
|
+
height?: number | undefined;
|
|
121342
121382
|
key?: any;
|
|
121343
121383
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
121344
121384
|
name?: string | undefined;
|
|
@@ -121418,8 +121458,6 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121418
121458
|
paddingBottom?: number | undefined;
|
|
121419
121459
|
paddingX?: number | undefined;
|
|
121420
121460
|
paddingY?: number | undefined;
|
|
121421
|
-
width?: number | undefined;
|
|
121422
|
-
height?: number | undefined;
|
|
121423
121461
|
matchAdapt?: boolean | undefined;
|
|
121424
121462
|
matchAdaptTemplate?: any;
|
|
121425
121463
|
schTitle?: string | undefined;
|
|
@@ -121469,6 +121507,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121469
121507
|
schWidth?: number | undefined;
|
|
121470
121508
|
schHeight?: number | undefined;
|
|
121471
121509
|
pcbLayout?: {
|
|
121510
|
+
width?: number | undefined;
|
|
121511
|
+
height?: number | undefined;
|
|
121472
121512
|
grid?: boolean | undefined;
|
|
121473
121513
|
flex?: string | boolean | undefined;
|
|
121474
121514
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -121497,12 +121537,12 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121497
121537
|
paddingBottom?: number | undefined;
|
|
121498
121538
|
paddingX?: number | undefined;
|
|
121499
121539
|
paddingY?: number | undefined;
|
|
121500
|
-
width?: number | undefined;
|
|
121501
|
-
height?: number | undefined;
|
|
121502
121540
|
matchAdapt?: boolean | undefined;
|
|
121503
121541
|
matchAdaptTemplate?: any;
|
|
121504
121542
|
} | undefined;
|
|
121505
121543
|
schLayout?: {
|
|
121544
|
+
width?: number | undefined;
|
|
121545
|
+
height?: number | undefined;
|
|
121506
121546
|
grid?: boolean | undefined;
|
|
121507
121547
|
flex?: string | boolean | undefined;
|
|
121508
121548
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -121531,8 +121571,6 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121531
121571
|
paddingBottom?: number | undefined;
|
|
121532
121572
|
paddingX?: number | undefined;
|
|
121533
121573
|
paddingY?: number | undefined;
|
|
121534
|
-
width?: number | undefined;
|
|
121535
|
-
height?: number | undefined;
|
|
121536
121574
|
matchAdapt?: boolean | undefined;
|
|
121537
121575
|
matchAdaptTemplate?: any;
|
|
121538
121576
|
} | undefined;
|
|
@@ -121657,6 +121695,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121657
121695
|
schMatchAdapt?: boolean | undefined;
|
|
121658
121696
|
}, {
|
|
121659
121697
|
symbol?: SymbolProp | undefined;
|
|
121698
|
+
width?: string | number | undefined;
|
|
121699
|
+
height?: string | number | undefined;
|
|
121660
121700
|
key?: any;
|
|
121661
121701
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
121662
121702
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -121738,8 +121778,6 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121738
121778
|
paddingBottom?: string | number | undefined;
|
|
121739
121779
|
paddingX?: string | number | undefined;
|
|
121740
121780
|
paddingY?: string | number | undefined;
|
|
121741
|
-
width?: string | number | undefined;
|
|
121742
|
-
height?: string | number | undefined;
|
|
121743
121781
|
matchAdapt?: boolean | undefined;
|
|
121744
121782
|
matchAdaptTemplate?: any;
|
|
121745
121783
|
schTitle?: string | undefined;
|
|
@@ -121789,6 +121827,8 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121789
121827
|
schWidth?: string | number | undefined;
|
|
121790
121828
|
schHeight?: string | number | undefined;
|
|
121791
121829
|
pcbLayout?: {
|
|
121830
|
+
width?: string | number | undefined;
|
|
121831
|
+
height?: string | number | undefined;
|
|
121792
121832
|
grid?: boolean | undefined;
|
|
121793
121833
|
flex?: string | boolean | undefined;
|
|
121794
121834
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -121817,12 +121857,12 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121817
121857
|
paddingBottom?: string | number | undefined;
|
|
121818
121858
|
paddingX?: string | number | undefined;
|
|
121819
121859
|
paddingY?: string | number | undefined;
|
|
121820
|
-
width?: string | number | undefined;
|
|
121821
|
-
height?: string | number | undefined;
|
|
121822
121860
|
matchAdapt?: boolean | undefined;
|
|
121823
121861
|
matchAdaptTemplate?: any;
|
|
121824
121862
|
} | undefined;
|
|
121825
121863
|
schLayout?: {
|
|
121864
|
+
width?: string | number | undefined;
|
|
121865
|
+
height?: string | number | undefined;
|
|
121826
121866
|
grid?: boolean | undefined;
|
|
121827
121867
|
flex?: string | boolean | undefined;
|
|
121828
121868
|
layoutMode?: "none" | "relative" | "grid" | "flex" | "match-adapt" | undefined;
|
|
@@ -121851,8 +121891,6 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
121851
121891
|
paddingBottom?: string | number | undefined;
|
|
121852
121892
|
paddingX?: string | number | undefined;
|
|
121853
121893
|
paddingY?: string | number | undefined;
|
|
121854
|
-
width?: string | number | undefined;
|
|
121855
|
-
height?: string | number | undefined;
|
|
121856
121894
|
matchAdapt?: boolean | undefined;
|
|
121857
121895
|
matchAdaptTemplate?: any;
|
|
121858
121896
|
} | undefined;
|
|
@@ -161414,6 +161452,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
161414
161452
|
name: string;
|
|
161415
161453
|
padShape: "circle" | "rect";
|
|
161416
161454
|
symbol?: SymbolProp | undefined;
|
|
161455
|
+
width?: number | undefined;
|
|
161456
|
+
height?: number | undefined;
|
|
161417
161457
|
showAsTranslucentModel?: boolean | undefined;
|
|
161418
161458
|
key?: any;
|
|
161419
161459
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
@@ -161989,8 +162029,6 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
161989
162029
|
manufacturerPartNumber?: string | undefined;
|
|
161990
162030
|
schSectionName?: string | undefined;
|
|
161991
162031
|
schSheetName?: string | undefined;
|
|
161992
|
-
width?: number | undefined;
|
|
161993
|
-
height?: number | undefined;
|
|
161994
162032
|
connections?: {
|
|
161995
162033
|
pin1: string | readonly string[] | string[];
|
|
161996
162034
|
} | undefined;
|
|
@@ -162000,6 +162038,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
162000
162038
|
}, {
|
|
162001
162039
|
name: string;
|
|
162002
162040
|
symbol?: SymbolProp | undefined;
|
|
162041
|
+
width?: string | number | undefined;
|
|
162042
|
+
height?: string | number | undefined;
|
|
162003
162043
|
showAsTranslucentModel?: boolean | undefined;
|
|
162004
162044
|
key?: any;
|
|
162005
162045
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -162577,8 +162617,6 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
162577
162617
|
manufacturerPartNumber?: string | undefined;
|
|
162578
162618
|
schSectionName?: string | undefined;
|
|
162579
162619
|
schSheetName?: string | undefined;
|
|
162580
|
-
width?: string | number | undefined;
|
|
162581
|
-
height?: string | number | undefined;
|
|
162582
162620
|
connections?: {
|
|
162583
162621
|
pin1: string | readonly string[] | string[];
|
|
162584
162622
|
} | undefined;
|
|
@@ -162590,6 +162628,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
162590
162628
|
name: string;
|
|
162591
162629
|
padShape: "circle" | "rect";
|
|
162592
162630
|
symbol?: SymbolProp | undefined;
|
|
162631
|
+
width?: number | undefined;
|
|
162632
|
+
height?: number | undefined;
|
|
162593
162633
|
showAsTranslucentModel?: boolean | undefined;
|
|
162594
162634
|
key?: any;
|
|
162595
162635
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
@@ -163165,8 +163205,6 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
163165
163205
|
manufacturerPartNumber?: string | undefined;
|
|
163166
163206
|
schSectionName?: string | undefined;
|
|
163167
163207
|
schSheetName?: string | undefined;
|
|
163168
|
-
width?: number | undefined;
|
|
163169
|
-
height?: number | undefined;
|
|
163170
163208
|
connections?: {
|
|
163171
163209
|
pin1: string | readonly string[] | string[];
|
|
163172
163210
|
} | undefined;
|
|
@@ -163176,6 +163214,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
163176
163214
|
}, {
|
|
163177
163215
|
name: string;
|
|
163178
163216
|
symbol?: SymbolProp | undefined;
|
|
163217
|
+
width?: string | number | undefined;
|
|
163218
|
+
height?: string | number | undefined;
|
|
163179
163219
|
showAsTranslucentModel?: boolean | undefined;
|
|
163180
163220
|
key?: any;
|
|
163181
163221
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -163753,8 +163793,6 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
163753
163793
|
manufacturerPartNumber?: string | undefined;
|
|
163754
163794
|
schSectionName?: string | undefined;
|
|
163755
163795
|
schSheetName?: string | undefined;
|
|
163756
|
-
width?: string | number | undefined;
|
|
163757
|
-
height?: string | number | undefined;
|
|
163758
163796
|
connections?: {
|
|
163759
163797
|
pin1: string | readonly string[] | string[];
|
|
163760
163798
|
} | undefined;
|
|
@@ -164131,9 +164169,9 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
164131
164169
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
164132
164170
|
}>, "many">>;
|
|
164133
164171
|
}, "strip", z.ZodTypeAny, {
|
|
164134
|
-
shape: "rect";
|
|
164135
164172
|
width: number;
|
|
164136
164173
|
height: number;
|
|
164174
|
+
shape: "rect";
|
|
164137
164175
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
164138
164176
|
layers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[] | undefined;
|
|
164139
164177
|
pcbX?: string | number | undefined;
|
|
@@ -164168,9 +164206,9 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
164168
164206
|
pcbRelative?: boolean | undefined;
|
|
164169
164207
|
relative?: boolean | undefined;
|
|
164170
164208
|
}, {
|
|
164171
|
-
shape: "rect";
|
|
164172
164209
|
width: string | number;
|
|
164173
164210
|
height: string | number;
|
|
164211
|
+
shape: "rect";
|
|
164174
164212
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
164175
164213
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
164176
164214
|
} | undefined;
|
|
@@ -187913,6 +187951,8 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
187913
187951
|
titleAlignment: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
187914
187952
|
titleInside: boolean;
|
|
187915
187953
|
strokeStyle: "dashed" | "solid";
|
|
187954
|
+
width?: number | undefined;
|
|
187955
|
+
height?: number | undefined;
|
|
187916
187956
|
schX?: number | undefined;
|
|
187917
187957
|
schY?: number | undefined;
|
|
187918
187958
|
padding?: number | undefined;
|
|
@@ -187920,13 +187960,13 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
187920
187960
|
paddingRight?: number | undefined;
|
|
187921
187961
|
paddingTop?: number | undefined;
|
|
187922
187962
|
paddingBottom?: number | undefined;
|
|
187923
|
-
width?: number | undefined;
|
|
187924
|
-
height?: number | undefined;
|
|
187925
187963
|
title?: string | undefined;
|
|
187926
187964
|
overlay?: string[] | undefined;
|
|
187927
187965
|
titleColor?: string | undefined;
|
|
187928
187966
|
titleFontSize?: number | undefined;
|
|
187929
187967
|
}, {
|
|
187968
|
+
width?: string | number | undefined;
|
|
187969
|
+
height?: string | number | undefined;
|
|
187930
187970
|
schX?: string | number | undefined;
|
|
187931
187971
|
schY?: string | number | undefined;
|
|
187932
187972
|
padding?: string | number | undefined;
|
|
@@ -187934,8 +187974,6 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
187934
187974
|
paddingRight?: string | number | undefined;
|
|
187935
187975
|
paddingTop?: string | number | undefined;
|
|
187936
187976
|
paddingBottom?: string | number | undefined;
|
|
187937
|
-
width?: string | number | undefined;
|
|
187938
|
-
height?: string | number | undefined;
|
|
187939
187977
|
title?: string | undefined;
|
|
187940
187978
|
overlay?: string[] | undefined;
|
|
187941
187979
|
titleAlignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
@@ -187947,6 +187985,8 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
187947
187985
|
titleAlignment: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
187948
187986
|
titleInside: boolean;
|
|
187949
187987
|
strokeStyle: "dashed" | "solid";
|
|
187988
|
+
width?: number | undefined;
|
|
187989
|
+
height?: number | undefined;
|
|
187950
187990
|
schX?: number | undefined;
|
|
187951
187991
|
schY?: number | undefined;
|
|
187952
187992
|
padding?: number | undefined;
|
|
@@ -187954,13 +187994,13 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
187954
187994
|
paddingRight?: number | undefined;
|
|
187955
187995
|
paddingTop?: number | undefined;
|
|
187956
187996
|
paddingBottom?: number | undefined;
|
|
187957
|
-
width?: number | undefined;
|
|
187958
|
-
height?: number | undefined;
|
|
187959
187997
|
title?: string | undefined;
|
|
187960
187998
|
overlay?: string[] | undefined;
|
|
187961
187999
|
titleColor?: string | undefined;
|
|
187962
188000
|
titleFontSize?: number | undefined;
|
|
187963
188001
|
}, {
|
|
188002
|
+
width?: string | number | undefined;
|
|
188003
|
+
height?: string | number | undefined;
|
|
187964
188004
|
schX?: string | number | undefined;
|
|
187965
188005
|
schY?: string | number | undefined;
|
|
187966
188006
|
padding?: string | number | undefined;
|
|
@@ -187968,8 +188008,6 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
187968
188008
|
paddingRight?: string | number | undefined;
|
|
187969
188009
|
paddingTop?: string | number | undefined;
|
|
187970
188010
|
paddingBottom?: string | number | undefined;
|
|
187971
|
-
width?: string | number | undefined;
|
|
187972
|
-
height?: string | number | undefined;
|
|
187973
188011
|
title?: string | undefined;
|
|
187974
188012
|
overlay?: string[] | undefined;
|
|
187975
188013
|
titleAlignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
@@ -187981,6 +188019,8 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
187981
188019
|
titleAlignment: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
187982
188020
|
titleInside: boolean;
|
|
187983
188021
|
strokeStyle: "dashed" | "solid";
|
|
188022
|
+
width?: number | undefined;
|
|
188023
|
+
height?: number | undefined;
|
|
187984
188024
|
schX?: number | undefined;
|
|
187985
188025
|
schY?: number | undefined;
|
|
187986
188026
|
padding?: number | undefined;
|
|
@@ -187988,13 +188028,13 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
187988
188028
|
paddingRight?: number | undefined;
|
|
187989
188029
|
paddingTop?: number | undefined;
|
|
187990
188030
|
paddingBottom?: number | undefined;
|
|
187991
|
-
width?: number | undefined;
|
|
187992
|
-
height?: number | undefined;
|
|
187993
188031
|
title?: string | undefined;
|
|
187994
188032
|
overlay?: string[] | undefined;
|
|
187995
188033
|
titleColor?: string | undefined;
|
|
187996
188034
|
titleFontSize?: number | undefined;
|
|
187997
188035
|
}, {
|
|
188036
|
+
width?: string | number | undefined;
|
|
188037
|
+
height?: string | number | undefined;
|
|
187998
188038
|
schX?: string | number | undefined;
|
|
187999
188039
|
schY?: string | number | undefined;
|
|
188000
188040
|
padding?: string | number | undefined;
|
|
@@ -188002,8 +188042,6 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
188002
188042
|
paddingRight?: string | number | undefined;
|
|
188003
188043
|
paddingTop?: string | number | undefined;
|
|
188004
188044
|
paddingBottom?: string | number | undefined;
|
|
188005
|
-
width?: string | number | undefined;
|
|
188006
|
-
height?: string | number | undefined;
|
|
188007
188045
|
title?: string | undefined;
|
|
188008
188046
|
overlay?: string[] | undefined;
|
|
188009
188047
|
titleAlignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
@@ -188095,9 +188133,9 @@ declare const schematicRectProps: z.ZodObject<{
|
|
|
188095
188133
|
fillColor: z.ZodOptional<z.ZodString>;
|
|
188096
188134
|
isDashed: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
188097
188135
|
}, "strip", z.ZodTypeAny, {
|
|
188098
|
-
rotation: number;
|
|
188099
188136
|
width: number;
|
|
188100
188137
|
height: number;
|
|
188138
|
+
rotation: number;
|
|
188101
188139
|
isFilled: boolean;
|
|
188102
188140
|
isDashed: boolean;
|
|
188103
188141
|
schX?: number | undefined;
|
|
@@ -188307,11 +188345,11 @@ declare const schematicRowProps: z.ZodObject<{
|
|
|
188307
188345
|
children: z.ZodOptional<z.ZodAny>;
|
|
188308
188346
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
188309
188347
|
}, "strip", z.ZodTypeAny, {
|
|
188310
|
-
children?: any;
|
|
188311
188348
|
height?: number | undefined;
|
|
188312
|
-
}, {
|
|
188313
188349
|
children?: any;
|
|
188350
|
+
}, {
|
|
188314
188351
|
height?: string | number | undefined;
|
|
188352
|
+
children?: any;
|
|
188315
188353
|
}>;
|
|
188316
188354
|
interface SchematicRowProps {
|
|
188317
188355
|
children?: any;
|
|
@@ -188328,18 +188366,18 @@ declare const schematicCellProps: z.ZodObject<{
|
|
|
188328
188366
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
188329
188367
|
text: z.ZodOptional<z.ZodString>;
|
|
188330
188368
|
}, "strip", z.ZodTypeAny, {
|
|
188369
|
+
width?: number | undefined;
|
|
188331
188370
|
fontSize?: number | undefined;
|
|
188332
188371
|
children?: string | undefined;
|
|
188333
|
-
width?: number | undefined;
|
|
188334
188372
|
text?: string | undefined;
|
|
188335
188373
|
horizontalAlign?: "left" | "right" | "center" | undefined;
|
|
188336
188374
|
verticalAlign?: "top" | "bottom" | "middle" | undefined;
|
|
188337
188375
|
rowSpan?: number | undefined;
|
|
188338
188376
|
colSpan?: number | undefined;
|
|
188339
188377
|
}, {
|
|
188378
|
+
width?: string | number | undefined;
|
|
188340
188379
|
fontSize?: string | number | undefined;
|
|
188341
188380
|
children?: string | undefined;
|
|
188342
|
-
width?: string | number | undefined;
|
|
188343
188381
|
text?: string | undefined;
|
|
188344
188382
|
horizontalAlign?: "left" | "right" | "center" | undefined;
|
|
188345
188383
|
verticalAlign?: "top" | "bottom" | "middle" | undefined;
|
|
@@ -190885,4 +190923,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
190885
190923
|
}
|
|
190886
190924
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
190887
190925
|
|
|
190888
|
-
export { type AmmeterPinLabels, type AmmeterProps, type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DifferentialPairProps, type DiodePinLabels, type DiodePinLabelsProp, type DiodeProps, type Direction, type DirectionAlongEdge, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicSheetProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, type OvalPlatedHoleProps, type PanelProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSheetProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, analogSimulationProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, differentialPairProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSheetProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
190926
|
+
export { type AmmeterPinLabels, type AmmeterProps, type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DifferentialPairProps, type DiodePinLabels, type DiodePinLabelsProp, type DiodeProps, type Direction, type DirectionAlongEdge, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type EnclosureFdmBoxProps, type EnclosureFdmBoxPropsInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicSheetProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, type OvalPlatedHoleProps, type PanelProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSheetProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, analogSimulationProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, differentialPairProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, enclosureFdmBoxProps, enclosureProps, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSheetProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|