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.
@@ -10635,6 +10635,8 @@ function AgentPerformanceReportContent() {
10635
10635
  enableDensityToggle: false,
10636
10636
  enableFullScreenToggle: false,
10637
10637
  enableSorting: true,
10638
+ enableSortingRemoval: false,
10639
+ enableMultiSort: false,
10638
10640
  manualPagination: true,
10639
10641
  rowCount: total,
10640
10642
  onPaginationChange: setPagination,
@@ -10642,11 +10644,12 @@ function AgentPerformanceReportContent() {
10642
10644
  muiTableHeadCellProps: {
10643
10645
  sx: __spreadProps(__spreadValues({}, headCellSx), {
10644
10646
  fontFamily: FONT2,
10645
- px: "12px",
10646
- py: "8px",
10647
- display: "flex",
10648
- alignItems: "center",
10649
10647
  textAlign: "left",
10648
+ // `&&` doubles specificity so these win over MUI's default cell
10649
+ // padding/box-sizing even under MUI v6 hosts (which don't wrap
10650
+ // base styles in a CSS @layer). Keeps header/body columns aligned
10651
+ // in the published SDK regardless of the host's MUI version.
10652
+ "&&": { px: "12px", py: "8px", display: "flex", alignItems: "center", boxSizing: "border-box" },
10650
10653
  "& .Mui-TableHeadCell-Content": { m: 0, p: 0, width: "100%", justifyContent: "flex-start" },
10651
10654
  "& .Mui-TableHeadCell-Content-Wrapper": { m: 0, p: 0 },
10652
10655
  "& .Mui-TableHeadCell-Content-Labels": { m: 0, p: 0 }
@@ -10655,12 +10658,8 @@ function AgentPerformanceReportContent() {
10655
10658
  muiTableBodyCellProps: {
10656
10659
  sx: __spreadProps(__spreadValues({}, bodyCellSx), {
10657
10660
  fontFamily: FONT2,
10658
- px: "12px",
10659
- py: "8px",
10660
- display: "flex",
10661
- alignItems: "center",
10662
- justifyContent: "flex-start",
10663
- textAlign: "left"
10661
+ textAlign: "left",
10662
+ "&&": { px: "12px", py: "8px", display: "flex", alignItems: "center", justifyContent: "flex-start", boxSizing: "border-box" }
10664
10663
  })
10665
10664
  },
10666
10665
  muiTableBodyRowProps: ({ row }) => ({
@@ -10734,4 +10733,4 @@ export {
10734
10733
  * @author Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)
10735
10734
  *)
10736
10735
  */
10737
- //# sourceMappingURL=agentPerformanceReport-P7J5XJTA.mjs.map
10736
+ //# sourceMappingURL=agentPerformanceReport-NLEW3H66.mjs.map