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.
package/dist/index.js CHANGED
@@ -132906,7 +132906,7 @@ function AgentPerformanceReportContent() {
132906
132906
  {
132907
132907
  columns,
132908
132908
  data: rows,
132909
- layoutMode: "grid",
132909
+ layoutMode: "semantic",
132910
132910
  enableTopToolbar: false,
132911
132911
  enableColumnActions: false,
132912
132912
  enableColumnFilters: false,
@@ -132924,25 +132924,22 @@ function AgentPerformanceReportContent() {
132924
132924
  muiTableHeadCellProps: {
132925
132925
  sx: __spreadProps(__spreadValues({}, headCellSx2), {
132926
132926
  fontFamily: FONT6,
132927
- px: "12px",
132928
- py: "8px",
132929
- display: "flex",
132930
- alignItems: "center",
132931
132927
  textAlign: "left",
132932
- "& .Mui-TableHeadCell-Content": { m: 0, p: 0, width: "100%", justifyContent: "flex-start" },
132933
- "& .Mui-TableHeadCell-Content-Wrapper": { m: 0, p: 0 },
132934
- "& .Mui-TableHeadCell-Content-Labels": { m: 0, p: 0 }
132928
+ verticalAlign: "middle",
132929
+ // Semantic (native <table>) layout: the browser computes one set of
132930
+ // column widths for header + body together, so columns always align
132931
+ // regardless of the host's MUI version. `&&` keeps our padding winning
132932
+ // over MUI's default cell padding under MUI v6 hosts (no CSS @layer).
132933
+ "&&": { px: "12px", py: "8px", boxSizing: "border-box" },
132934
+ "& .Mui-TableHeadCell-Content": { justifyContent: "flex-start" }
132935
132935
  })
132936
132936
  },
132937
132937
  muiTableBodyCellProps: {
132938
132938
  sx: __spreadProps(__spreadValues({}, bodyCellSx2), {
132939
132939
  fontFamily: FONT6,
132940
- px: "12px",
132941
- py: "8px",
132942
- display: "flex",
132943
- alignItems: "center",
132944
- justifyContent: "flex-start",
132945
- textAlign: "left"
132940
+ textAlign: "left",
132941
+ verticalAlign: "middle",
132942
+ "&&": { px: "12px", py: "8px", boxSizing: "border-box" }
132946
132943
  })
132947
132944
  },
132948
132945
  muiTableBodyRowProps: ({ row }) => ({