@tscircuit/props 0.0.263 → 0.0.264
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 +302 -334
- package/dist/index.d.ts +363 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +13 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -358,6 +358,9 @@ var layoutConfig = z23.object({
|
|
|
358
358
|
flexRow: z23.boolean().optional(),
|
|
359
359
|
flexColumn: z23.boolean().optional(),
|
|
360
360
|
gap: z23.number().or(z23.string()).optional(),
|
|
361
|
+
pack: z23.boolean().optional().describe("Pack the contents of this group using a packing strategy"),
|
|
362
|
+
packOrderStrategy: z23.enum(["largest_to_smallest"]).optional(),
|
|
363
|
+
packPlacementStrategy: z23.enum(["shortest_connection_along_outline"]).optional(),
|
|
361
364
|
padding: length.optional(),
|
|
362
365
|
paddingLeft: length.optional(),
|
|
363
366
|
paddingRight: length.optional(),
|