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.
- package/dist/{agentPerformanceReport-P7J5XJTA.mjs → agentPerformanceReport-NLEW3H66.mjs} +10 -11
- package/dist/agentPerformanceReport-NLEW3H66.mjs.map +1 -0
- package/dist/index.js +9 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist-react/{agentPerformanceReport-NZI4MXJM.mjs → agentPerformanceReport-W6UGYBNO.mjs} +10 -11
- package/dist-react/agentPerformanceReport-W6UGYBNO.mjs.map +1 -0
- package/dist-react/index.js +9 -10
- package/dist-react/index.js.map +1 -1
- package/dist-react/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/agentPerformanceReport-P7J5XJTA.mjs.map +0 -1
- package/dist-react/agentPerformanceReport-NZI4MXJM.mjs.map +0 -1
package/dist-react/index.js
CHANGED
|
@@ -28847,6 +28847,8 @@ function AgentPerformanceReportContent() {
|
|
|
28847
28847
|
enableDensityToggle: false,
|
|
28848
28848
|
enableFullScreenToggle: false,
|
|
28849
28849
|
enableSorting: true,
|
|
28850
|
+
enableSortingRemoval: false,
|
|
28851
|
+
enableMultiSort: false,
|
|
28850
28852
|
manualPagination: true,
|
|
28851
28853
|
rowCount: total,
|
|
28852
28854
|
onPaginationChange: setPagination,
|
|
@@ -28854,11 +28856,12 @@ function AgentPerformanceReportContent() {
|
|
|
28854
28856
|
muiTableHeadCellProps: {
|
|
28855
28857
|
sx: __spreadProps(__spreadValues({}, headCellSx2), {
|
|
28856
28858
|
fontFamily: FONT6,
|
|
28857
|
-
px: "12px",
|
|
28858
|
-
py: "8px",
|
|
28859
|
-
display: "flex",
|
|
28860
|
-
alignItems: "center",
|
|
28861
28859
|
textAlign: "left",
|
|
28860
|
+
// `&&` doubles specificity so these win over MUI's default cell
|
|
28861
|
+
// padding/box-sizing even under MUI v6 hosts (which don't wrap
|
|
28862
|
+
// base styles in a CSS @layer). Keeps header/body columns aligned
|
|
28863
|
+
// in the published SDK regardless of the host's MUI version.
|
|
28864
|
+
"&&": { px: "12px", py: "8px", display: "flex", alignItems: "center", boxSizing: "border-box" },
|
|
28862
28865
|
"& .Mui-TableHeadCell-Content": { m: 0, p: 0, width: "100%", justifyContent: "flex-start" },
|
|
28863
28866
|
"& .Mui-TableHeadCell-Content-Wrapper": { m: 0, p: 0 },
|
|
28864
28867
|
"& .Mui-TableHeadCell-Content-Labels": { m: 0, p: 0 }
|
|
@@ -28867,12 +28870,8 @@ function AgentPerformanceReportContent() {
|
|
|
28867
28870
|
muiTableBodyCellProps: {
|
|
28868
28871
|
sx: __spreadProps(__spreadValues({}, bodyCellSx2), {
|
|
28869
28872
|
fontFamily: FONT6,
|
|
28870
|
-
|
|
28871
|
-
py: "8px",
|
|
28872
|
-
display: "flex",
|
|
28873
|
-
alignItems: "center",
|
|
28874
|
-
justifyContent: "flex-start",
|
|
28875
|
-
textAlign: "left"
|
|
28873
|
+
textAlign: "left",
|
|
28874
|
+
"&&": { px: "12px", py: "8px", display: "flex", alignItems: "center", justifyContent: "flex-start", boxSizing: "border-box" }
|
|
28876
28875
|
})
|
|
28877
28876
|
},
|
|
28878
28877
|
muiTableBodyRowProps: ({ row }) => ({
|