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