@tscircuit/props 0.0.422 → 0.0.423
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/lib/components/interconnect.ts +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -24686,7 +24686,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
24686
24686
|
}>;
|
|
24687
24687
|
|
|
24688
24688
|
interface InterconnectProps extends CommonComponentProps {
|
|
24689
|
-
standard?: "TSC0001_36P_XALT_2025_11";
|
|
24689
|
+
standard?: "TSC0001_36P_XALT_2025_11" | "0805" | "0603" | "1206";
|
|
24690
24690
|
}
|
|
24691
24691
|
declare const interconnectProps: z.ZodObject<{
|
|
24692
24692
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -25396,7 +25396,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
25396
25396
|
mustBeConnected?: boolean | undefined;
|
|
25397
25397
|
}>>>;
|
|
25398
25398
|
} & {
|
|
25399
|
-
standard: z.ZodOptional<z.ZodEnum<["TSC0001_36P_XALT_2025_11"]>>;
|
|
25399
|
+
standard: z.ZodOptional<z.ZodEnum<["TSC0001_36P_XALT_2025_11", "0805", "0603", "1206"]>>;
|
|
25400
25400
|
}, "strip", z.ZodTypeAny, {
|
|
25401
25401
|
name: string;
|
|
25402
25402
|
symbol?: SymbolProp | undefined;
|
|
@@ -25599,7 +25599,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
25599
25599
|
doNotPlace?: boolean | undefined;
|
|
25600
25600
|
obstructsWithinBounds?: boolean | undefined;
|
|
25601
25601
|
showAsTranslucentModel?: boolean | undefined;
|
|
25602
|
-
standard?: "TSC0001_36P_XALT_2025_11" | undefined;
|
|
25602
|
+
standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
|
|
25603
25603
|
}, {
|
|
25604
25604
|
name: string;
|
|
25605
25605
|
symbol?: SymbolProp | undefined;
|
|
@@ -25804,7 +25804,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
25804
25804
|
doNotPlace?: boolean | undefined;
|
|
25805
25805
|
obstructsWithinBounds?: boolean | undefined;
|
|
25806
25806
|
showAsTranslucentModel?: boolean | undefined;
|
|
25807
|
-
standard?: "TSC0001_36P_XALT_2025_11" | undefined;
|
|
25807
|
+
standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
|
|
25808
25808
|
}>;
|
|
25809
25809
|
|
|
25810
25810
|
/**
|
package/dist/index.js
CHANGED
|
@@ -884,7 +884,7 @@ expectTypesMatch(true);
|
|
|
884
884
|
// lib/components/interconnect.ts
|
|
885
885
|
import { z as z38 } from "zod";
|
|
886
886
|
var interconnectProps = commonComponentProps.extend({
|
|
887
|
-
standard: z38.enum(["TSC0001_36P_XALT_2025_11"]).optional()
|
|
887
|
+
standard: z38.enum(["TSC0001_36P_XALT_2025_11", "0805", "0603", "1206"]).optional()
|
|
888
888
|
});
|
|
889
889
|
expectTypesMatch(true);
|
|
890
890
|
|