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.
- package/dist/{agentPerformanceReport-2CVLWA6O.mjs → agentPerformanceReport-NLEW3H66.mjs} +8 -11
- package/dist/agentPerformanceReport-NLEW3H66.mjs.map +1 -0
- package/dist/index.js +7 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist-react/{agentPerformanceReport-NOYTAUHK.mjs → agentPerformanceReport-W6UGYBNO.mjs} +8 -11
- package/dist-react/agentPerformanceReport-W6UGYBNO.mjs.map +1 -0
- package/dist-react/index.js +7 -10
- 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
|
@@ -132924,11 +132924,12 @@ 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",
|
|
132928
|
+
// `&&` doubles specificity so these win over MUI's default cell
|
|
132929
|
+
// padding/box-sizing even under MUI v6 hosts (which don't wrap
|
|
132930
|
+
// base styles in a CSS @layer). Keeps header/body columns aligned
|
|
132931
|
+
// in the published SDK regardless of the host's MUI version.
|
|
132932
|
+
"&&": { px: "12px", py: "8px", display: "flex", alignItems: "center", boxSizing: "border-box" },
|
|
132932
132933
|
"& .Mui-TableHeadCell-Content": { m: 0, p: 0, width: "100%", justifyContent: "flex-start" },
|
|
132933
132934
|
"& .Mui-TableHeadCell-Content-Wrapper": { m: 0, p: 0 },
|
|
132934
132935
|
"& .Mui-TableHeadCell-Content-Labels": { m: 0, p: 0 }
|
|
@@ -132937,12 +132938,8 @@ function AgentPerformanceReportContent() {
|
|
|
132937
132938
|
muiTableBodyCellProps: {
|
|
132938
132939
|
sx: __spreadProps(__spreadValues({}, bodyCellSx2), {
|
|
132939
132940
|
fontFamily: FONT6,
|
|
132940
|
-
|
|
132941
|
-
py: "8px",
|
|
132942
|
-
display: "flex",
|
|
132943
|
-
alignItems: "center",
|
|
132944
|
-
justifyContent: "flex-start",
|
|
132945
|
-
textAlign: "left"
|
|
132941
|
+
textAlign: "left",
|
|
132942
|
+
"&&": { px: "12px", py: "8px", display: "flex", alignItems: "center", justifyContent: "flex-start", boxSizing: "border-box" }
|
|
132946
132943
|
})
|
|
132947
132944
|
},
|
|
132948
132945
|
muiTableBodyRowProps: ({ row }) => ({
|