@tscircuit/props 0.0.419 → 0.0.420
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 +785 -3
- package/dist/index.js +983 -972
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +3 -0
- package/lib/common/schStyle.ts +17 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1385,6 +1385,21 @@ declare const pcbStyle: z.ZodObject<{
|
|
|
1385
1385
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
1386
1386
|
}>;
|
|
1387
1387
|
|
|
1388
|
+
interface SchStyle {
|
|
1389
|
+
defaultPassiveSize?: "xs" | "sm" | "md" | string | number;
|
|
1390
|
+
defaultCapacitorOrientation?: "vertical" | "none";
|
|
1391
|
+
}
|
|
1392
|
+
declare const schStyle: z.ZodObject<{
|
|
1393
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
1394
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
1395
|
+
}, "strip", z.ZodTypeAny, {
|
|
1396
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
1397
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
1398
|
+
}, {
|
|
1399
|
+
defaultPassiveSize?: string | number | undefined;
|
|
1400
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
1401
|
+
}>;
|
|
1402
|
+
|
|
1388
1403
|
type SymbolProp = string | ReactElement;
|
|
1389
1404
|
declare const symbolProp: z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>;
|
|
1390
1405
|
|
|
@@ -1443,6 +1458,7 @@ interface CommonLayoutProps {
|
|
|
1443
1458
|
layer?: LayerRefInput;
|
|
1444
1459
|
footprint?: FootprintProp;
|
|
1445
1460
|
symbol?: SymbolProp;
|
|
1461
|
+
schStyle?: SchStyle;
|
|
1446
1462
|
/**
|
|
1447
1463
|
* If true, X/Y coordinates will be interpreted relative to the parent group
|
|
1448
1464
|
*/
|
|
@@ -1640,6 +1656,16 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
1640
1656
|
}>>;
|
|
1641
1657
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
1642
1658
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
1659
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
1660
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
1661
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
1662
|
+
}, "strip", z.ZodTypeAny, {
|
|
1663
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
1664
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
1665
|
+
}, {
|
|
1666
|
+
defaultPassiveSize?: string | number | undefined;
|
|
1667
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
1668
|
+
}>>;
|
|
1643
1669
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
1644
1670
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
1645
1671
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1681,6 +1707,10 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
1681
1707
|
schY?: number | undefined;
|
|
1682
1708
|
schRotation?: number | undefined;
|
|
1683
1709
|
footprint?: FootprintProp | undefined;
|
|
1710
|
+
schStyle?: {
|
|
1711
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
1712
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
1713
|
+
} | undefined;
|
|
1684
1714
|
schRelative?: boolean | undefined;
|
|
1685
1715
|
}, {
|
|
1686
1716
|
symbol?: SymbolProp | undefined;
|
|
@@ -1722,6 +1752,10 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
1722
1752
|
schY?: string | number | undefined;
|
|
1723
1753
|
schRotation?: string | number | undefined;
|
|
1724
1754
|
footprint?: FootprintProp | undefined;
|
|
1755
|
+
schStyle?: {
|
|
1756
|
+
defaultPassiveSize?: string | number | undefined;
|
|
1757
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
1758
|
+
} | undefined;
|
|
1725
1759
|
schRelative?: boolean | undefined;
|
|
1726
1760
|
}>;
|
|
1727
1761
|
type SupplierName = "jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc";
|
|
@@ -1872,6 +1906,16 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
1872
1906
|
}>>;
|
|
1873
1907
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
1874
1908
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
1909
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
1910
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
1911
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
1912
|
+
}, "strip", z.ZodTypeAny, {
|
|
1913
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
1914
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
1915
|
+
}, {
|
|
1916
|
+
defaultPassiveSize?: string | number | undefined;
|
|
1917
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
1918
|
+
}>>;
|
|
1875
1919
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
1876
1920
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
1877
1921
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2537,6 +2581,10 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2537
2581
|
schY?: number | undefined;
|
|
2538
2582
|
schRotation?: number | undefined;
|
|
2539
2583
|
footprint?: FootprintProp | undefined;
|
|
2584
|
+
schStyle?: {
|
|
2585
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
2586
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
2587
|
+
} | undefined;
|
|
2540
2588
|
schRelative?: boolean | undefined;
|
|
2541
2589
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
2542
2590
|
pinAttributes?: Record<string, {
|
|
@@ -2733,6 +2781,10 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2733
2781
|
schY?: string | number | undefined;
|
|
2734
2782
|
schRotation?: string | number | undefined;
|
|
2735
2783
|
footprint?: FootprintProp | undefined;
|
|
2784
|
+
schStyle?: {
|
|
2785
|
+
defaultPassiveSize?: string | number | undefined;
|
|
2786
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
2787
|
+
} | undefined;
|
|
2736
2788
|
schRelative?: boolean | undefined;
|
|
2737
2789
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
2738
2790
|
pinAttributes?: Record<string, {
|
|
@@ -2956,6 +3008,16 @@ declare const componentProps: z.ZodObject<{
|
|
|
2956
3008
|
}>>;
|
|
2957
3009
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
2958
3010
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
3011
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
3012
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
3013
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
3014
|
+
}, "strip", z.ZodTypeAny, {
|
|
3015
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
3016
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
3017
|
+
}, {
|
|
3018
|
+
defaultPassiveSize?: string | number | undefined;
|
|
3019
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
3020
|
+
}>>;
|
|
2959
3021
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
2960
3022
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
2961
3023
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3621,6 +3683,10 @@ declare const componentProps: z.ZodObject<{
|
|
|
3621
3683
|
schY?: number | undefined;
|
|
3622
3684
|
schRotation?: number | undefined;
|
|
3623
3685
|
footprint?: FootprintProp | undefined;
|
|
3686
|
+
schStyle?: {
|
|
3687
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
3688
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
3689
|
+
} | undefined;
|
|
3624
3690
|
schRelative?: boolean | undefined;
|
|
3625
3691
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3626
3692
|
pinAttributes?: Record<string, {
|
|
@@ -3817,6 +3883,10 @@ declare const componentProps: z.ZodObject<{
|
|
|
3817
3883
|
schY?: string | number | undefined;
|
|
3818
3884
|
schRotation?: string | number | undefined;
|
|
3819
3885
|
footprint?: FootprintProp | undefined;
|
|
3886
|
+
schStyle?: {
|
|
3887
|
+
defaultPassiveSize?: string | number | undefined;
|
|
3888
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
3889
|
+
} | undefined;
|
|
3820
3890
|
schRelative?: boolean | undefined;
|
|
3821
3891
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3822
3892
|
pinAttributes?: Record<string, {
|
|
@@ -5685,6 +5755,16 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
5685
5755
|
}>>;
|
|
5686
5756
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
5687
5757
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
5758
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
5759
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
5760
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
5761
|
+
}, "strip", z.ZodTypeAny, {
|
|
5762
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
5763
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
5764
|
+
}, {
|
|
5765
|
+
defaultPassiveSize?: string | number | undefined;
|
|
5766
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
5767
|
+
}>>;
|
|
5688
5768
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
5689
5769
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
5690
5770
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6175,6 +6255,10 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
6175
6255
|
schY?: number | undefined;
|
|
6176
6256
|
schRotation?: number | undefined;
|
|
6177
6257
|
footprint?: FootprintProp | undefined;
|
|
6258
|
+
schStyle?: {
|
|
6259
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
6260
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
6261
|
+
} | undefined;
|
|
6178
6262
|
schRelative?: boolean | undefined;
|
|
6179
6263
|
name?: string | undefined;
|
|
6180
6264
|
children?: any;
|
|
@@ -6422,6 +6506,10 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
6422
6506
|
schY?: string | number | undefined;
|
|
6423
6507
|
schRotation?: string | number | undefined;
|
|
6424
6508
|
footprint?: FootprintProp | undefined;
|
|
6509
|
+
schStyle?: {
|
|
6510
|
+
defaultPassiveSize?: string | number | undefined;
|
|
6511
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
6512
|
+
} | undefined;
|
|
6425
6513
|
schRelative?: boolean | undefined;
|
|
6426
6514
|
name?: string | undefined;
|
|
6427
6515
|
children?: any;
|
|
@@ -6697,6 +6785,16 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
6697
6785
|
}>>;
|
|
6698
6786
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
6699
6787
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
6788
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
6789
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
6790
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
6791
|
+
}, "strip", z.ZodTypeAny, {
|
|
6792
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
6793
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
6794
|
+
}, {
|
|
6795
|
+
defaultPassiveSize?: string | number | undefined;
|
|
6796
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
6797
|
+
}>>;
|
|
6700
6798
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
6701
6799
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
6702
6800
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7377,6 +7475,10 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
7377
7475
|
schY?: number | undefined;
|
|
7378
7476
|
schRotation?: number | undefined;
|
|
7379
7477
|
footprint?: FootprintProp | undefined;
|
|
7478
|
+
schStyle?: {
|
|
7479
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
7480
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
7481
|
+
} | undefined;
|
|
7380
7482
|
schRelative?: boolean | undefined;
|
|
7381
7483
|
name?: string | undefined;
|
|
7382
7484
|
children?: any;
|
|
@@ -7670,6 +7772,10 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
7670
7772
|
schY?: string | number | undefined;
|
|
7671
7773
|
schRotation?: string | number | undefined;
|
|
7672
7774
|
footprint?: FootprintProp | undefined;
|
|
7775
|
+
schStyle?: {
|
|
7776
|
+
defaultPassiveSize?: string | number | undefined;
|
|
7777
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
7778
|
+
} | undefined;
|
|
7673
7779
|
schRelative?: boolean | undefined;
|
|
7674
7780
|
name?: string | undefined;
|
|
7675
7781
|
children?: any;
|
|
@@ -7992,6 +8098,16 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
7992
8098
|
}>>;
|
|
7993
8099
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
7994
8100
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
8101
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
8102
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
8103
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
8104
|
+
}, "strip", z.ZodTypeAny, {
|
|
8105
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
8106
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
8107
|
+
}, {
|
|
8108
|
+
defaultPassiveSize?: string | number | undefined;
|
|
8109
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
8110
|
+
}>>;
|
|
7995
8111
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
7996
8112
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
7997
8113
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8675,6 +8791,10 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
8675
8791
|
schY?: number | undefined;
|
|
8676
8792
|
schRotation?: number | undefined;
|
|
8677
8793
|
footprint?: FootprintProp | undefined;
|
|
8794
|
+
schStyle?: {
|
|
8795
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
8796
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
8797
|
+
} | undefined;
|
|
8678
8798
|
schRelative?: boolean | undefined;
|
|
8679
8799
|
name?: string | undefined;
|
|
8680
8800
|
children?: any;
|
|
@@ -8969,6 +9089,10 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
8969
9089
|
schY?: string | number | undefined;
|
|
8970
9090
|
schRotation?: string | number | undefined;
|
|
8971
9091
|
footprint?: FootprintProp | undefined;
|
|
9092
|
+
schStyle?: {
|
|
9093
|
+
defaultPassiveSize?: string | number | undefined;
|
|
9094
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
9095
|
+
} | undefined;
|
|
8972
9096
|
schRelative?: boolean | undefined;
|
|
8973
9097
|
name?: string | undefined;
|
|
8974
9098
|
children?: any;
|
|
@@ -9291,6 +9415,16 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
9291
9415
|
}>>;
|
|
9292
9416
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
9293
9417
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
9418
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
9419
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
9420
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
9421
|
+
}, "strip", z.ZodTypeAny, {
|
|
9422
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
9423
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
9424
|
+
}, {
|
|
9425
|
+
defaultPassiveSize?: string | number | undefined;
|
|
9426
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
9427
|
+
}>>;
|
|
9294
9428
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
9295
9429
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
9296
9430
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9783,6 +9917,10 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
9783
9917
|
schY?: number | undefined;
|
|
9784
9918
|
schRotation?: number | undefined;
|
|
9785
9919
|
footprint?: FootprintProp | undefined;
|
|
9920
|
+
schStyle?: {
|
|
9921
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
9922
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
9923
|
+
} | undefined;
|
|
9786
9924
|
schRelative?: boolean | undefined;
|
|
9787
9925
|
name?: string | undefined;
|
|
9788
9926
|
children?: any;
|
|
@@ -10031,6 +10169,10 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
10031
10169
|
schY?: string | number | undefined;
|
|
10032
10170
|
schRotation?: string | number | undefined;
|
|
10033
10171
|
footprint?: FootprintProp | undefined;
|
|
10172
|
+
schStyle?: {
|
|
10173
|
+
defaultPassiveSize?: string | number | undefined;
|
|
10174
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
10175
|
+
} | undefined;
|
|
10034
10176
|
schRelative?: boolean | undefined;
|
|
10035
10177
|
name?: string | undefined;
|
|
10036
10178
|
children?: any;
|
|
@@ -10305,6 +10447,16 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
10305
10447
|
}>>;
|
|
10306
10448
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
10307
10449
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
10450
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
10451
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
10452
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
10453
|
+
}, "strip", z.ZodTypeAny, {
|
|
10454
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
10455
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
10456
|
+
}, {
|
|
10457
|
+
defaultPassiveSize?: string | number | undefined;
|
|
10458
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
10459
|
+
}>>;
|
|
10308
10460
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
10309
10461
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
10310
10462
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -10988,6 +11140,10 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
10988
11140
|
schY?: number | undefined;
|
|
10989
11141
|
schRotation?: number | undefined;
|
|
10990
11142
|
footprint?: FootprintProp | undefined;
|
|
11143
|
+
schStyle?: {
|
|
11144
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
11145
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
11146
|
+
} | undefined;
|
|
10991
11147
|
schRelative?: boolean | undefined;
|
|
10992
11148
|
name?: string | undefined;
|
|
10993
11149
|
children?: any;
|
|
@@ -11282,6 +11438,10 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
11282
11438
|
schY?: string | number | undefined;
|
|
11283
11439
|
schRotation?: string | number | undefined;
|
|
11284
11440
|
footprint?: FootprintProp | undefined;
|
|
11441
|
+
schStyle?: {
|
|
11442
|
+
defaultPassiveSize?: string | number | undefined;
|
|
11443
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
11444
|
+
} | undefined;
|
|
11285
11445
|
schRelative?: boolean | undefined;
|
|
11286
11446
|
name?: string | undefined;
|
|
11287
11447
|
children?: any;
|
|
@@ -11634,6 +11794,16 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
11634
11794
|
}>>;
|
|
11635
11795
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
11636
11796
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
11797
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
11798
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
11799
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
11800
|
+
}, "strip", z.ZodTypeAny, {
|
|
11801
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
11802
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
11803
|
+
}, {
|
|
11804
|
+
defaultPassiveSize?: string | number | undefined;
|
|
11805
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
11806
|
+
}>>;
|
|
11637
11807
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
11638
11808
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
11639
11809
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12342,6 +12512,10 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
12342
12512
|
schY?: number | undefined;
|
|
12343
12513
|
schRotation?: number | undefined;
|
|
12344
12514
|
footprint?: FootprintProp | undefined;
|
|
12515
|
+
schStyle?: {
|
|
12516
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
12517
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
12518
|
+
} | undefined;
|
|
12345
12519
|
schRelative?: boolean | undefined;
|
|
12346
12520
|
name?: string | undefined;
|
|
12347
12521
|
children?: any;
|
|
@@ -12649,6 +12823,10 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
12649
12823
|
schY?: string | number | undefined;
|
|
12650
12824
|
schRotation?: string | number | undefined;
|
|
12651
12825
|
footprint?: FootprintProp | undefined;
|
|
12826
|
+
schStyle?: {
|
|
12827
|
+
defaultPassiveSize?: string | number | undefined;
|
|
12828
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
12829
|
+
} | undefined;
|
|
12652
12830
|
schRelative?: boolean | undefined;
|
|
12653
12831
|
name?: string | undefined;
|
|
12654
12832
|
children?: any;
|
|
@@ -13005,6 +13183,16 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
13005
13183
|
}>>;
|
|
13006
13184
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
13007
13185
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
13186
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
13187
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
13188
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
13189
|
+
}, "strip", z.ZodTypeAny, {
|
|
13190
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
13191
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
13192
|
+
}, {
|
|
13193
|
+
defaultPassiveSize?: string | number | undefined;
|
|
13194
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
13195
|
+
}>>;
|
|
13008
13196
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
13009
13197
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
13010
13198
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13507,6 +13695,10 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
13507
13695
|
schY?: number | undefined;
|
|
13508
13696
|
schRotation?: number | undefined;
|
|
13509
13697
|
footprint?: FootprintProp | undefined;
|
|
13698
|
+
schStyle?: {
|
|
13699
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
13700
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
13701
|
+
} | undefined;
|
|
13510
13702
|
schRelative?: boolean | undefined;
|
|
13511
13703
|
name?: string | undefined;
|
|
13512
13704
|
children?: any;
|
|
@@ -13760,6 +13952,10 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
13760
13952
|
schY?: string | number | undefined;
|
|
13761
13953
|
schRotation?: string | number | undefined;
|
|
13762
13954
|
footprint?: FootprintProp | undefined;
|
|
13955
|
+
schStyle?: {
|
|
13956
|
+
defaultPassiveSize?: string | number | undefined;
|
|
13957
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
13958
|
+
} | undefined;
|
|
13763
13959
|
schRelative?: boolean | undefined;
|
|
13764
13960
|
name?: string | undefined;
|
|
13765
13961
|
children?: any;
|
|
@@ -14046,6 +14242,16 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
14046
14242
|
}>>;
|
|
14047
14243
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
14048
14244
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
14245
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
14246
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
14247
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
14248
|
+
}, "strip", z.ZodTypeAny, {
|
|
14249
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
14250
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
14251
|
+
}, {
|
|
14252
|
+
defaultPassiveSize?: string | number | undefined;
|
|
14253
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
14254
|
+
}>>;
|
|
14049
14255
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
14050
14256
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
14051
14257
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14726,6 +14932,10 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
14726
14932
|
schY?: number | undefined;
|
|
14727
14933
|
schRotation?: number | undefined;
|
|
14728
14934
|
footprint?: FootprintProp | undefined;
|
|
14935
|
+
schStyle?: {
|
|
14936
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
14937
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
14938
|
+
} | undefined;
|
|
14729
14939
|
schRelative?: boolean | undefined;
|
|
14730
14940
|
name?: string | undefined;
|
|
14731
14941
|
children?: any;
|
|
@@ -15019,6 +15229,10 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
15019
15229
|
schY?: string | number | undefined;
|
|
15020
15230
|
schRotation?: string | number | undefined;
|
|
15021
15231
|
footprint?: FootprintProp | undefined;
|
|
15232
|
+
schStyle?: {
|
|
15233
|
+
defaultPassiveSize?: string | number | undefined;
|
|
15234
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
15235
|
+
} | undefined;
|
|
15022
15236
|
schRelative?: boolean | undefined;
|
|
15023
15237
|
name?: string | undefined;
|
|
15024
15238
|
children?: any;
|
|
@@ -15414,6 +15628,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
15414
15628
|
}>>;
|
|
15415
15629
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
15416
15630
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
15631
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
15632
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
15633
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
15634
|
+
}, "strip", z.ZodTypeAny, {
|
|
15635
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
15636
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
15637
|
+
}, {
|
|
15638
|
+
defaultPassiveSize?: string | number | undefined;
|
|
15639
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
15640
|
+
}>>;
|
|
15417
15641
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
15418
15642
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
15419
15643
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16329,6 +16553,10 @@ declare const chipProps: z.ZodObject<{
|
|
|
16329
16553
|
schY?: number | undefined;
|
|
16330
16554
|
schRotation?: number | undefined;
|
|
16331
16555
|
footprint?: FootprintProp | undefined;
|
|
16556
|
+
schStyle?: {
|
|
16557
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
16558
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
16559
|
+
} | undefined;
|
|
16332
16560
|
schRelative?: boolean | undefined;
|
|
16333
16561
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
16334
16562
|
pinAttributes?: Record<string, {
|
|
@@ -16602,6 +16830,10 @@ declare const chipProps: z.ZodObject<{
|
|
|
16602
16830
|
schY?: string | number | undefined;
|
|
16603
16831
|
schRotation?: string | number | undefined;
|
|
16604
16832
|
footprint?: FootprintProp | undefined;
|
|
16833
|
+
schStyle?: {
|
|
16834
|
+
defaultPassiveSize?: string | number | undefined;
|
|
16835
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
16836
|
+
} | undefined;
|
|
16605
16837
|
schRelative?: boolean | undefined;
|
|
16606
16838
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
16607
16839
|
pinAttributes?: Record<string, {
|
|
@@ -16905,6 +17137,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
16905
17137
|
}>>;
|
|
16906
17138
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
16907
17139
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
17140
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
17141
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
17142
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
17143
|
+
}, "strip", z.ZodTypeAny, {
|
|
17144
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
17145
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
17146
|
+
}, {
|
|
17147
|
+
defaultPassiveSize?: string | number | undefined;
|
|
17148
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
17149
|
+
}>>;
|
|
16908
17150
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
16909
17151
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
16910
17152
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17820,6 +18062,10 @@ declare const bugProps: z.ZodObject<{
|
|
|
17820
18062
|
schY?: number | undefined;
|
|
17821
18063
|
schRotation?: number | undefined;
|
|
17822
18064
|
footprint?: FootprintProp | undefined;
|
|
18065
|
+
schStyle?: {
|
|
18066
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
18067
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
18068
|
+
} | undefined;
|
|
17823
18069
|
schRelative?: boolean | undefined;
|
|
17824
18070
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
17825
18071
|
pinAttributes?: Record<string, {
|
|
@@ -18093,6 +18339,10 @@ declare const bugProps: z.ZodObject<{
|
|
|
18093
18339
|
schY?: string | number | undefined;
|
|
18094
18340
|
schRotation?: string | number | undefined;
|
|
18095
18341
|
footprint?: FootprintProp | undefined;
|
|
18342
|
+
schStyle?: {
|
|
18343
|
+
defaultPassiveSize?: string | number | undefined;
|
|
18344
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
18345
|
+
} | undefined;
|
|
18096
18346
|
schRelative?: boolean | undefined;
|
|
18097
18347
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
18098
18348
|
pinAttributes?: Record<string, {
|
|
@@ -18395,6 +18645,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
18395
18645
|
}>>;
|
|
18396
18646
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
18397
18647
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
18648
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
18649
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
18650
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
18651
|
+
}, "strip", z.ZodTypeAny, {
|
|
18652
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
18653
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
18654
|
+
}, {
|
|
18655
|
+
defaultPassiveSize?: string | number | undefined;
|
|
18656
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
18657
|
+
}>>;
|
|
18398
18658
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
18399
18659
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
18400
18660
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -19310,6 +19570,10 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
19310
19570
|
schY?: number | undefined;
|
|
19311
19571
|
schRotation?: number | undefined;
|
|
19312
19572
|
footprint?: FootprintProp | undefined;
|
|
19573
|
+
schStyle?: {
|
|
19574
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
19575
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
19576
|
+
} | undefined;
|
|
19313
19577
|
schRelative?: boolean | undefined;
|
|
19314
19578
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
19315
19579
|
pinAttributes?: Record<string, {
|
|
@@ -19583,6 +19847,10 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
19583
19847
|
schY?: string | number | undefined;
|
|
19584
19848
|
schRotation?: string | number | undefined;
|
|
19585
19849
|
footprint?: FootprintProp | undefined;
|
|
19850
|
+
schStyle?: {
|
|
19851
|
+
defaultPassiveSize?: string | number | undefined;
|
|
19852
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
19853
|
+
} | undefined;
|
|
19586
19854
|
schRelative?: boolean | undefined;
|
|
19587
19855
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
19588
19856
|
pinAttributes?: Record<string, {
|
|
@@ -19917,6 +20185,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
19917
20185
|
}>>;
|
|
19918
20186
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
19919
20187
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
20188
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
20189
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
20190
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
20191
|
+
}, "strip", z.ZodTypeAny, {
|
|
20192
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
20193
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
20194
|
+
}, {
|
|
20195
|
+
defaultPassiveSize?: string | number | undefined;
|
|
20196
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
20197
|
+
}>>;
|
|
19920
20198
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
19921
20199
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
19922
20200
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -20821,6 +21099,10 @@ declare const jumperProps: z.ZodObject<{
|
|
|
20821
21099
|
schY?: number | undefined;
|
|
20822
21100
|
schRotation?: number | undefined;
|
|
20823
21101
|
footprint?: FootprintProp | undefined;
|
|
21102
|
+
schStyle?: {
|
|
21103
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
21104
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
21105
|
+
} | undefined;
|
|
20824
21106
|
schRelative?: boolean | undefined;
|
|
20825
21107
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20826
21108
|
pinAttributes?: Record<string, {
|
|
@@ -21089,6 +21371,10 @@ declare const jumperProps: z.ZodObject<{
|
|
|
21089
21371
|
schY?: string | number | undefined;
|
|
21090
21372
|
schRotation?: string | number | undefined;
|
|
21091
21373
|
footprint?: FootprintProp | undefined;
|
|
21374
|
+
schStyle?: {
|
|
21375
|
+
defaultPassiveSize?: string | number | undefined;
|
|
21376
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
21377
|
+
} | undefined;
|
|
21092
21378
|
schRelative?: boolean | undefined;
|
|
21093
21379
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21094
21380
|
pinAttributes?: Record<string, {
|
|
@@ -21395,6 +21681,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
21395
21681
|
}>>;
|
|
21396
21682
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
21397
21683
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
21684
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
21685
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
21686
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
21687
|
+
}, "strip", z.ZodTypeAny, {
|
|
21688
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
21689
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
21690
|
+
}, {
|
|
21691
|
+
defaultPassiveSize?: string | number | undefined;
|
|
21692
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
21693
|
+
}>>;
|
|
21398
21694
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
21399
21695
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
21400
21696
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -22302,6 +22598,10 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
22302
22598
|
schY?: number | undefined;
|
|
22303
22599
|
schRotation?: number | undefined;
|
|
22304
22600
|
footprint?: FootprintProp | undefined;
|
|
22601
|
+
schStyle?: {
|
|
22602
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
22603
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
22604
|
+
} | undefined;
|
|
22305
22605
|
schRelative?: boolean | undefined;
|
|
22306
22606
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22307
22607
|
pinAttributes?: Record<string, {
|
|
@@ -22572,6 +22872,10 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
22572
22872
|
schY?: string | number | undefined;
|
|
22573
22873
|
schRotation?: string | number | undefined;
|
|
22574
22874
|
footprint?: FootprintProp | undefined;
|
|
22875
|
+
schStyle?: {
|
|
22876
|
+
defaultPassiveSize?: string | number | undefined;
|
|
22877
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
22878
|
+
} | undefined;
|
|
22575
22879
|
schRelative?: boolean | undefined;
|
|
22576
22880
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22577
22881
|
pinAttributes?: Record<string, {
|
|
@@ -22889,6 +23193,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
22889
23193
|
}>>;
|
|
22890
23194
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
22891
23195
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
23196
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
23197
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
23198
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
23199
|
+
}, "strip", z.ZodTypeAny, {
|
|
23200
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
23201
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
23202
|
+
}, {
|
|
23203
|
+
defaultPassiveSize?: string | number | undefined;
|
|
23204
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
23205
|
+
}>>;
|
|
22892
23206
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
22893
23207
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
22894
23208
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -23691,6 +24005,10 @@ declare const connectorProps: z.ZodObject<{
|
|
|
23691
24005
|
schY?: number | undefined;
|
|
23692
24006
|
schRotation?: number | undefined;
|
|
23693
24007
|
footprint?: FootprintProp | undefined;
|
|
24008
|
+
schStyle?: {
|
|
24009
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
24010
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
24011
|
+
} | undefined;
|
|
23694
24012
|
schRelative?: boolean | undefined;
|
|
23695
24013
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
23696
24014
|
pinAttributes?: Record<string, {
|
|
@@ -23931,6 +24249,10 @@ declare const connectorProps: z.ZodObject<{
|
|
|
23931
24249
|
schY?: string | number | undefined;
|
|
23932
24250
|
schRotation?: string | number | undefined;
|
|
23933
24251
|
footprint?: FootprintProp | undefined;
|
|
24252
|
+
schStyle?: {
|
|
24253
|
+
defaultPassiveSize?: string | number | undefined;
|
|
24254
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
24255
|
+
} | undefined;
|
|
23934
24256
|
schRelative?: boolean | undefined;
|
|
23935
24257
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
23936
24258
|
pinAttributes?: Record<string, {
|
|
@@ -24202,6 +24524,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
24202
24524
|
}>>;
|
|
24203
24525
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
24204
24526
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
24527
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
24528
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
24529
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
24530
|
+
}, "strip", z.ZodTypeAny, {
|
|
24531
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
24532
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
24533
|
+
}, {
|
|
24534
|
+
defaultPassiveSize?: string | number | undefined;
|
|
24535
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
24536
|
+
}>>;
|
|
24205
24537
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
24206
24538
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
24207
24539
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -24869,6 +25201,10 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
24869
25201
|
schY?: number | undefined;
|
|
24870
25202
|
schRotation?: number | undefined;
|
|
24871
25203
|
footprint?: FootprintProp | undefined;
|
|
25204
|
+
schStyle?: {
|
|
25205
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
25206
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
25207
|
+
} | undefined;
|
|
24872
25208
|
schRelative?: boolean | undefined;
|
|
24873
25209
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
24874
25210
|
pinAttributes?: Record<string, {
|
|
@@ -25066,6 +25402,10 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
25066
25402
|
schY?: string | number | undefined;
|
|
25067
25403
|
schRotation?: string | number | undefined;
|
|
25068
25404
|
footprint?: FootprintProp | undefined;
|
|
25405
|
+
schStyle?: {
|
|
25406
|
+
defaultPassiveSize?: string | number | undefined;
|
|
25407
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
25408
|
+
} | undefined;
|
|
25069
25409
|
schRelative?: boolean | undefined;
|
|
25070
25410
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
25071
25411
|
pinAttributes?: Record<string, {
|
|
@@ -25318,6 +25658,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
25318
25658
|
}>>;
|
|
25319
25659
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
25320
25660
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
25661
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
25662
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
25663
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
25664
|
+
}, "strip", z.ZodTypeAny, {
|
|
25665
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
25666
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
25667
|
+
}, {
|
|
25668
|
+
defaultPassiveSize?: string | number | undefined;
|
|
25669
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
25670
|
+
}>>;
|
|
25321
25671
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
25322
25672
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
25323
25673
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -25990,6 +26340,10 @@ declare const fuseProps: z.ZodObject<{
|
|
|
25990
26340
|
schY?: number | undefined;
|
|
25991
26341
|
schRotation?: number | undefined;
|
|
25992
26342
|
footprint?: FootprintProp | undefined;
|
|
26343
|
+
schStyle?: {
|
|
26344
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
26345
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
26346
|
+
} | undefined;
|
|
25993
26347
|
schRelative?: boolean | undefined;
|
|
25994
26348
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
25995
26349
|
pinAttributes?: Record<string, {
|
|
@@ -26191,6 +26545,10 @@ declare const fuseProps: z.ZodObject<{
|
|
|
26191
26545
|
schY?: string | number | undefined;
|
|
26192
26546
|
schRotation?: string | number | undefined;
|
|
26193
26547
|
footprint?: FootprintProp | undefined;
|
|
26548
|
+
schStyle?: {
|
|
26549
|
+
defaultPassiveSize?: string | number | undefined;
|
|
26550
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
26551
|
+
} | undefined;
|
|
26194
26552
|
schRelative?: boolean | undefined;
|
|
26195
26553
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
26196
26554
|
pinAttributes?: Record<string, {
|
|
@@ -27902,6 +28260,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
27902
28260
|
}>>;
|
|
27903
28261
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
27904
28262
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
28263
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
28264
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
28265
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
28266
|
+
}, "strip", z.ZodTypeAny, {
|
|
28267
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
28268
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
28269
|
+
}, {
|
|
28270
|
+
defaultPassiveSize?: string | number | undefined;
|
|
28271
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
28272
|
+
}>>;
|
|
27905
28273
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
27906
28274
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
27907
28275
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -28577,6 +28945,10 @@ declare const resistorProps: z.ZodObject<{
|
|
|
28577
28945
|
schY?: number | undefined;
|
|
28578
28946
|
schRotation?: number | undefined;
|
|
28579
28947
|
footprint?: FootprintProp | undefined;
|
|
28948
|
+
schStyle?: {
|
|
28949
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
28950
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
28951
|
+
} | undefined;
|
|
28580
28952
|
schRelative?: boolean | undefined;
|
|
28581
28953
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
28582
28954
|
pinAttributes?: Record<string, {
|
|
@@ -28737,7 +29109,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
28737
29109
|
pullupTo?: string | undefined;
|
|
28738
29110
|
pulldownFor?: string | undefined;
|
|
28739
29111
|
pulldownTo?: string | undefined;
|
|
28740
|
-
schSize?: number | "xs" | "sm" | "
|
|
29112
|
+
schSize?: number | "xs" | "sm" | "md" | "default" | undefined;
|
|
28741
29113
|
}, {
|
|
28742
29114
|
name: string;
|
|
28743
29115
|
resistance: string | number;
|
|
@@ -28781,6 +29153,10 @@ declare const resistorProps: z.ZodObject<{
|
|
|
28781
29153
|
schY?: string | number | undefined;
|
|
28782
29154
|
schRotation?: string | number | undefined;
|
|
28783
29155
|
footprint?: FootprintProp | undefined;
|
|
29156
|
+
schStyle?: {
|
|
29157
|
+
defaultPassiveSize?: string | number | undefined;
|
|
29158
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
29159
|
+
} | undefined;
|
|
28784
29160
|
schRelative?: boolean | undefined;
|
|
28785
29161
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
28786
29162
|
pinAttributes?: Record<string, {
|
|
@@ -29018,6 +29394,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
29018
29394
|
}>>;
|
|
29019
29395
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
29020
29396
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
29397
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
29398
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
29399
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
29400
|
+
}, "strip", z.ZodTypeAny, {
|
|
29401
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
29402
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
29403
|
+
}, {
|
|
29404
|
+
defaultPassiveSize?: string | number | undefined;
|
|
29405
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
29406
|
+
}>>;
|
|
29021
29407
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
29022
29408
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
29023
29409
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -29687,6 +30073,10 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
29687
30073
|
schY?: number | undefined;
|
|
29688
30074
|
schRotation?: number | undefined;
|
|
29689
30075
|
footprint?: FootprintProp | undefined;
|
|
30076
|
+
schStyle?: {
|
|
30077
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
30078
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
30079
|
+
} | undefined;
|
|
29690
30080
|
schRelative?: boolean | undefined;
|
|
29691
30081
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
29692
30082
|
pinAttributes?: Record<string, {
|
|
@@ -29885,6 +30275,10 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
29885
30275
|
schY?: string | number | undefined;
|
|
29886
30276
|
schRotation?: string | number | undefined;
|
|
29887
30277
|
footprint?: FootprintProp | undefined;
|
|
30278
|
+
schStyle?: {
|
|
30279
|
+
defaultPassiveSize?: string | number | undefined;
|
|
30280
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
30281
|
+
} | undefined;
|
|
29888
30282
|
schRelative?: boolean | undefined;
|
|
29889
30283
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
29890
30284
|
pinAttributes?: Record<string, {
|
|
@@ -30122,6 +30516,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
30122
30516
|
}>>;
|
|
30123
30517
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
30124
30518
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
30519
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
30520
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
30521
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
30522
|
+
}, "strip", z.ZodTypeAny, {
|
|
30523
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
30524
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
30525
|
+
}, {
|
|
30526
|
+
defaultPassiveSize?: string | number | undefined;
|
|
30527
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
30528
|
+
}>>;
|
|
30125
30529
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
30126
30530
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
30127
30531
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -30797,6 +31201,10 @@ declare const crystalProps: z.ZodObject<{
|
|
|
30797
31201
|
schY?: number | undefined;
|
|
30798
31202
|
schRotation?: number | undefined;
|
|
30799
31203
|
footprint?: FootprintProp | undefined;
|
|
31204
|
+
schStyle?: {
|
|
31205
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
31206
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
31207
|
+
} | undefined;
|
|
30800
31208
|
schRelative?: boolean | undefined;
|
|
30801
31209
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
30802
31210
|
pinAttributes?: Record<string, {
|
|
@@ -31000,6 +31408,10 @@ declare const crystalProps: z.ZodObject<{
|
|
|
31000
31408
|
schY?: string | number | undefined;
|
|
31001
31409
|
schRotation?: string | number | undefined;
|
|
31002
31410
|
footprint?: FootprintProp | undefined;
|
|
31411
|
+
schStyle?: {
|
|
31412
|
+
defaultPassiveSize?: string | number | undefined;
|
|
31413
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
31414
|
+
} | undefined;
|
|
31003
31415
|
schRelative?: boolean | undefined;
|
|
31004
31416
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
31005
31417
|
pinAttributes?: Record<string, {
|
|
@@ -31235,6 +31647,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
31235
31647
|
}>>;
|
|
31236
31648
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
31237
31649
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
31650
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
31651
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
31652
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
31653
|
+
}, "strip", z.ZodTypeAny, {
|
|
31654
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
31655
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
31656
|
+
}, {
|
|
31657
|
+
defaultPassiveSize?: string | number | undefined;
|
|
31658
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
31659
|
+
}>>;
|
|
31238
31660
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
31239
31661
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
31240
31662
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -31906,6 +32328,10 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
31906
32328
|
schY?: number | undefined;
|
|
31907
32329
|
schRotation?: number | undefined;
|
|
31908
32330
|
footprint?: FootprintProp | undefined;
|
|
32331
|
+
schStyle?: {
|
|
32332
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
32333
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
32334
|
+
} | undefined;
|
|
31909
32335
|
schRelative?: boolean | undefined;
|
|
31910
32336
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
31911
32337
|
pinAttributes?: Record<string, {
|
|
@@ -32105,6 +32531,10 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
32105
32531
|
schY?: string | number | undefined;
|
|
32106
32532
|
schRotation?: string | number | undefined;
|
|
32107
32533
|
footprint?: FootprintProp | undefined;
|
|
32534
|
+
schStyle?: {
|
|
32535
|
+
defaultPassiveSize?: string | number | undefined;
|
|
32536
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
32537
|
+
} | undefined;
|
|
32108
32538
|
schRelative?: boolean | undefined;
|
|
32109
32539
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
32110
32540
|
pinAttributes?: Record<string, {
|
|
@@ -32341,6 +32771,16 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
32341
32771
|
}>>;
|
|
32342
32772
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
32343
32773
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
32774
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
32775
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
32776
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
32777
|
+
}, "strip", z.ZodTypeAny, {
|
|
32778
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
32779
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
32780
|
+
}, {
|
|
32781
|
+
defaultPassiveSize?: string | number | undefined;
|
|
32782
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
32783
|
+
}>>;
|
|
32344
32784
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
32345
32785
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
32346
32786
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -33060,6 +33500,10 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
33060
33500
|
schY?: number | undefined;
|
|
33061
33501
|
schRotation?: number | undefined;
|
|
33062
33502
|
footprint?: FootprintProp | undefined;
|
|
33503
|
+
schStyle?: {
|
|
33504
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
33505
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
33506
|
+
} | undefined;
|
|
33063
33507
|
schRelative?: boolean | undefined;
|
|
33064
33508
|
name?: string | undefined;
|
|
33065
33509
|
children?: any;
|
|
@@ -33377,6 +33821,10 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
33377
33821
|
schY?: string | number | undefined;
|
|
33378
33822
|
schRotation?: string | number | undefined;
|
|
33379
33823
|
footprint?: FootprintProp | undefined;
|
|
33824
|
+
schStyle?: {
|
|
33825
|
+
defaultPassiveSize?: string | number | undefined;
|
|
33826
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
33827
|
+
} | undefined;
|
|
33380
33828
|
schRelative?: boolean | undefined;
|
|
33381
33829
|
name?: string | undefined;
|
|
33382
33830
|
children?: any;
|
|
@@ -33744,6 +34192,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
33744
34192
|
}>>;
|
|
33745
34193
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
33746
34194
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
34195
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
34196
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
34197
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
34198
|
+
}, "strip", z.ZodTypeAny, {
|
|
34199
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
34200
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
34201
|
+
}, {
|
|
34202
|
+
defaultPassiveSize?: string | number | undefined;
|
|
34203
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
34204
|
+
}>>;
|
|
33747
34205
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
33748
34206
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
33749
34207
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -34425,6 +34883,10 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
34425
34883
|
schY?: number | undefined;
|
|
34426
34884
|
schRotation?: number | undefined;
|
|
34427
34885
|
footprint?: FootprintProp | undefined;
|
|
34886
|
+
schStyle?: {
|
|
34887
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
34888
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
34889
|
+
} | undefined;
|
|
34428
34890
|
schRelative?: boolean | undefined;
|
|
34429
34891
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
34430
34892
|
pinAttributes?: Record<string, {
|
|
@@ -34581,7 +35043,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
34581
35043
|
showAsTranslucentModel?: boolean | undefined;
|
|
34582
35044
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
34583
35045
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
34584
|
-
schSize?: number | "xs" | "sm" | "
|
|
35046
|
+
schSize?: number | "xs" | "sm" | "md" | "default" | undefined;
|
|
34585
35047
|
maxVoltageRating?: number | undefined;
|
|
34586
35048
|
decouplingFor?: string | undefined;
|
|
34587
35049
|
decouplingTo?: string | undefined;
|
|
@@ -34631,6 +35093,10 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
34631
35093
|
schY?: string | number | undefined;
|
|
34632
35094
|
schRotation?: string | number | undefined;
|
|
34633
35095
|
footprint?: FootprintProp | undefined;
|
|
35096
|
+
schStyle?: {
|
|
35097
|
+
defaultPassiveSize?: string | number | undefined;
|
|
35098
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
35099
|
+
} | undefined;
|
|
34634
35100
|
schRelative?: boolean | undefined;
|
|
34635
35101
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
34636
35102
|
pinAttributes?: Record<string, {
|
|
@@ -38670,6 +39136,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
38670
39136
|
}>>;
|
|
38671
39137
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
38672
39138
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
39139
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
39140
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
39141
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
39142
|
+
}, "strip", z.ZodTypeAny, {
|
|
39143
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
39144
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
39145
|
+
}, {
|
|
39146
|
+
defaultPassiveSize?: string | number | undefined;
|
|
39147
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
39148
|
+
}>>;
|
|
38673
39149
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
38674
39150
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
38675
39151
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -39340,6 +39816,10 @@ declare const batteryProps: z.ZodObject<{
|
|
|
39340
39816
|
schY?: number | undefined;
|
|
39341
39817
|
schRotation?: number | undefined;
|
|
39342
39818
|
footprint?: FootprintProp | undefined;
|
|
39819
|
+
schStyle?: {
|
|
39820
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
39821
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
39822
|
+
} | undefined;
|
|
39343
39823
|
schRelative?: boolean | undefined;
|
|
39344
39824
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
39345
39825
|
pinAttributes?: Record<string, {
|
|
@@ -39540,6 +40020,10 @@ declare const batteryProps: z.ZodObject<{
|
|
|
39540
40020
|
schY?: string | number | undefined;
|
|
39541
40021
|
schRotation?: string | number | undefined;
|
|
39542
40022
|
footprint?: FootprintProp | undefined;
|
|
40023
|
+
schStyle?: {
|
|
40024
|
+
defaultPassiveSize?: string | number | undefined;
|
|
40025
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
40026
|
+
} | undefined;
|
|
39543
40027
|
schRelative?: boolean | undefined;
|
|
39544
40028
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
39545
40029
|
pinAttributes?: Record<string, {
|
|
@@ -39850,6 +40334,16 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
39850
40334
|
}>>;
|
|
39851
40335
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
39852
40336
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
40337
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
40338
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
40339
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
40340
|
+
}, "strip", z.ZodTypeAny, {
|
|
40341
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
40342
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
40343
|
+
}, {
|
|
40344
|
+
defaultPassiveSize?: string | number | undefined;
|
|
40345
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
40346
|
+
}>>;
|
|
39853
40347
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
39854
40348
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
39855
40349
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -40663,6 +41157,10 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
40663
41157
|
schY?: number | undefined;
|
|
40664
41158
|
schRotation?: number | undefined;
|
|
40665
41159
|
footprint?: FootprintProp | undefined;
|
|
41160
|
+
schStyle?: {
|
|
41161
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
41162
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
41163
|
+
} | undefined;
|
|
40666
41164
|
schRelative?: boolean | undefined;
|
|
40667
41165
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
40668
41166
|
pinAttributes?: Record<string, {
|
|
@@ -40911,6 +41409,10 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
40911
41409
|
schY?: string | number | undefined;
|
|
40912
41410
|
schRotation?: string | number | undefined;
|
|
40913
41411
|
footprint?: FootprintProp | undefined;
|
|
41412
|
+
schStyle?: {
|
|
41413
|
+
defaultPassiveSize?: string | number | undefined;
|
|
41414
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
41415
|
+
} | undefined;
|
|
40914
41416
|
schRelative?: boolean | undefined;
|
|
40915
41417
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
40916
41418
|
pinAttributes?: Record<string, {
|
|
@@ -41258,6 +41760,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
41258
41760
|
}>>;
|
|
41259
41761
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
41260
41762
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
41763
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
41764
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
41765
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
41766
|
+
}, "strip", z.ZodTypeAny, {
|
|
41767
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
41768
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
41769
|
+
}, {
|
|
41770
|
+
defaultPassiveSize?: string | number | undefined;
|
|
41771
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
41772
|
+
}>>;
|
|
41261
41773
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
41262
41774
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
41263
41775
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -42173,6 +42685,10 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
42173
42685
|
schY?: number | undefined;
|
|
42174
42686
|
schRotation?: number | undefined;
|
|
42175
42687
|
footprint?: FootprintProp | undefined;
|
|
42688
|
+
schStyle?: {
|
|
42689
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
42690
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
42691
|
+
} | undefined;
|
|
42176
42692
|
schRelative?: boolean | undefined;
|
|
42177
42693
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
42178
42694
|
pinAttributes?: Record<string, {
|
|
@@ -42446,6 +42962,10 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
42446
42962
|
schY?: string | number | undefined;
|
|
42447
42963
|
schRotation?: string | number | undefined;
|
|
42448
42964
|
footprint?: FootprintProp | undefined;
|
|
42965
|
+
schStyle?: {
|
|
42966
|
+
defaultPassiveSize?: string | number | undefined;
|
|
42967
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
42968
|
+
} | undefined;
|
|
42449
42969
|
schRelative?: boolean | undefined;
|
|
42450
42970
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
42451
42971
|
pinAttributes?: Record<string, {
|
|
@@ -42747,6 +43267,16 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
42747
43267
|
}>>;
|
|
42748
43268
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
42749
43269
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
43270
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
43271
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
43272
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
43273
|
+
}, "strip", z.ZodTypeAny, {
|
|
43274
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
43275
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
43276
|
+
}, {
|
|
43277
|
+
defaultPassiveSize?: string | number | undefined;
|
|
43278
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
43279
|
+
}>>;
|
|
42750
43280
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
42751
43281
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
42752
43282
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -43427,6 +43957,10 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
43427
43957
|
schY?: number | undefined;
|
|
43428
43958
|
schRotation?: number | undefined;
|
|
43429
43959
|
footprint?: FootprintProp | undefined;
|
|
43960
|
+
schStyle?: {
|
|
43961
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
43962
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
43963
|
+
} | undefined;
|
|
43430
43964
|
schRelative?: boolean | undefined;
|
|
43431
43965
|
name?: string | undefined;
|
|
43432
43966
|
children?: any;
|
|
@@ -43720,6 +44254,10 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
43720
44254
|
schY?: string | number | undefined;
|
|
43721
44255
|
schRotation?: string | number | undefined;
|
|
43722
44256
|
footprint?: FootprintProp | undefined;
|
|
44257
|
+
schStyle?: {
|
|
44258
|
+
defaultPassiveSize?: string | number | undefined;
|
|
44259
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
44260
|
+
} | undefined;
|
|
43723
44261
|
schRelative?: boolean | undefined;
|
|
43724
44262
|
name?: string | undefined;
|
|
43725
44263
|
children?: any;
|
|
@@ -44073,6 +44611,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
44073
44611
|
}>>;
|
|
44074
44612
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
44075
44613
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
44614
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
44615
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
44616
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
44617
|
+
}, "strip", z.ZodTypeAny, {
|
|
44618
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
44619
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
44620
|
+
}, {
|
|
44621
|
+
defaultPassiveSize?: string | number | undefined;
|
|
44622
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
44623
|
+
}>>;
|
|
44076
44624
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
44077
44625
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
44078
44626
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -44742,6 +45290,10 @@ declare const transistorProps: z.ZodObject<{
|
|
|
44742
45290
|
schY?: number | undefined;
|
|
44743
45291
|
schRotation?: number | undefined;
|
|
44744
45292
|
footprint?: FootprintProp | undefined;
|
|
45293
|
+
schStyle?: {
|
|
45294
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
45295
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
45296
|
+
} | undefined;
|
|
44745
45297
|
schRelative?: boolean | undefined;
|
|
44746
45298
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
44747
45299
|
pinAttributes?: Record<string, {
|
|
@@ -44940,6 +45492,10 @@ declare const transistorProps: z.ZodObject<{
|
|
|
44940
45492
|
schY?: string | number | undefined;
|
|
44941
45493
|
schRotation?: string | number | undefined;
|
|
44942
45494
|
footprint?: FootprintProp | undefined;
|
|
45495
|
+
schStyle?: {
|
|
45496
|
+
defaultPassiveSize?: string | number | undefined;
|
|
45497
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
45498
|
+
} | undefined;
|
|
44943
45499
|
schRelative?: boolean | undefined;
|
|
44944
45500
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
44945
45501
|
pinAttributes?: Record<string, {
|
|
@@ -45171,6 +45727,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
45171
45727
|
}>>;
|
|
45172
45728
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
45173
45729
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
45730
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
45731
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
45732
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
45733
|
+
}, "strip", z.ZodTypeAny, {
|
|
45734
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
45735
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
45736
|
+
}, {
|
|
45737
|
+
defaultPassiveSize?: string | number | undefined;
|
|
45738
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
45739
|
+
}>>;
|
|
45174
45740
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
45175
45741
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
45176
45742
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -45841,6 +46407,10 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
45841
46407
|
schY?: number | undefined;
|
|
45842
46408
|
schRotation?: number | undefined;
|
|
45843
46409
|
footprint?: FootprintProp | undefined;
|
|
46410
|
+
schStyle?: {
|
|
46411
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
46412
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
46413
|
+
} | undefined;
|
|
45844
46414
|
schRelative?: boolean | undefined;
|
|
45845
46415
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
45846
46416
|
pinAttributes?: Record<string, {
|
|
@@ -46039,6 +46609,10 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
46039
46609
|
schY?: string | number | undefined;
|
|
46040
46610
|
schRotation?: string | number | undefined;
|
|
46041
46611
|
footprint?: FootprintProp | undefined;
|
|
46612
|
+
schStyle?: {
|
|
46613
|
+
defaultPassiveSize?: string | number | undefined;
|
|
46614
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
46615
|
+
} | undefined;
|
|
46042
46616
|
schRelative?: boolean | undefined;
|
|
46043
46617
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
46044
46618
|
pinAttributes?: Record<string, {
|
|
@@ -46273,6 +46847,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
46273
46847
|
}>>;
|
|
46274
46848
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
46275
46849
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
46850
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
46851
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
46852
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
46853
|
+
}, "strip", z.ZodTypeAny, {
|
|
46854
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
46855
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
46856
|
+
}, {
|
|
46857
|
+
defaultPassiveSize?: string | number | undefined;
|
|
46858
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
46859
|
+
}>>;
|
|
46276
46860
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
46277
46861
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
46278
46862
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -46944,6 +47528,10 @@ declare const inductorProps: z.ZodObject<{
|
|
|
46944
47528
|
schY?: number | undefined;
|
|
46945
47529
|
schRotation?: number | undefined;
|
|
46946
47530
|
footprint?: FootprintProp | undefined;
|
|
47531
|
+
schStyle?: {
|
|
47532
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
47533
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
47534
|
+
} | undefined;
|
|
46947
47535
|
schRelative?: boolean | undefined;
|
|
46948
47536
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
46949
47537
|
pinAttributes?: Record<string, {
|
|
@@ -47144,6 +47732,10 @@ declare const inductorProps: z.ZodObject<{
|
|
|
47144
47732
|
schY?: string | number | undefined;
|
|
47145
47733
|
schRotation?: string | number | undefined;
|
|
47146
47734
|
footprint?: FootprintProp | undefined;
|
|
47735
|
+
schStyle?: {
|
|
47736
|
+
defaultPassiveSize?: string | number | undefined;
|
|
47737
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
47738
|
+
} | undefined;
|
|
47147
47739
|
schRelative?: boolean | undefined;
|
|
47148
47740
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
47149
47741
|
pinAttributes?: Record<string, {
|
|
@@ -47371,6 +47963,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
47371
47963
|
}>>;
|
|
47372
47964
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
47373
47965
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
47966
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
47967
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
47968
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
47969
|
+
}, "strip", z.ZodTypeAny, {
|
|
47970
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
47971
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
47972
|
+
}, {
|
|
47973
|
+
defaultPassiveSize?: string | number | undefined;
|
|
47974
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
47975
|
+
}>>;
|
|
47374
47976
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
47375
47977
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
47376
47978
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -48047,6 +48649,10 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
48047
48649
|
schY?: number | undefined;
|
|
48048
48650
|
schRotation?: number | undefined;
|
|
48049
48651
|
footprint?: FootprintProp | undefined;
|
|
48652
|
+
schStyle?: {
|
|
48653
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
48654
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
48655
|
+
} | undefined;
|
|
48050
48656
|
schRelative?: boolean | undefined;
|
|
48051
48657
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
48052
48658
|
pinAttributes?: Record<string, {
|
|
@@ -48251,6 +48857,10 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
48251
48857
|
schY?: string | number | undefined;
|
|
48252
48858
|
schRotation?: string | number | undefined;
|
|
48253
48859
|
footprint?: FootprintProp | undefined;
|
|
48860
|
+
schStyle?: {
|
|
48861
|
+
defaultPassiveSize?: string | number | undefined;
|
|
48862
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
48863
|
+
} | undefined;
|
|
48254
48864
|
schRelative?: boolean | undefined;
|
|
48255
48865
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
48256
48866
|
pinAttributes?: Record<string, {
|
|
@@ -48455,6 +49065,10 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
48455
49065
|
schY?: number | undefined;
|
|
48456
49066
|
schRotation?: number | undefined;
|
|
48457
49067
|
footprint?: FootprintProp | undefined;
|
|
49068
|
+
schStyle?: {
|
|
49069
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
49070
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
49071
|
+
} | undefined;
|
|
48458
49072
|
schRelative?: boolean | undefined;
|
|
48459
49073
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
48460
49074
|
pinAttributes?: Record<string, {
|
|
@@ -48659,6 +49273,10 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
48659
49273
|
schY?: string | number | undefined;
|
|
48660
49274
|
schRotation?: string | number | undefined;
|
|
48661
49275
|
footprint?: FootprintProp | undefined;
|
|
49276
|
+
schStyle?: {
|
|
49277
|
+
defaultPassiveSize?: string | number | undefined;
|
|
49278
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
49279
|
+
} | undefined;
|
|
48662
49280
|
schRelative?: boolean | undefined;
|
|
48663
49281
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
48664
49282
|
pinAttributes?: Record<string, {
|
|
@@ -48869,6 +49487,10 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
48869
49487
|
schY?: number | undefined;
|
|
48870
49488
|
schRotation?: number | undefined;
|
|
48871
49489
|
footprint?: FootprintProp | undefined;
|
|
49490
|
+
schStyle?: {
|
|
49491
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
49492
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
49493
|
+
} | undefined;
|
|
48872
49494
|
schRelative?: boolean | undefined;
|
|
48873
49495
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
48874
49496
|
pinAttributes?: Record<string, {
|
|
@@ -49067,6 +49689,10 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
49067
49689
|
schY?: string | number | undefined;
|
|
49068
49690
|
schRotation?: string | number | undefined;
|
|
49069
49691
|
footprint?: FootprintProp | undefined;
|
|
49692
|
+
schStyle?: {
|
|
49693
|
+
defaultPassiveSize?: string | number | undefined;
|
|
49694
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
49695
|
+
} | undefined;
|
|
49070
49696
|
schRelative?: boolean | undefined;
|
|
49071
49697
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
49072
49698
|
pinAttributes?: Record<string, {
|
|
@@ -49322,6 +49948,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
49322
49948
|
}>>;
|
|
49323
49949
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
49324
49950
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
49951
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
49952
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
49953
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
49954
|
+
}, "strip", z.ZodTypeAny, {
|
|
49955
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
49956
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
49957
|
+
}, {
|
|
49958
|
+
defaultPassiveSize?: string | number | undefined;
|
|
49959
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
49960
|
+
}>>;
|
|
49325
49961
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
49326
49962
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
49327
49963
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -49994,6 +50630,10 @@ declare const ledProps: z.ZodObject<{
|
|
|
49994
50630
|
schY?: number | undefined;
|
|
49995
50631
|
schRotation?: number | undefined;
|
|
49996
50632
|
footprint?: FootprintProp | undefined;
|
|
50633
|
+
schStyle?: {
|
|
50634
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
50635
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
50636
|
+
} | undefined;
|
|
49997
50637
|
schRelative?: boolean | undefined;
|
|
49998
50638
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
49999
50639
|
pinAttributes?: Record<string, {
|
|
@@ -50196,6 +50836,10 @@ declare const ledProps: z.ZodObject<{
|
|
|
50196
50836
|
schY?: string | number | undefined;
|
|
50197
50837
|
schRotation?: string | number | undefined;
|
|
50198
50838
|
footprint?: FootprintProp | undefined;
|
|
50839
|
+
schStyle?: {
|
|
50840
|
+
defaultPassiveSize?: string | number | undefined;
|
|
50841
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
50842
|
+
} | undefined;
|
|
50199
50843
|
schRelative?: boolean | undefined;
|
|
50200
50844
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
50201
50845
|
pinAttributes?: Record<string, {
|
|
@@ -50442,6 +51086,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
50442
51086
|
}>>;
|
|
50443
51087
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
50444
51088
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
51089
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
51090
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
51091
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
51092
|
+
}, "strip", z.ZodTypeAny, {
|
|
51093
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
51094
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
51095
|
+
}, {
|
|
51096
|
+
defaultPassiveSize?: string | number | undefined;
|
|
51097
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
51098
|
+
}>>;
|
|
50445
51099
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
50446
51100
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
50447
51101
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -51122,6 +51776,10 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
51122
51776
|
schY?: number | undefined;
|
|
51123
51777
|
schRotation?: number | undefined;
|
|
51124
51778
|
footprint?: FootprintProp | undefined;
|
|
51779
|
+
schStyle?: {
|
|
51780
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
51781
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
51782
|
+
} | undefined;
|
|
51125
51783
|
schRelative?: boolean | undefined;
|
|
51126
51784
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
51127
51785
|
pinAttributes?: Record<string, {
|
|
@@ -51329,6 +51987,10 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
51329
51987
|
schY?: string | number | undefined;
|
|
51330
51988
|
schRotation?: string | number | undefined;
|
|
51331
51989
|
footprint?: FootprintProp | undefined;
|
|
51990
|
+
schStyle?: {
|
|
51991
|
+
defaultPassiveSize?: string | number | undefined;
|
|
51992
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
51993
|
+
} | undefined;
|
|
51332
51994
|
schRelative?: boolean | undefined;
|
|
51333
51995
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
51334
51996
|
pinAttributes?: Record<string, {
|
|
@@ -51537,6 +52199,10 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
51537
52199
|
schY?: string | number | undefined;
|
|
51538
52200
|
schRotation?: string | number | undefined;
|
|
51539
52201
|
footprint?: FootprintProp | undefined;
|
|
52202
|
+
schStyle?: {
|
|
52203
|
+
defaultPassiveSize?: string | number | undefined;
|
|
52204
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
52205
|
+
} | undefined;
|
|
51540
52206
|
schRelative?: boolean | undefined;
|
|
51541
52207
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
51542
52208
|
pinAttributes?: Record<string, {
|
|
@@ -52470,6 +53136,16 @@ declare const viaProps: z.ZodObject<{
|
|
|
52470
53136
|
}>>;
|
|
52471
53137
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
52472
53138
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
53139
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
53140
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
53141
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
53142
|
+
}, "strip", z.ZodTypeAny, {
|
|
53143
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
53144
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
53145
|
+
}, {
|
|
53146
|
+
defaultPassiveSize?: string | number | undefined;
|
|
53147
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
53148
|
+
}>>;
|
|
52473
53149
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
52474
53150
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
52475
53151
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -52537,6 +53213,10 @@ declare const viaProps: z.ZodObject<{
|
|
|
52537
53213
|
schY?: number | undefined;
|
|
52538
53214
|
schRotation?: number | undefined;
|
|
52539
53215
|
footprint?: FootprintProp | undefined;
|
|
53216
|
+
schStyle?: {
|
|
53217
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
53218
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
53219
|
+
} | undefined;
|
|
52540
53220
|
schRelative?: boolean | undefined;
|
|
52541
53221
|
name?: string | undefined;
|
|
52542
53222
|
connectsTo?: string | string[] | undefined;
|
|
@@ -52589,6 +53269,10 @@ declare const viaProps: z.ZodObject<{
|
|
|
52589
53269
|
schY?: string | number | undefined;
|
|
52590
53270
|
schRotation?: string | number | undefined;
|
|
52591
53271
|
footprint?: FootprintProp | undefined;
|
|
53272
|
+
schStyle?: {
|
|
53273
|
+
defaultPassiveSize?: string | number | undefined;
|
|
53274
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
53275
|
+
} | undefined;
|
|
52592
53276
|
schRelative?: boolean | undefined;
|
|
52593
53277
|
name?: string | undefined;
|
|
52594
53278
|
connectsTo?: string | string[] | undefined;
|
|
@@ -52703,6 +53387,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
52703
53387
|
}>>;
|
|
52704
53388
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
52705
53389
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
53390
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
53391
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
53392
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
53393
|
+
}, "strip", z.ZodTypeAny, {
|
|
53394
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
53395
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
53396
|
+
}, {
|
|
53397
|
+
defaultPassiveSize?: string | number | undefined;
|
|
53398
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
53399
|
+
}>>;
|
|
52706
53400
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
52707
53401
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
52708
53402
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -53383,6 +54077,10 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
53383
54077
|
schY?: number | undefined;
|
|
53384
54078
|
schRotation?: number | undefined;
|
|
53385
54079
|
footprint?: FootprintProp | undefined;
|
|
54080
|
+
schStyle?: {
|
|
54081
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
54082
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
54083
|
+
} | undefined;
|
|
53386
54084
|
schRelative?: boolean | undefined;
|
|
53387
54085
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
53388
54086
|
pinAttributes?: Record<string, {
|
|
@@ -53587,6 +54285,10 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
53587
54285
|
schY?: string | number | undefined;
|
|
53588
54286
|
schRotation?: string | number | undefined;
|
|
53589
54287
|
footprint?: FootprintProp | undefined;
|
|
54288
|
+
schStyle?: {
|
|
54289
|
+
defaultPassiveSize?: string | number | undefined;
|
|
54290
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
54291
|
+
} | undefined;
|
|
53590
54292
|
schRelative?: boolean | undefined;
|
|
53591
54293
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
53592
54294
|
pinAttributes?: Record<string, {
|
|
@@ -53791,6 +54493,10 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
53791
54493
|
schY?: number | undefined;
|
|
53792
54494
|
schRotation?: number | undefined;
|
|
53793
54495
|
footprint?: FootprintProp | undefined;
|
|
54496
|
+
schStyle?: {
|
|
54497
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
54498
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
54499
|
+
} | undefined;
|
|
53794
54500
|
schRelative?: boolean | undefined;
|
|
53795
54501
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
53796
54502
|
pinAttributes?: Record<string, {
|
|
@@ -53995,6 +54701,10 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
53995
54701
|
schY?: string | number | undefined;
|
|
53996
54702
|
schRotation?: string | number | undefined;
|
|
53997
54703
|
footprint?: FootprintProp | undefined;
|
|
54704
|
+
schStyle?: {
|
|
54705
|
+
defaultPassiveSize?: string | number | undefined;
|
|
54706
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
54707
|
+
} | undefined;
|
|
53998
54708
|
schRelative?: boolean | undefined;
|
|
53999
54709
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
54000
54710
|
pinAttributes?: Record<string, {
|
|
@@ -55075,6 +55785,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
55075
55785
|
}>>;
|
|
55076
55786
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
55077
55787
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
55788
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
55789
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
55790
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
55791
|
+
}, "strip", z.ZodTypeAny, {
|
|
55792
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
55793
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
55794
|
+
}, {
|
|
55795
|
+
defaultPassiveSize?: string | number | undefined;
|
|
55796
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
55797
|
+
}>>;
|
|
55078
55798
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
55079
55799
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
55080
55800
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -55743,6 +56463,10 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
55743
56463
|
schY?: number | undefined;
|
|
55744
56464
|
schRotation?: number | undefined;
|
|
55745
56465
|
footprint?: FootprintProp | undefined;
|
|
56466
|
+
schStyle?: {
|
|
56467
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
56468
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
56469
|
+
} | undefined;
|
|
55746
56470
|
schRelative?: boolean | undefined;
|
|
55747
56471
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
55748
56472
|
pinAttributes?: Record<string, {
|
|
@@ -55940,6 +56664,10 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
55940
56664
|
schY?: string | number | undefined;
|
|
55941
56665
|
schRotation?: string | number | undefined;
|
|
55942
56666
|
footprint?: FootprintProp | undefined;
|
|
56667
|
+
schStyle?: {
|
|
56668
|
+
defaultPassiveSize?: string | number | undefined;
|
|
56669
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
56670
|
+
} | undefined;
|
|
55943
56671
|
schRelative?: boolean | undefined;
|
|
55944
56672
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
55945
56673
|
pinAttributes?: Record<string, {
|
|
@@ -56177,6 +56905,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
56177
56905
|
}>>;
|
|
56178
56906
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
56179
56907
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
56908
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
56909
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
56910
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
56911
|
+
}, "strip", z.ZodTypeAny, {
|
|
56912
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
56913
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
56914
|
+
}, {
|
|
56915
|
+
defaultPassiveSize?: string | number | undefined;
|
|
56916
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
56917
|
+
}>>;
|
|
56180
56918
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
56181
56919
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
56182
56920
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -56850,6 +57588,10 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
56850
57588
|
schY?: number | undefined;
|
|
56851
57589
|
schRotation?: number | undefined;
|
|
56852
57590
|
footprint?: FootprintProp | undefined;
|
|
57591
|
+
schStyle?: {
|
|
57592
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
57593
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
57594
|
+
} | undefined;
|
|
56853
57595
|
schRelative?: boolean | undefined;
|
|
56854
57596
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
56855
57597
|
pinAttributes?: Record<string, {
|
|
@@ -57053,6 +57795,10 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
57053
57795
|
schY?: string | number | undefined;
|
|
57054
57796
|
schRotation?: string | number | undefined;
|
|
57055
57797
|
footprint?: FootprintProp | undefined;
|
|
57798
|
+
schStyle?: {
|
|
57799
|
+
defaultPassiveSize?: string | number | undefined;
|
|
57800
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
57801
|
+
} | undefined;
|
|
57056
57802
|
schRelative?: boolean | undefined;
|
|
57057
57803
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
57058
57804
|
pinAttributes?: Record<string, {
|
|
@@ -57291,6 +58037,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
57291
58037
|
}>>;
|
|
57292
58038
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
57293
58039
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
58040
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
58041
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
58042
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
58043
|
+
}, "strip", z.ZodTypeAny, {
|
|
58044
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
58045
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
58046
|
+
}, {
|
|
58047
|
+
defaultPassiveSize?: string | number | undefined;
|
|
58048
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
58049
|
+
}>>;
|
|
57294
58050
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
57295
58051
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
57296
58052
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -57961,6 +58717,10 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
57961
58717
|
schY?: number | undefined;
|
|
57962
58718
|
schRotation?: number | undefined;
|
|
57963
58719
|
footprint?: FootprintProp | undefined;
|
|
58720
|
+
schStyle?: {
|
|
58721
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
58722
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
58723
|
+
} | undefined;
|
|
57964
58724
|
schRelative?: boolean | undefined;
|
|
57965
58725
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
57966
58726
|
name?: string | undefined;
|
|
@@ -58160,6 +58920,10 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
58160
58920
|
schY?: string | number | undefined;
|
|
58161
58921
|
schRotation?: string | number | undefined;
|
|
58162
58922
|
footprint?: FootprintProp | undefined;
|
|
58923
|
+
schStyle?: {
|
|
58924
|
+
defaultPassiveSize?: string | number | undefined;
|
|
58925
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
58926
|
+
} | undefined;
|
|
58163
58927
|
schRelative?: boolean | undefined;
|
|
58164
58928
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
58165
58929
|
name?: string | undefined;
|
|
@@ -59867,6 +60631,16 @@ declare const portProps: z.ZodObject<{
|
|
|
59867
60631
|
}>>;
|
|
59868
60632
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
59869
60633
|
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
60634
|
+
schStyle: z.ZodOptional<z.ZodObject<{
|
|
60635
|
+
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
60636
|
+
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
60637
|
+
}, "strip", z.ZodTypeAny, {
|
|
60638
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
60639
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
60640
|
+
}, {
|
|
60641
|
+
defaultPassiveSize?: string | number | undefined;
|
|
60642
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
60643
|
+
}>>;
|
|
59870
60644
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
59871
60645
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
59872
60646
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -59916,6 +60690,10 @@ declare const portProps: z.ZodObject<{
|
|
|
59916
60690
|
schY?: number | undefined;
|
|
59917
60691
|
schRotation?: number | undefined;
|
|
59918
60692
|
footprint?: FootprintProp | undefined;
|
|
60693
|
+
schStyle?: {
|
|
60694
|
+
defaultPassiveSize?: number | "xs" | "sm" | "md" | undefined;
|
|
60695
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
60696
|
+
} | undefined;
|
|
59919
60697
|
schRelative?: boolean | undefined;
|
|
59920
60698
|
connectsTo?: string | string[] | undefined;
|
|
59921
60699
|
pinNumber?: number | undefined;
|
|
@@ -59962,6 +60740,10 @@ declare const portProps: z.ZodObject<{
|
|
|
59962
60740
|
schY?: string | number | undefined;
|
|
59963
60741
|
schRotation?: string | number | undefined;
|
|
59964
60742
|
footprint?: FootprintProp | undefined;
|
|
60743
|
+
schStyle?: {
|
|
60744
|
+
defaultPassiveSize?: string | number | undefined;
|
|
60745
|
+
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
60746
|
+
} | undefined;
|
|
59965
60747
|
schRelative?: boolean | undefined;
|
|
59966
60748
|
connectsTo?: string | string[] | undefined;
|
|
59967
60749
|
pinNumber?: number | undefined;
|
|
@@ -60811,4 +61593,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
60811
61593
|
}
|
|
60812
61594
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
60813
61595
|
|
|
60814
|
-
export { type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, 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 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 CourtyardOutlineProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FootprintFileParserEntry, 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 InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JumperProps, type KicadAutocompleteStringPath, type KicadPath, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type 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 PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, 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 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 SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, analogSimulationProps, autorouterConfig, autorouterPreset, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, 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, courtyardOutlineProps, courtyardRectProps, crystalPins, crystalProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
61596
|
+
export { type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, 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 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 CourtyardOutlineProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FootprintFileParserEntry, 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 InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JumperProps, type KicadAutocompleteStringPath, type KicadPath, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type 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 PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, 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 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 SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, analogSimulationProps, autorouterConfig, autorouterPreset, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, 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, courtyardOutlineProps, courtyardRectProps, crystalPins, crystalProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|