@tscircuit/props 0.0.589 → 0.0.590

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 CHANGED
@@ -1547,6 +1547,7 @@ export interface SchematicBoxProps {
1547
1547
  schPinArrangement?: SchematicPinArrangement;
1548
1548
  schX?: Distance;
1549
1549
  schY?: Distance;
1550
+ schSectionName?: string;
1550
1551
  schSheetName?: string;
1551
1552
  width?: Distance;
1552
1553
  height?: Distance;
package/dist/index.d.ts CHANGED
@@ -188344,6 +188344,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
188344
188344
  }>>;
188345
188345
  schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
188346
188346
  schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
188347
+ schSectionName: z.ZodOptional<z.ZodString>;
188347
188348
  schSheetName: z.ZodOptional<z.ZodString>;
188348
188349
  width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
188349
188350
  height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -188368,6 +188369,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
188368
188369
  name?: string | undefined;
188369
188370
  schX?: number | undefined;
188370
188371
  schY?: number | undefined;
188372
+ schSectionName?: string | undefined;
188371
188373
  schSheetName?: string | undefined;
188372
188374
  padding?: number | undefined;
188373
188375
  paddingLeft?: number | undefined;
@@ -188412,6 +188414,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
188412
188414
  name?: string | undefined;
188413
188415
  schX?: string | number | undefined;
188414
188416
  schY?: string | number | undefined;
188417
+ schSectionName?: string | undefined;
188415
188418
  schSheetName?: string | undefined;
188416
188419
  padding?: string | number | undefined;
188417
188420
  paddingLeft?: string | number | undefined;
@@ -188462,6 +188465,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
188462
188465
  name?: string | undefined;
188463
188466
  schX?: number | undefined;
188464
188467
  schY?: number | undefined;
188468
+ schSectionName?: string | undefined;
188465
188469
  schSheetName?: string | undefined;
188466
188470
  padding?: number | undefined;
188467
188471
  paddingLeft?: number | undefined;
@@ -188506,6 +188510,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
188506
188510
  name?: string | undefined;
188507
188511
  schX?: string | number | undefined;
188508
188512
  schY?: string | number | undefined;
188513
+ schSectionName?: string | undefined;
188509
188514
  schSheetName?: string | undefined;
188510
188515
  padding?: string | number | undefined;
188511
188516
  paddingLeft?: string | number | undefined;
@@ -188556,6 +188561,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
188556
188561
  name?: string | undefined;
188557
188562
  schX?: number | undefined;
188558
188563
  schY?: number | undefined;
188564
+ schSectionName?: string | undefined;
188559
188565
  schSheetName?: string | undefined;
188560
188566
  padding?: number | undefined;
188561
188567
  paddingLeft?: number | undefined;
@@ -188600,6 +188606,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
188600
188606
  name?: string | undefined;
188601
188607
  schX?: string | number | undefined;
188602
188608
  schY?: string | number | undefined;
188609
+ schSectionName?: string | undefined;
188603
188610
  schSheetName?: string | undefined;
188604
188611
  padding?: string | number | undefined;
188605
188612
  paddingLeft?: string | number | undefined;
@@ -188649,6 +188656,7 @@ interface SchematicBoxProps {
188649
188656
  schPinArrangement?: SchematicPinArrangement;
188650
188657
  schX?: Distance;
188651
188658
  schY?: Distance;
188659
+ schSectionName?: string;
188652
188660
  schSheetName?: string;
188653
188661
  width?: Distance;
188654
188662
  height?: Distance;
package/dist/index.js CHANGED
@@ -18162,6 +18162,7 @@ var schematicBoxProps = z112.object({
18162
18162
  schPinArrangement: schematicPinArrangement.optional(),
18163
18163
  schX: distance31.optional(),
18164
18164
  schY: distance31.optional(),
18165
+ schSectionName: z112.string().optional(),
18165
18166
  schSheetName: z112.string().optional(),
18166
18167
  width: distance31.optional(),
18167
18168
  height: distance31.optional(),