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.mjs
CHANGED
|
@@ -4552,7 +4552,7 @@ var SDKPages = {
|
|
|
4552
4552
|
LoginReport: withGuard(SDK_MENU_CODES.LOGIN_REPORT, () => import("./loginReport-3EV76YKP.mjs"), [SDK_PERMISSIONS.REPORTS_AGENT_LOGIN_READ, SDK_PERMISSIONS.REPORTS_AGENT_LOGIN_MANAGE]),
|
|
4553
4553
|
CdrReports: withGuard(SDK_MENU_CODES.CDR_REPORT, () => import("./cdrReport-FFMEA26B.mjs"), [SDK_PERMISSIONS.REPORTS_CDR_READ, SDK_PERMISSIONS.REPORTS_CDR_MANAGE]),
|
|
4554
4554
|
AuditReportPage: withGuard(SDK_MENU_CODES.CDR_REPORT, () => import("./auditReport-DCBKRCQV.mjs"), [SDK_PERMISSIONS.REPORTS_CDR_READ, SDK_PERMISSIONS.REPORTS_CDR_MANAGE]),
|
|
4555
|
-
AgentPerformanceReport: withGuard(SDK_MENU_CODES.AGENT_PERFORMANCE_REPORT, () => import("./agentPerformanceReport-
|
|
4555
|
+
AgentPerformanceReport: withGuard(SDK_MENU_CODES.AGENT_PERFORMANCE_REPORT, () => import("./agentPerformanceReport-A4FSEAJN.mjs"), [SDK_PERMISSIONS.REPORTS_AGENT_PERFORMANCE_READ, SDK_PERMISSIONS.REPORTS_AGENT_PERFORMANCE_MANAGE]),
|
|
4556
4556
|
AgentDetailReport: withGuard(SDK_MENU_CODES.AGENT_DETAIL_REPORT, () => import("./agentDetailReport-6HFIDHTC.mjs"), [SDK_PERMISSIONS.REPORTS_AGENT_PERFORMANCE_READ, SDK_PERMISSIONS.REPORTS_AGENT_PERFORMANCE_MANAGE]),
|
|
4557
4557
|
LiveStatus: withGuard(SDK_MENU_CODES.LIVE_STATUS, () => import("./liveStatus-NBRDHW3Q.mjs"), [SDK_PERMISSIONS.DASHBOARD_LIVE_STATUS_READ, SDK_PERMISSIONS.DASHBOARD_LIVE_STATUS_MANAGE]),
|
|
4558
4558
|
ManagementDashboard: withGuard(SDK_MENU_CODES.MANAGEMENT_DASHBOARD, () => import("./managementDashboard-XFG6JYTW.mjs"), SDK_PERMISSIONS.MANAGEMENT_DASHBOARD_READ),
|
package/dist-react/{agentPerformanceReport-NOYTAUHK.mjs → agentPerformanceReport-VRYLITMY.mjs}
RENAMED
|
@@ -8886,7 +8886,7 @@ function AgentPerformanceReportContent() {
|
|
|
8886
8886
|
{
|
|
8887
8887
|
columns,
|
|
8888
8888
|
data: rows,
|
|
8889
|
-
layoutMode: "
|
|
8889
|
+
layoutMode: "semantic",
|
|
8890
8890
|
enableTopToolbar: false,
|
|
8891
8891
|
enableColumnActions: false,
|
|
8892
8892
|
enableColumnFilters: false,
|
|
@@ -8904,25 +8904,22 @@ function AgentPerformanceReportContent() {
|
|
|
8904
8904
|
muiTableHeadCellProps: {
|
|
8905
8905
|
sx: __spreadProps(__spreadValues({}, headCellSx), {
|
|
8906
8906
|
fontFamily: FONT2,
|
|
8907
|
-
px: "12px",
|
|
8908
|
-
py: "8px",
|
|
8909
|
-
display: "flex",
|
|
8910
|
-
alignItems: "center",
|
|
8911
8907
|
textAlign: "left",
|
|
8912
|
-
|
|
8913
|
-
|
|
8914
|
-
|
|
8908
|
+
verticalAlign: "middle",
|
|
8909
|
+
// Semantic (native <table>) layout: the browser computes one set of
|
|
8910
|
+
// column widths for header + body together, so columns always align
|
|
8911
|
+
// regardless of the host's MUI version. `&&` keeps our padding winning
|
|
8912
|
+
// over MUI's default cell padding under MUI v6 hosts (no CSS @layer).
|
|
8913
|
+
"&&": { px: "12px", py: "8px", boxSizing: "border-box" },
|
|
8914
|
+
"& .Mui-TableHeadCell-Content": { justifyContent: "flex-start" }
|
|
8915
8915
|
})
|
|
8916
8916
|
},
|
|
8917
8917
|
muiTableBodyCellProps: {
|
|
8918
8918
|
sx: __spreadProps(__spreadValues({}, bodyCellSx), {
|
|
8919
8919
|
fontFamily: FONT2,
|
|
8920
|
-
|
|
8921
|
-
|
|
8922
|
-
|
|
8923
|
-
alignItems: "center",
|
|
8924
|
-
justifyContent: "flex-start",
|
|
8925
|
-
textAlign: "left"
|
|
8920
|
+
textAlign: "left",
|
|
8921
|
+
verticalAlign: "middle",
|
|
8922
|
+
"&&": { px: "12px", py: "8px", boxSizing: "border-box" }
|
|
8926
8923
|
})
|
|
8927
8924
|
},
|
|
8928
8925
|
muiTableBodyRowProps: ({ row }) => ({
|
|
@@ -8996,4 +8993,4 @@ export {
|
|
|
8996
8993
|
* @author Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)
|
|
8997
8994
|
*)
|
|
8998
8995
|
*/
|
|
8999
|
-
//# sourceMappingURL=agentPerformanceReport-
|
|
8996
|
+
//# sourceMappingURL=agentPerformanceReport-VRYLITMY.mjs.map
|