@tscircuit/props 0.0.518 → 0.0.519
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 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/lib/components/autoroutingphase.ts +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -121393,16 +121393,20 @@ declare const analogSimulationProps: z.ZodObject<{
|
|
|
121393
121393
|
}>;
|
|
121394
121394
|
|
|
121395
121395
|
interface AutoroutingPhaseProps {
|
|
121396
|
+
key?: any;
|
|
121396
121397
|
autorouter?: AutorouterProp;
|
|
121397
121398
|
phaseIndex?: number;
|
|
121398
121399
|
}
|
|
121399
121400
|
declare const autoroutingPhaseProps: z.ZodObject<{
|
|
121401
|
+
key: z.ZodOptional<z.ZodAny>;
|
|
121400
121402
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
121401
121403
|
phaseIndex: z.ZodOptional<z.ZodNumber>;
|
|
121402
121404
|
}, "strip", z.ZodTypeAny, {
|
|
121405
|
+
key?: any;
|
|
121403
121406
|
autorouter?: AutorouterProp | undefined;
|
|
121404
121407
|
phaseIndex?: number | undefined;
|
|
121405
121408
|
}, {
|
|
121409
|
+
key?: any;
|
|
121406
121410
|
autorouter?: AutorouterProp | undefined;
|
|
121407
121411
|
phaseIndex?: number | undefined;
|
|
121408
121412
|
}>;
|
package/dist/index.js
CHANGED
|
@@ -17345,6 +17345,7 @@ expectTypesMatch(
|
|
|
17345
17345
|
// lib/components/autoroutingphase.ts
|
|
17346
17346
|
import { z as z73 } from "zod";
|
|
17347
17347
|
var autoroutingPhaseProps = z73.object({
|
|
17348
|
+
key: z73.any().optional(),
|
|
17348
17349
|
autorouter: autorouterProp.optional(),
|
|
17349
17350
|
phaseIndex: z73.number().optional()
|
|
17350
17351
|
});
|