From 73a2d045107305d0a433cad3ca2ade15b42e883a Mon Sep 17 00:00:00 2001 From: Severin Ibarluzea Date: Thu, 5 Sep 2024 10:48:03 -0700 Subject: [PATCH] remove legacy constraint props (#43) --- lib/index.ts | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/lib/index.ts b/lib/index.ts index 52ca4e8..fb0e06a 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -199,25 +199,6 @@ export const schematicPathProps = z.object({ }) export type SchematicPathProps = z.input -export const constraintProps = z.union([ - z.object({ - type: z.literal("xdist"), - dist: distance, - left: z.string(), - right: z.string(), - }), - z.object({ - type: z.literal("ydist"), - dist: distance, - top: z.string(), - bottom: z.string(), - }), -]) -export type ConstraintProps = z.input - -export const constrainedLayoutProps = z.object({}) -export type ConstrainedLayoutProps = z.input - export const footprintProps = z.object({}) export type FootprintProps = z.input