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.d.ts
CHANGED
|
@@ -133,6 +133,7 @@ declare namespace FilterPanel {
|
|
|
133
133
|
placeHolder: PropTypes.Requireable<string>;
|
|
134
134
|
xIconShow: PropTypes.Requireable<boolean>;
|
|
135
135
|
label: PropTypes.Requireable<string>;
|
|
136
|
+
showSelectAll: PropTypes.Requireable<boolean>;
|
|
136
137
|
labelEmptyValue: PropTypes.Requireable<string>;
|
|
137
138
|
name: PropTypes.Requireable<string>;
|
|
138
139
|
periodPickerSelectedValue: PropTypes.Requireable<string>;
|
package/dist/index.esm.js
CHANGED
|
@@ -12038,6 +12038,7 @@ FilterPanel.propTypes = {
|
|
|
12038
12038
|
placeHolder: PropTypes.string,
|
|
12039
12039
|
xIconShow: PropTypes.bool,
|
|
12040
12040
|
label: PropTypes.string,
|
|
12041
|
+
showSelectAll: PropTypes.bool,
|
|
12041
12042
|
labelEmptyValue: PropTypes.string,
|
|
12042
12043
|
name: PropTypes.string,
|
|
12043
12044
|
periodPickerSelectedValue: PropTypes.string,
|
|
@@ -12394,13 +12395,16 @@ const Td$1 = styled.td`
|
|
|
12394
12395
|
`;
|
|
12395
12396
|
const Tr = styled.tr`
|
|
12396
12397
|
border-bottom: 1px solid #f3f4f6;
|
|
12397
|
-
${
|
|
12398
|
-
|
|
12399
|
-
|
|
12400
|
-
|
|
12398
|
+
${_ref => {
|
|
12399
|
+
let {
|
|
12400
|
+
enableHover,
|
|
12401
|
+
selectHoverColor
|
|
12402
|
+
} = _ref;
|
|
12403
|
+
return enableHover && `&:hover {
|
|
12401
12404
|
background-color: ${selectHoverColor};
|
|
12402
12405
|
cursor: pointer;
|
|
12403
|
-
}
|
|
12406
|
+
}`;
|
|
12407
|
+
}}
|
|
12404
12408
|
`;
|
|
12405
12409
|
const InfoText = styled.div`
|
|
12406
12410
|
font-weight: 400;
|