ahs-cti 0.0.24 → 0.0.26

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
@@ -132915,6 +132915,8 @@ function AgentPerformanceReportContent() {
132915
132915
  enableDensityToggle: false,
132916
132916
  enableFullScreenToggle: false,
132917
132917
  enableSorting: true,
132918
+ enableSortingRemoval: false,
132919
+ enableMultiSort: false,
132918
132920
  manualPagination: true,
132919
132921
  rowCount: total,
132920
132922
  onPaginationChange: setPagination,
@@ -132922,11 +132924,12 @@ function AgentPerformanceReportContent() {
132922
132924
  muiTableHeadCellProps: {
132923
132925
  sx: __spreadProps(__spreadValues({}, headCellSx2), {
132924
132926
  fontFamily: FONT6,
132925
- px: "12px",
132926
- py: "8px",
132927
- display: "flex",
132928
- alignItems: "center",
132929
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" },
132930
132933
  "& .Mui-TableHeadCell-Content": { m: 0, p: 0, width: "100%", justifyContent: "flex-start" },
132931
132934
  "& .Mui-TableHeadCell-Content-Wrapper": { m: 0, p: 0 },
132932
132935
  "& .Mui-TableHeadCell-Content-Labels": { m: 0, p: 0 }
@@ -132935,12 +132938,8 @@ function AgentPerformanceReportContent() {
132935
132938
  muiTableBodyCellProps: {
132936
132939
  sx: __spreadProps(__spreadValues({}, bodyCellSx2), {
132937
132940
  fontFamily: FONT6,
132938
- px: "12px",
132939
- py: "8px",
132940
- display: "flex",
132941
- alignItems: "center",
132942
- justifyContent: "flex-start",
132943
- textAlign: "left"
132941
+ textAlign: "left",
132942
+ "&&": { px: "12px", py: "8px", display: "flex", alignItems: "center", justifyContent: "flex-start", boxSizing: "border-box" }
132944
132943
  })
132945
132944
  },
132946
132945
  muiTableBodyRowProps: ({ row }) => ({