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-react/index.js
CHANGED
|
@@ -28838,7 +28838,7 @@ function AgentPerformanceReportContent() {
|
|
|
28838
28838
|
{
|
|
28839
28839
|
columns,
|
|
28840
28840
|
data: rows,
|
|
28841
|
-
layoutMode: "
|
|
28841
|
+
layoutMode: "semantic",
|
|
28842
28842
|
enableTopToolbar: false,
|
|
28843
28843
|
enableColumnActions: false,
|
|
28844
28844
|
enableColumnFilters: false,
|
|
@@ -28856,25 +28856,22 @@ 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",
|
|
28864
|
-
|
|
28865
|
-
|
|
28866
|
-
|
|
28860
|
+
verticalAlign: "middle",
|
|
28861
|
+
// Semantic (native <table>) layout: the browser computes one set of
|
|
28862
|
+
// column widths for header + body together, so columns always align
|
|
28863
|
+
// regardless of the host's MUI version. `&&` keeps our padding winning
|
|
28864
|
+
// over MUI's default cell padding under MUI v6 hosts (no CSS @layer).
|
|
28865
|
+
"&&": { px: "12px", py: "8px", boxSizing: "border-box" },
|
|
28866
|
+
"& .Mui-TableHeadCell-Content": { justifyContent: "flex-start" }
|
|
28867
28867
|
})
|
|
28868
28868
|
},
|
|
28869
28869
|
muiTableBodyCellProps: {
|
|
28870
28870
|
sx: __spreadProps(__spreadValues({}, bodyCellSx2), {
|
|
28871
28871
|
fontFamily: FONT6,
|
|
28872
|
-
|
|
28873
|
-
|
|
28874
|
-
|
|
28875
|
-
alignItems: "center",
|
|
28876
|
-
justifyContent: "flex-start",
|
|
28877
|
-
textAlign: "left"
|
|
28872
|
+
textAlign: "left",
|
|
28873
|
+
verticalAlign: "middle",
|
|
28874
|
+
"&&": { px: "12px", py: "8px", boxSizing: "border-box" }
|
|
28878
28875
|
})
|
|
28879
28876
|
},
|
|
28880
28877
|
muiTableBodyRowProps: ({ row }) => ({
|