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
package/dist/index.js
CHANGED
|
@@ -132906,7 +132906,7 @@ function AgentPerformanceReportContent() {
|
|
|
132906
132906
|
{
|
|
132907
132907
|
columns,
|
|
132908
132908
|
data: rows,
|
|
132909
|
-
layoutMode: "
|
|
132909
|
+
layoutMode: "semantic",
|
|
132910
132910
|
enableTopToolbar: false,
|
|
132911
132911
|
enableColumnActions: false,
|
|
132912
132912
|
enableColumnFilters: false,
|
|
@@ -132924,25 +132924,22 @@ function AgentPerformanceReportContent() {
|
|
|
132924
132924
|
muiTableHeadCellProps: {
|
|
132925
132925
|
sx: __spreadProps(__spreadValues({}, headCellSx2), {
|
|
132926
132926
|
fontFamily: FONT6,
|
|
132927
|
-
px: "12px",
|
|
132928
|
-
py: "8px",
|
|
132929
|
-
display: "flex",
|
|
132930
|
-
alignItems: "center",
|
|
132931
132927
|
textAlign: "left",
|
|
132932
|
-
|
|
132933
|
-
|
|
132934
|
-
|
|
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" }
|
|
132935
132935
|
})
|
|
132936
132936
|
},
|
|
132937
132937
|
muiTableBodyCellProps: {
|
|
132938
132938
|
sx: __spreadProps(__spreadValues({}, bodyCellSx2), {
|
|
132939
132939
|
fontFamily: FONT6,
|
|
132940
|
-
|
|
132941
|
-
|
|
132942
|
-
|
|
132943
|
-
alignItems: "center",
|
|
132944
|
-
justifyContent: "flex-start",
|
|
132945
|
-
textAlign: "left"
|
|
132940
|
+
textAlign: "left",
|
|
132941
|
+
verticalAlign: "middle",
|
|
132942
|
+
"&&": { px: "12px", py: "8px", boxSizing: "border-box" }
|
|
132946
132943
|
})
|
|
132947
132944
|
},
|
|
132948
132945
|
muiTableBodyRowProps: ({ row }) => ({
|