@tscircuit/props 0.0.278 → 0.0.279

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
@@ -451,6 +451,34 @@ export interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
451
451
  pcbFlexColumn?: boolean;
452
452
  pcbGap?: number | string;
453
453
  pcbPack?: boolean;
454
+
455
+ schGrid?: boolean;
456
+ schGridCols?: number | string;
457
+ schGridRows?: number | string;
458
+ schGridTemplateRows?: string;
459
+ schGridTemplateColumns?: string;
460
+ schGridTemplate?: string;
461
+ schGridGap?: number | string;
462
+ schGridRowGap?: number | string;
463
+ schGridColumnGap?: number | string;
464
+
465
+ schFlex?: boolean | string;
466
+ schFlexGap?: number | string;
467
+ schFlexDirection?: "row" | "column";
468
+ schAlignItems?: "start" | "center" | "end" | "stretch";
469
+ schJustifyContent?:
470
+ | "start"
471
+ | "center"
472
+ | "end"
473
+ | "stretch"
474
+ | "space-between"
475
+ | "space-around"
476
+ | "space-evenly";
477
+ schFlexRow?: boolean;
478
+ schFlexColumn?: boolean;
479
+ schGap?: number | string;
480
+ schPack?: boolean;
481
+ schMatchAdapt?: boolean;
454
482
  }
455
483
  ```
456
484