sag_components 2.0.0-beta327 → 2.0.0-beta328
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
CHANGED
|
@@ -12048,6 +12048,7 @@ FilterPanel.propTypes = {
|
|
|
12048
12048
|
placeHolder: PropTypes.string,
|
|
12049
12049
|
xIconShow: PropTypes.bool,
|
|
12050
12050
|
label: PropTypes.string,
|
|
12051
|
+
showSelectAll: PropTypes.bool,
|
|
12051
12052
|
labelEmptyValue: PropTypes.string,
|
|
12052
12053
|
name: PropTypes.string,
|
|
12053
12054
|
periodPickerSelectedValue: PropTypes.string,
|
|
@@ -12404,13 +12405,16 @@ const Td$1 = styled__default["default"].td`
|
|
|
12404
12405
|
`;
|
|
12405
12406
|
const Tr = styled__default["default"].tr`
|
|
12406
12407
|
border-bottom: 1px solid #f3f4f6;
|
|
12407
|
-
${
|
|
12408
|
-
|
|
12409
|
-
|
|
12410
|
-
|
|
12408
|
+
${_ref => {
|
|
12409
|
+
let {
|
|
12410
|
+
enableHover,
|
|
12411
|
+
selectHoverColor
|
|
12412
|
+
} = _ref;
|
|
12413
|
+
return enableHover && `&:hover {
|
|
12411
12414
|
background-color: ${selectHoverColor};
|
|
12412
12415
|
cursor: pointer;
|
|
12413
|
-
}
|
|
12416
|
+
}`;
|
|
12417
|
+
}}
|
|
12414
12418
|
`;
|
|
12415
12419
|
const InfoText = styled__default["default"].div`
|
|
12416
12420
|
font-weight: 400;
|