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
|
@@ -10644,11 +10644,12 @@ function AgentPerformanceReportContent() {
|
|
|
10644
10644
|
muiTableHeadCellProps: {
|
|
10645
10645
|
sx: __spreadProps(__spreadValues({}, headCellSx), {
|
|
10646
10646
|
fontFamily: FONT2,
|
|
10647
|
-
px: "12px",
|
|
10648
|
-
py: "8px",
|
|
10649
|
-
display: "flex",
|
|
10650
|
-
alignItems: "center",
|
|
10651
10647
|
textAlign: "left",
|
|
10648
|
+
// `&&` doubles specificity so these win over MUI's default cell
|
|
10649
|
+
// padding/box-sizing even under MUI v6 hosts (which don't wrap
|
|
10650
|
+
// base styles in a CSS @layer). Keeps header/body columns aligned
|
|
10651
|
+
// in the published SDK regardless of the host's MUI version.
|
|
10652
|
+
"&&": { px: "12px", py: "8px", display: "flex", alignItems: "center", boxSizing: "border-box" },
|
|
10652
10653
|
"& .Mui-TableHeadCell-Content": { m: 0, p: 0, width: "100%", justifyContent: "flex-start" },
|
|
10653
10654
|
"& .Mui-TableHeadCell-Content-Wrapper": { m: 0, p: 0 },
|
|
10654
10655
|
"& .Mui-TableHeadCell-Content-Labels": { m: 0, p: 0 }
|
|
@@ -10657,12 +10658,8 @@ function AgentPerformanceReportContent() {
|
|
|
10657
10658
|
muiTableBodyCellProps: {
|
|
10658
10659
|
sx: __spreadProps(__spreadValues({}, bodyCellSx), {
|
|
10659
10660
|
fontFamily: FONT2,
|
|
10660
|
-
|
|
10661
|
-
py: "8px",
|
|
10662
|
-
display: "flex",
|
|
10663
|
-
alignItems: "center",
|
|
10664
|
-
justifyContent: "flex-start",
|
|
10665
|
-
textAlign: "left"
|
|
10661
|
+
textAlign: "left",
|
|
10662
|
+
"&&": { px: "12px", py: "8px", display: "flex", alignItems: "center", justifyContent: "flex-start", boxSizing: "border-box" }
|
|
10666
10663
|
})
|
|
10667
10664
|
},
|
|
10668
10665
|
muiTableBodyRowProps: ({ row }) => ({
|
|
@@ -10736,4 +10733,4 @@ export {
|
|
|
10736
10733
|
* @author Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)
|
|
10737
10734
|
*)
|
|
10738
10735
|
*/
|
|
10739
|
-
//# sourceMappingURL=agentPerformanceReport-
|
|
10736
|
+
//# sourceMappingURL=agentPerformanceReport-NLEW3H66.mjs.map
|