@tscircuit/props 0.0.553 → 0.0.554

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 CHANGED
@@ -103385,6 +103385,8 @@ declare const portRef: z.ZodUnion<[z.ZodString, z.ZodType<{
103385
103385
  }>]>;
103386
103386
  declare const traceProps: z.ZodUnion<[z.ZodObject<{
103387
103387
  key: z.ZodOptional<z.ZodString>;
103388
+ name: z.ZodOptional<z.ZodString>;
103389
+ displayName: z.ZodOptional<z.ZodString>;
103388
103390
  thickness: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
103389
103391
  width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
103390
103392
  schematicRouteHints: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -103558,7 +103560,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
103558
103560
  })[];
103559
103561
  key?: string | undefined;
103560
103562
  thickness?: number | undefined;
103563
+ name?: string | undefined;
103561
103564
  highlightColor?: string | undefined;
103565
+ displayName?: string | undefined;
103562
103566
  width?: number | undefined;
103563
103567
  maxLength?: number | undefined;
103564
103568
  connectsTo?: string | string[] | undefined;
@@ -103598,7 +103602,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
103598
103602
  })[];
103599
103603
  key?: string | undefined;
103600
103604
  thickness?: string | number | undefined;
103605
+ name?: string | undefined;
103601
103606
  highlightColor?: string | undefined;
103607
+ displayName?: string | undefined;
103602
103608
  width?: string | number | undefined;
103603
103609
  maxLength?: string | number | undefined;
103604
103610
  connectsTo?: string | string[] | undefined;
@@ -103644,6 +103650,8 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
103644
103650
  schStroke?: string | undefined;
103645
103651
  }>, z.ZodObject<{
103646
103652
  key: z.ZodOptional<z.ZodString>;
103653
+ name: z.ZodOptional<z.ZodString>;
103654
+ displayName: z.ZodOptional<z.ZodString>;
103647
103655
  thickness: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
103648
103656
  width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
103649
103657
  schematicRouteHints: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -103825,7 +103833,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
103825
103833
  };
103826
103834
  key?: string | undefined;
103827
103835
  thickness?: number | undefined;
103836
+ name?: string | undefined;
103828
103837
  highlightColor?: string | undefined;
103838
+ displayName?: string | undefined;
103829
103839
  width?: number | undefined;
103830
103840
  maxLength?: number | undefined;
103831
103841
  connectsTo?: string | string[] | undefined;
@@ -103868,7 +103878,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
103868
103878
  };
103869
103879
  key?: string | undefined;
103870
103880
  thickness?: string | number | undefined;
103881
+ name?: string | undefined;
103871
103882
  highlightColor?: string | undefined;
103883
+ displayName?: string | undefined;
103872
103884
  width?: string | number | undefined;
103873
103885
  maxLength?: string | number | undefined;
103874
103886
  connectsTo?: string | string[] | undefined;
@@ -103914,6 +103926,8 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
103914
103926
  schStroke?: string | undefined;
103915
103927
  }>, z.ZodObject<{
103916
103928
  key: z.ZodOptional<z.ZodString>;
103929
+ name: z.ZodOptional<z.ZodString>;
103930
+ displayName: z.ZodOptional<z.ZodString>;
103917
103931
  thickness: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
103918
103932
  width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
103919
103933
  schematicRouteHints: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -104095,7 +104109,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
104095
104109
  };
104096
104110
  key?: string | undefined;
104097
104111
  thickness?: number | undefined;
104112
+ name?: string | undefined;
104098
104113
  highlightColor?: string | undefined;
104114
+ displayName?: string | undefined;
104099
104115
  width?: number | undefined;
104100
104116
  maxLength?: number | undefined;
104101
104117
  connectsTo?: string | string[] | undefined;
@@ -104138,7 +104154,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
104138
104154
  };
104139
104155
  key?: string | undefined;
104140
104156
  thickness?: string | number | undefined;
104157
+ name?: string | undefined;
104141
104158
  highlightColor?: string | undefined;
104159
+ displayName?: string | undefined;
104142
104160
  width?: string | number | undefined;
104143
104161
  maxLength?: string | number | undefined;
104144
104162
  connectsTo?: string | string[] | undefined;
package/dist/index.js CHANGED
@@ -17213,6 +17213,8 @@ var pcbPathPoint = point.extend({
17213
17213
  var pcbPath = z64.array(z64.union([pcbPathPoint, z64.string()]));
17214
17214
  var baseTraceProps = z64.object({
17215
17215
  key: z64.string().optional(),
17216
+ name: z64.string().optional(),
17217
+ displayName: z64.string().optional(),
17216
17218
  thickness: distance18.optional(),
17217
17219
  width: distance18.optional().describe("Alias for trace thickness"),
17218
17220
  schematicRouteHints: z64.array(point).optional(),