@tscircuit/props 0.0.445 → 0.0.447
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 +120 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +2 -0
- package/lib/components/copper-pour.ts +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -233,6 +233,7 @@ var commonComponentProps = commonLayoutProps.merge(supplierProps).extend({
|
|
|
233
233
|
key: z10.any().optional(),
|
|
234
234
|
name: z10.string(),
|
|
235
235
|
displayName: z10.string().optional(),
|
|
236
|
+
datasheetUrl: z10.string().optional(),
|
|
236
237
|
cadModel: cadModelProp.optional(),
|
|
237
238
|
children: z10.any().optional(),
|
|
238
239
|
symbolName: z10.string().optional(),
|
|
@@ -1955,6 +1956,7 @@ var copperPourProps = z84.object({
|
|
|
1955
1956
|
clearance: distance.optional(),
|
|
1956
1957
|
boardEdgeMargin: distance.optional(),
|
|
1957
1958
|
cutoutMargin: distance.optional(),
|
|
1959
|
+
outline: z84.array(point).optional(),
|
|
1958
1960
|
coveredWithSolderMask: z84.boolean().optional().default(true)
|
|
1959
1961
|
});
|
|
1960
1962
|
expectTypesMatch(true);
|