@tscircuit/props 0.0.498 → 0.0.500
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 +1017 -1
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/lib/common/cadModel.ts +2 -0
- package/lib/components/group.ts +13 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -84,7 +84,8 @@ var cadModelBase = z6.object({
|
|
|
84
84
|
modelBoardNormalDirection: cadModelAxisDirection.optional(),
|
|
85
85
|
pcbRotationOffset: z6.number().optional(),
|
|
86
86
|
zOffsetFromSurface: distance.optional(),
|
|
87
|
-
showAsTranslucentModel: z6.boolean().optional()
|
|
87
|
+
showAsTranslucentModel: z6.boolean().optional(),
|
|
88
|
+
stepUrl: url.optional()
|
|
88
89
|
});
|
|
89
90
|
expectTypesMatch(true);
|
|
90
91
|
var cadModelStl = cadModelBase.extend({
|
|
@@ -16068,7 +16069,10 @@ var ninePointAnchor = z23.enum([
|
|
|
16068
16069
|
import { z as z37 } from "zod";
|
|
16069
16070
|
|
|
16070
16071
|
// lib/components/group.ts
|
|
16071
|
-
import {
|
|
16072
|
+
import {
|
|
16073
|
+
length as length3,
|
|
16074
|
+
distance as distance11
|
|
16075
|
+
} from "circuit-json";
|
|
16072
16076
|
import { z as z36 } from "zod";
|
|
16073
16077
|
|
|
16074
16078
|
// lib/manual-edits/manual-edit-events/base_manual_edit_event.ts
|