@tscircuit/props 0.0.443 → 0.0.445

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.js CHANGED
@@ -232,6 +232,7 @@ expectTypesMatch(true);
232
232
  var commonComponentProps = commonLayoutProps.merge(supplierProps).extend({
233
233
  key: z10.any().optional(),
234
234
  name: z10.string(),
235
+ displayName: z10.string().optional(),
235
236
  cadModel: cadModelProp.optional(),
236
237
  children: z10.any().optional(),
237
238
  symbolName: z10.string().optional(),
@@ -575,6 +576,7 @@ var autorouterConfig = z30.object({
575
576
  serverCacheEnabled: z30.boolean().optional(),
576
577
  cache: z30.custom((v) => true).optional(),
577
578
  traceClearance: length2.optional(),
579
+ availableJumperTypes: z30.array(z30.enum(["1206x4", "0603"])).optional(),
578
580
  groupMode: z30.enum(["sequential_trace", "subcircuit", "sequential-trace"]).optional(),
579
581
  algorithmFn: z30.custom(
580
582
  (v) => typeof v === "function" || v === void 0