@tscircuit/props 0.0.470 → 0.0.471
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 +3 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/lib/components/port.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -167450,6 +167450,7 @@ declare const portProps: z.ZodObject<{
|
|
|
167450
167450
|
nameTextSize?: string | number | undefined;
|
|
167451
167451
|
numberTextSize?: string | number | undefined;
|
|
167452
167452
|
}>>;
|
|
167453
|
+
hasInversionCircle: z.ZodOptional<z.ZodBoolean>;
|
|
167453
167454
|
}, "strip", z.ZodTypeAny, {
|
|
167454
167455
|
name: string;
|
|
167455
167456
|
direction: "up" | "down" | "left" | "right";
|
|
@@ -167510,6 +167511,7 @@ declare const portProps: z.ZodObject<{
|
|
|
167510
167511
|
nameTextSize?: number | undefined;
|
|
167511
167512
|
numberTextSize?: number | undefined;
|
|
167512
167513
|
} | undefined;
|
|
167514
|
+
hasInversionCircle?: boolean | undefined;
|
|
167513
167515
|
}, {
|
|
167514
167516
|
name: string;
|
|
167515
167517
|
direction: "up" | "down" | "left" | "right";
|
|
@@ -167572,6 +167574,7 @@ declare const portProps: z.ZodObject<{
|
|
|
167572
167574
|
nameTextSize?: string | number | undefined;
|
|
167573
167575
|
numberTextSize?: string | number | undefined;
|
|
167574
167576
|
} | undefined;
|
|
167577
|
+
hasInversionCircle?: boolean | undefined;
|
|
167575
167578
|
}>;
|
|
167576
167579
|
type PortProps = z.input<typeof portProps>;
|
|
167577
167580
|
|
package/dist/index.js
CHANGED
|
@@ -2616,7 +2616,8 @@ var portProps = commonLayoutProps.extend({
|
|
|
2616
2616
|
aliases: z116.array(z116.string()).optional(),
|
|
2617
2617
|
direction,
|
|
2618
2618
|
connectsTo: z116.string().or(z116.array(z116.string())).optional(),
|
|
2619
|
-
kicadPinMetadata: kicadPinMetadata.optional()
|
|
2619
|
+
kicadPinMetadata: kicadPinMetadata.optional(),
|
|
2620
|
+
hasInversionCircle: z116.boolean().optional()
|
|
2620
2621
|
});
|
|
2621
2622
|
|
|
2622
2623
|
// lib/components/pcb-note-text.ts
|