ahs-cti 0.0.26 → 0.0.27

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.
@@ -28838,7 +28838,7 @@ function AgentPerformanceReportContent() {
28838
28838
  {
28839
28839
  columns,
28840
28840
  data: rows,
28841
- layoutMode: "grid",
28841
+ layoutMode: "semantic",
28842
28842
  enableTopToolbar: false,
28843
28843
  enableColumnActions: false,
28844
28844
  enableColumnFilters: false,
@@ -28857,21 +28857,21 @@ function AgentPerformanceReportContent() {
28857
28857
  sx: __spreadProps(__spreadValues({}, headCellSx2), {
28858
28858
  fontFamily: FONT6,
28859
28859
  textAlign: "left",
28860
- // `&&` doubles specificity so these win over MUI's default cell
28861
- // padding/box-sizing even under MUI v6 hosts (which don't wrap
28862
- // base styles in a CSS @layer). Keeps header/body columns aligned
28863
- // in the published SDK regardless of the host's MUI version.
28864
- "&&": { px: "12px", py: "8px", display: "flex", alignItems: "center", boxSizing: "border-box" },
28865
- "& .Mui-TableHeadCell-Content": { m: 0, p: 0, width: "100%", justifyContent: "flex-start" },
28866
- "& .Mui-TableHeadCell-Content-Wrapper": { m: 0, p: 0 },
28867
- "& .Mui-TableHeadCell-Content-Labels": { m: 0, p: 0 }
28860
+ verticalAlign: "middle",
28861
+ // Semantic (native <table>) layout: the browser computes one set of
28862
+ // column widths for header + body together, so columns always align
28863
+ // regardless of the host's MUI version. `&&` keeps our padding winning
28864
+ // over MUI's default cell padding under MUI v6 hosts (no CSS @layer).
28865
+ "&&": { px: "12px", py: "8px", boxSizing: "border-box" },
28866
+ "& .Mui-TableHeadCell-Content": { justifyContent: "flex-start" }
28868
28867
  })
28869
28868
  },
28870
28869
  muiTableBodyCellProps: {
28871
28870
  sx: __spreadProps(__spreadValues({}, bodyCellSx2), {
28872
28871
  fontFamily: FONT6,
28873
28872
  textAlign: "left",
28874
- "&&": { px: "12px", py: "8px", display: "flex", alignItems: "center", justifyContent: "flex-start", boxSizing: "border-box" }
28873
+ verticalAlign: "middle",
28874
+ "&&": { px: "12px", py: "8px", boxSizing: "border-box" }
28875
28875
  })
28876
28876
  },
28877
28877
  muiTableBodyRowProps: ({ row }) => ({