@tscircuit/props 0.0.560 → 0.0.561
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 +4 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/lib/components/schematic-sheet.ts +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -188282,20 +188282,24 @@ type InferredSchematicSectionProps = z.input<typeof schematicSectionProps>;
|
|
|
188282
188282
|
interface SchematicSheetProps {
|
|
188283
188283
|
name: string;
|
|
188284
188284
|
displayName: string;
|
|
188285
|
+
sheetIndex?: number;
|
|
188285
188286
|
children?: any;
|
|
188286
188287
|
}
|
|
188287
188288
|
declare const schematicSheetProps: z.ZodObject<{
|
|
188288
188289
|
name: z.ZodString;
|
|
188289
188290
|
displayName: z.ZodString;
|
|
188291
|
+
sheetIndex: z.ZodOptional<z.ZodNumber>;
|
|
188290
188292
|
children: z.ZodOptional<z.ZodAny>;
|
|
188291
188293
|
}, "strip", z.ZodTypeAny, {
|
|
188292
188294
|
name: string;
|
|
188293
188295
|
displayName: string;
|
|
188294
188296
|
children?: any;
|
|
188297
|
+
sheetIndex?: number | undefined;
|
|
188295
188298
|
}, {
|
|
188296
188299
|
name: string;
|
|
188297
188300
|
displayName: string;
|
|
188298
188301
|
children?: any;
|
|
188302
|
+
sheetIndex?: number | undefined;
|
|
188299
188303
|
}>;
|
|
188300
188304
|
type InferredSchematicSheetProps = z.input<typeof schematicSheetProps>;
|
|
188301
188305
|
|
package/dist/index.js
CHANGED
|
@@ -18215,6 +18215,7 @@ import { z as z117 } from "zod";
|
|
|
18215
18215
|
var schematicSheetProps = z117.object({
|
|
18216
18216
|
name: z117.string(),
|
|
18217
18217
|
displayName: z117.string(),
|
|
18218
|
+
sheetIndex: z117.number().optional(),
|
|
18218
18219
|
children: z117.any().optional()
|
|
18219
18220
|
});
|
|
18220
18221
|
expectTypesMatch(true);
|