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/{agentPerformanceReport-2CVLWA6O.mjs → agentPerformanceReport-A4FSEAJN.mjs} +12 -15
- package/dist/agentPerformanceReport-A4FSEAJN.mjs.map +1 -0
- package/dist/index.js +11 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist-react/{agentPerformanceReport-NOYTAUHK.mjs → agentPerformanceReport-VRYLITMY.mjs} +12 -15
- package/dist-react/agentPerformanceReport-VRYLITMY.mjs.map +1 -0
- package/dist-react/index.js +11 -14
- package/dist-react/index.js.map +1 -1
- package/dist-react/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/agentPerformanceReport-2CVLWA6O.mjs.map +0 -1
- package/dist-react/agentPerformanceReport-NOYTAUHK.mjs.map +0 -1
|
@@ -10626,7 +10626,7 @@ function AgentPerformanceReportContent() {
|
|
|
10626
10626
|
{
|
|
10627
10627
|
columns,
|
|
10628
10628
|
data: rows,
|
|
10629
|
-
layoutMode: "
|
|
10629
|
+
layoutMode: "semantic",
|
|
10630
10630
|
enableTopToolbar: false,
|
|
10631
10631
|
enableColumnActions: false,
|
|
10632
10632
|
enableColumnFilters: false,
|
|
@@ -10644,25 +10644,22 @@ function AgentPerformanceReportContent() {
|
|
|
10644
10644
|
muiTableHeadCellProps: {
|
|
10645
10645
|
sx: __spreadProps(__spreadValues({}, headCellSx), {
|
|
10646
10646
|
fontFamily: FONT2,
|
|
10647
|
-
px: "12px",
|
|
10648
|
-
py: "8px",
|
|
10649
|
-
display: "flex",
|
|
10650
|
-
alignItems: "center",
|
|
10651
10647
|
textAlign: "left",
|
|
10652
|
-
|
|
10653
|
-
|
|
10654
|
-
|
|
10648
|
+
verticalAlign: "middle",
|
|
10649
|
+
// Semantic (native <table>) layout: the browser computes one set of
|
|
10650
|
+
// column widths for header + body together, so columns always align
|
|
10651
|
+
// regardless of the host's MUI version. `&&` keeps our padding winning
|
|
10652
|
+
// over MUI's default cell padding under MUI v6 hosts (no CSS @layer).
|
|
10653
|
+
"&&": { px: "12px", py: "8px", boxSizing: "border-box" },
|
|
10654
|
+
"& .Mui-TableHeadCell-Content": { justifyContent: "flex-start" }
|
|
10655
10655
|
})
|
|
10656
10656
|
},
|
|
10657
10657
|
muiTableBodyCellProps: {
|
|
10658
10658
|
sx: __spreadProps(__spreadValues({}, bodyCellSx), {
|
|
10659
10659
|
fontFamily: FONT2,
|
|
10660
|
-
|
|
10661
|
-
|
|
10662
|
-
|
|
10663
|
-
alignItems: "center",
|
|
10664
|
-
justifyContent: "flex-start",
|
|
10665
|
-
textAlign: "left"
|
|
10660
|
+
textAlign: "left",
|
|
10661
|
+
verticalAlign: "middle",
|
|
10662
|
+
"&&": { px: "12px", py: "8px", boxSizing: "border-box" }
|
|
10666
10663
|
})
|
|
10667
10664
|
},
|
|
10668
10665
|
muiTableBodyRowProps: ({ row }) => ({
|
|
@@ -10736,4 +10733,4 @@ export {
|
|
|
10736
10733
|
* @author Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)
|
|
10737
10734
|
*)
|
|
10738
10735
|
*/
|
|
10739
|
-
//# sourceMappingURL=agentPerformanceReport-
|
|
10736
|
+
//# sourceMappingURL=agentPerformanceReport-A4FSEAJN.mjs.map
|