@tscircuit/props 0.0.390 → 0.0.391

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 CHANGED
@@ -425,6 +425,7 @@ export interface CopperPourProps {
425
425
  connectsTo: string;
426
426
  padMargin?: Distance;
427
427
  traceMargin?: Distance;
428
+ coveredWithSolderMask?: boolean;
428
429
  }
429
430
  ```
430
431
 
package/dist/index.d.ts CHANGED
@@ -52103,6 +52103,7 @@ interface CopperPourProps {
52103
52103
  connectsTo: string;
52104
52104
  padMargin?: Distance;
52105
52105
  traceMargin?: Distance;
52106
+ coveredWithSolderMask?: boolean;
52106
52107
  }
52107
52108
  declare const copperPourProps: z.ZodObject<{
52108
52109
  name: z.ZodOptional<z.ZodString>;
@@ -52118,9 +52119,11 @@ declare const copperPourProps: z.ZodObject<{
52118
52119
  connectsTo: z.ZodString;
52119
52120
  padMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
52120
52121
  traceMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
52122
+ coveredWithSolderMask: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
52121
52123
  }, "strip", z.ZodTypeAny, {
52122
52124
  layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
52123
52125
  connectsTo: string;
52126
+ coveredWithSolderMask: boolean;
52124
52127
  name?: string | undefined;
52125
52128
  padMargin?: number | undefined;
52126
52129
  traceMargin?: number | undefined;
@@ -52130,6 +52133,7 @@ declare const copperPourProps: z.ZodObject<{
52130
52133
  };
52131
52134
  connectsTo: string;
52132
52135
  name?: string | undefined;
52136
+ coveredWithSolderMask?: boolean | undefined;
52133
52137
  padMargin?: string | number | undefined;
52134
52138
  traceMargin?: string | number | undefined;
52135
52139
  }>;
package/dist/index.js CHANGED
@@ -1736,7 +1736,8 @@ var copperPourProps = z78.object({
1736
1736
  layer: layer_ref6,
1737
1737
  connectsTo: z78.string(),
1738
1738
  padMargin: distance.optional(),
1739
- traceMargin: distance.optional()
1739
+ traceMargin: distance.optional(),
1740
+ coveredWithSolderMask: z78.boolean().optional().default(true)
1740
1741
  });
1741
1742
  expectTypesMatch(true);
1742
1743