@tscircuit/props 0.0.271 → 0.0.273
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 +7 -0
- package/dist/index.d.ts +305 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +8 -0
- package/lib/components/pin-header.ts +6 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -356,6 +356,8 @@ var layoutConfig = z23.object({
|
|
|
356
356
|
gridTemplateColumns: z23.string().optional(),
|
|
357
357
|
gridTemplate: z23.string().optional(),
|
|
358
358
|
gridGap: z23.number().or(z23.string()).optional(),
|
|
359
|
+
gridRowGap: z23.number().or(z23.string()).optional(),
|
|
360
|
+
gridColumnGap: z23.number().or(z23.string()).optional(),
|
|
359
361
|
flex: z23.boolean().or(z23.string()).optional(),
|
|
360
362
|
flexDirection: z23.enum(["row", "column"]).optional(),
|
|
361
363
|
alignItems: z23.enum(["start", "center", "end", "stretch"]).optional(),
|
|
@@ -439,6 +441,8 @@ var baseGroupProps = commonLayoutProps.extend({
|
|
|
439
441
|
pcbGridTemplateColumns: z23.string().optional(),
|
|
440
442
|
pcbGridTemplate: z23.string().optional(),
|
|
441
443
|
pcbGridGap: z23.number().or(z23.string()).optional(),
|
|
444
|
+
pcbGridRowGap: z23.number().or(z23.string()).optional(),
|
|
445
|
+
pcbGridColumnGap: z23.number().or(z23.string()).optional(),
|
|
442
446
|
pcbFlex: z23.boolean().or(z23.string()).optional(),
|
|
443
447
|
pcbFlexDirection: z23.enum(["row", "column"]).optional(),
|
|
444
448
|
pcbAlignItems: z23.enum(["start", "center", "end", "stretch"]).optional(),
|
|
@@ -1048,6 +1052,7 @@ var pinHeaderProps = commonComponentProps.extend({
|
|
|
1048
1052
|
showSilkscreenPinLabels: z50.boolean().optional(),
|
|
1049
1053
|
pcbPinLabels: z50.record(z50.string(), z50.string()).optional(),
|
|
1050
1054
|
doubleRow: z50.boolean().optional(),
|
|
1055
|
+
rightAngle: z50.boolean().optional(),
|
|
1051
1056
|
holeDiameter: distance14.optional(),
|
|
1052
1057
|
platedDiameter: distance14.optional(),
|
|
1053
1058
|
pinLabels: z50.array(schematicPinLabel).optional(),
|