ahs-cti 0.0.25 → 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,
@@ -28856,25 +28856,22 @@ function AgentPerformanceReportContent() {
28856
28856
  muiTableHeadCellProps: {
28857
28857
  sx: __spreadProps(__spreadValues({}, headCellSx2), {
28858
28858
  fontFamily: FONT6,
28859
- px: "12px",
28860
- py: "8px",
28861
- display: "flex",
28862
- alignItems: "center",
28863
28859
  textAlign: "left",
28864
- "& .Mui-TableHeadCell-Content": { m: 0, p: 0, width: "100%", justifyContent: "flex-start" },
28865
- "& .Mui-TableHeadCell-Content-Wrapper": { m: 0, p: 0 },
28866
- "& .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" }
28867
28867
  })
28868
28868
  },
28869
28869
  muiTableBodyCellProps: {
28870
28870
  sx: __spreadProps(__spreadValues({}, bodyCellSx2), {
28871
28871
  fontFamily: FONT6,
28872
- px: "12px",
28873
- py: "8px",
28874
- display: "flex",
28875
- alignItems: "center",
28876
- justifyContent: "flex-start",
28877
- textAlign: "left"
28872
+ textAlign: "left",
28873
+ verticalAlign: "middle",
28874
+ "&&": { px: "12px", py: "8px", boxSizing: "border-box" }
28878
28875
  })
28879
28876
  },
28880
28877
  muiTableBodyRowProps: ({ row }) => ({