@clyrex-digital/clyrex-controls-dev 0.8.1-dev.20260829044749 → 0.8.1-dev.20260829085511

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.
@@ -827,6 +827,7 @@ var gridStyle = {
827
827
  display: "grid",
828
828
  gridTemplateColumns: "repeat(2, 1fr)",
829
829
  gap: "2px",
830
+ maxWidth: "360px",
830
831
  borderRadius: "0.375rem",
831
832
  overflow: "hidden",
832
833
  margin: "0.5rem 0"
@@ -834,7 +835,8 @@ var gridStyle = {
834
835
  var cellStyle = {
835
836
  position: "relative",
836
837
  display: "block",
837
- aspectRatio: "1",
838
+ // Landscape cells keep the grid short when a run wraps onto 2+ rows.
839
+ aspectRatio: "3 / 2",
838
840
  width: "100%",
839
841
  padding: 0,
840
842
  border: "none",
@@ -829,6 +829,7 @@ var gridStyle = {
829
829
  display: "grid",
830
830
  gridTemplateColumns: "repeat(2, 1fr)",
831
831
  gap: "2px",
832
+ maxWidth: "360px",
832
833
  borderRadius: "0.375rem",
833
834
  overflow: "hidden",
834
835
  margin: "0.5rem 0"
@@ -836,7 +837,8 @@ var gridStyle = {
836
837
  var cellStyle = {
837
838
  position: "relative",
838
839
  display: "block",
839
- aspectRatio: "1",
840
+ // Landscape cells keep the grid short when a run wraps onto 2+ rows.
841
+ aspectRatio: "3 / 2",
840
842
  width: "100%",
841
843
  padding: 0,
842
844
  border: "none",
package/dist/index.d.mts CHANGED
@@ -42,6 +42,7 @@ declare const ViewControlTypes: {
42
42
  booleanView: string;
43
43
  text: string;
44
44
  commentRenderer: string;
45
+ avatar: string;
45
46
  };
46
47
 
47
48
  declare const InputControl: any;
package/dist/index.d.ts CHANGED
@@ -42,6 +42,7 @@ declare const ViewControlTypes: {
42
42
  booleanView: string;
43
43
  text: string;
44
44
  commentRenderer: string;
45
+ avatar: string;
45
46
  };
46
47
 
47
48
  declare const InputControl: any;