@tscircuit/props 0.0.587 → 0.0.589

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
+ schSheetName?: string;
1550
1551
  width?: Distance;
1551
1552
  height?: Distance;
1552
1553
  overlay?: string[];
@@ -2164,6 +2165,8 @@ export interface ProjectConfig extends Pick<
2164
2165
  | "includeBoardFiles"
2165
2166
  | "snapshotsDir"
2166
2167
  | "defaultSpiceEngine"
2168
+ | "pcbDisabled"
2169
+ | "schematicDisabled"
2167
2170
  > {}
2168
2171
  ```
2169
2172
 
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
+ schSheetName: z.ZodOptional<z.ZodString>;
188347
188348
  width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
188348
188349
  height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
188349
188350
  overlay: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -188367,6 +188368,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
188367
188368
  name?: string | undefined;
188368
188369
  schX?: number | undefined;
188369
188370
  schY?: number | undefined;
188371
+ schSheetName?: string | undefined;
188370
188372
  padding?: number | undefined;
188371
188373
  paddingLeft?: number | undefined;
188372
188374
  paddingRight?: number | undefined;
@@ -188410,6 +188412,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
188410
188412
  name?: string | undefined;
188411
188413
  schX?: string | number | undefined;
188412
188414
  schY?: string | number | undefined;
188415
+ schSheetName?: string | undefined;
188413
188416
  padding?: string | number | undefined;
188414
188417
  paddingLeft?: string | number | undefined;
188415
188418
  paddingRight?: string | number | undefined;
@@ -188459,6 +188462,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
188459
188462
  name?: string | undefined;
188460
188463
  schX?: number | undefined;
188461
188464
  schY?: number | undefined;
188465
+ schSheetName?: string | undefined;
188462
188466
  padding?: number | undefined;
188463
188467
  paddingLeft?: number | undefined;
188464
188468
  paddingRight?: number | undefined;
@@ -188502,6 +188506,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
188502
188506
  name?: string | undefined;
188503
188507
  schX?: string | number | undefined;
188504
188508
  schY?: string | number | undefined;
188509
+ schSheetName?: string | undefined;
188505
188510
  padding?: string | number | undefined;
188506
188511
  paddingLeft?: string | number | undefined;
188507
188512
  paddingRight?: string | number | undefined;
@@ -188551,6 +188556,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
188551
188556
  name?: string | undefined;
188552
188557
  schX?: number | undefined;
188553
188558
  schY?: number | undefined;
188559
+ schSheetName?: string | undefined;
188554
188560
  padding?: number | undefined;
188555
188561
  paddingLeft?: number | undefined;
188556
188562
  paddingRight?: number | undefined;
@@ -188594,6 +188600,7 @@ declare const schematicBoxProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
188594
188600
  name?: string | undefined;
188595
188601
  schX?: string | number | undefined;
188596
188602
  schY?: string | number | undefined;
188603
+ schSheetName?: string | undefined;
188597
188604
  padding?: string | number | undefined;
188598
188605
  paddingLeft?: string | number | undefined;
188599
188606
  paddingRight?: string | number | undefined;
@@ -188642,6 +188649,7 @@ interface SchematicBoxProps {
188642
188649
  schPinArrangement?: SchematicPinArrangement;
188643
188650
  schX?: Distance;
188644
188651
  schY?: Distance;
188652
+ schSheetName?: string;
188645
188653
  width?: Distance;
188646
188654
  height?: Distance;
188647
188655
  overlay?: string[];
@@ -191508,7 +191516,7 @@ interface PlatformConfig {
191508
191516
  }
191509
191517
  declare const platformConfig: z.ZodType<PlatformConfig>;
191510
191518
 
191511
- interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBaseUrl" | "version" | "url" | "printBoardInformationToSilkscreen" | "includeBoardFiles" | "snapshotsDir" | "defaultSpiceEngine"> {
191519
+ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBaseUrl" | "version" | "url" | "printBoardInformationToSilkscreen" | "includeBoardFiles" | "snapshotsDir" | "defaultSpiceEngine" | "pcbDisabled" | "schematicDisabled"> {
191512
191520
  }
191513
191521
  declare const projectConfig: z.ZodType<ProjectConfig>;
191514
191522
 
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
+ schSheetName: z112.string().optional(),
18165
18166
  width: distance31.optional(),
18166
18167
  height: distance31.optional(),
18167
18168
  overlay: z112.array(z112.string()).optional(),
@@ -18678,7 +18679,9 @@ var projectConfig = platformConfigObject.pick({
18678
18679
  printBoardInformationToSilkscreen: true,
18679
18680
  includeBoardFiles: true,
18680
18681
  snapshotsDir: true,
18681
- defaultSpiceEngine: true
18682
+ defaultSpiceEngine: true,
18683
+ pcbDisabled: true,
18684
+ schematicDisabled: true
18682
18685
  });
18683
18686
  expectTypesMatch(true);
18684
18687
  export {