@equinor/apollo-components 1.6.1 → 1.6.2
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/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -222,6 +222,7 @@ var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
|
222
222
|
var StyledStickyCell = (0, import_styled_components6.default)(StickyCell)`
|
|
223
223
|
background-clip: padding-box;
|
|
224
224
|
${leftCellShadow}
|
|
225
|
+
${(props) => props.backgroundColor ? `background-color: ${props.backgroundColor} !important;` : ``}
|
|
225
226
|
`;
|
|
226
227
|
var StyledCell = (0, import_styled_components6.default)(import_eds_core_react4.Table.Cell)`
|
|
227
228
|
${(props) => props.backgroundColor ? `background-color: ${props.backgroundColor} !important;` : ``}
|
package/dist/index.mjs
CHANGED
|
@@ -176,6 +176,7 @@ import { jsx as jsx4 } from "react/jsx-runtime";
|
|
|
176
176
|
var StyledStickyCell = styled5(StickyCell)`
|
|
177
177
|
background-clip: padding-box;
|
|
178
178
|
${leftCellShadow}
|
|
179
|
+
${(props) => props.backgroundColor ? `background-color: ${props.backgroundColor} !important;` : ``}
|
|
179
180
|
`;
|
|
180
181
|
var StyledCell = styled5(Table2.Cell)`
|
|
181
182
|
${(props) => props.backgroundColor ? `background-color: ${props.backgroundColor} !important;` : ``}
|