@tscircuit/props 0.0.278 → 0.0.280

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
@@ -79,6 +79,10 @@ const myResistor: ResistorProps = {
79
79
  };
80
80
  ```
81
81
 
82
+ The `footprint` prop uses a string union so editors can provide basic
83
+ autocomplete for common footprints like `0603`, `0402`, `tssop`, and
84
+ others while still allowing any custom string.
85
+
82
86
  <!-- USAGE_EXAMPLES_END -->
83
87
 
84
88
  <!-- INTERFACE_DEFINITIONS_START -->
@@ -451,6 +455,34 @@ export interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
451
455
  pcbFlexColumn?: boolean;
452
456
  pcbGap?: number | string;
453
457
  pcbPack?: boolean;
458
+
459
+ schGrid?: boolean;
460
+ schGridCols?: number | string;
461
+ schGridRows?: number | string;
462
+ schGridTemplateRows?: string;
463
+ schGridTemplateColumns?: string;
464
+ schGridTemplate?: string;
465
+ schGridGap?: number | string;
466
+ schGridRowGap?: number | string;
467
+ schGridColumnGap?: number | string;
468
+
469
+ schFlex?: boolean | string;
470
+ schFlexGap?: number | string;
471
+ schFlexDirection?: "row" | "column";
472
+ schAlignItems?: "start" | "center" | "end" | "stretch";
473
+ schJustifyContent?:
474
+ | "start"
475
+ | "center"
476
+ | "end"
477
+ | "stretch"
478
+ | "space-between"
479
+ | "space-around"
480
+ | "space-evenly";
481
+ schFlexRow?: boolean;
482
+ schFlexColumn?: boolean;
483
+ schGap?: number | string;
484
+ schPack?: boolean;
485
+ schMatchAdapt?: boolean;
454
486
  }
455
487
  ```
456
488