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.
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,
@@ -132925,21 +132925,21 @@ function AgentPerformanceReportContent() {
132925
132925
  sx: __spreadProps(__spreadValues({}, headCellSx2), {
132926
132926
  fontFamily: FONT6,
132927
132927
  textAlign: "left",
132928
- // `&&` doubles specificity so these win over MUI's default cell
132929
- // padding/box-sizing even under MUI v6 hosts (which don't wrap
132930
- // base styles in a CSS @layer). Keeps header/body columns aligned
132931
- // in the published SDK regardless of the host's MUI version.
132932
- "&&": { px: "12px", py: "8px", display: "flex", alignItems: "center", boxSizing: "border-box" },
132933
- "& .Mui-TableHeadCell-Content": { m: 0, p: 0, width: "100%", justifyContent: "flex-start" },
132934
- "& .Mui-TableHeadCell-Content-Wrapper": { m: 0, p: 0 },
132935
- "& .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" }
132936
132935
  })
132937
132936
  },
132938
132937
  muiTableBodyCellProps: {
132939
132938
  sx: __spreadProps(__spreadValues({}, bodyCellSx2), {
132940
132939
  fontFamily: FONT6,
132941
132940
  textAlign: "left",
132942
- "&&": { px: "12px", py: "8px", display: "flex", alignItems: "center", justifyContent: "flex-start", boxSizing: "border-box" }
132941
+ verticalAlign: "middle",
132942
+ "&&": { px: "12px", py: "8px", boxSizing: "border-box" }
132943
132943
  })
132944
132944
  },
132945
132945
  muiTableBodyRowProps: ({ row }) => ({