sag_components 2.0.0-beta286 → 2.0.0-beta287
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.esm.js +23 -22
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +23 -22
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -24643,25 +24643,26 @@ const IconContainer$2 = styled.div`
|
|
|
24643
24643
|
cursor: pointer;
|
|
24644
24644
|
`;
|
|
24645
24645
|
|
|
24646
|
-
const QuickFilterDropdownMultiSelection =
|
|
24647
|
-
|
|
24648
|
-
|
|
24649
|
-
|
|
24650
|
-
|
|
24651
|
-
|
|
24652
|
-
|
|
24653
|
-
|
|
24654
|
-
|
|
24655
|
-
|
|
24656
|
-
|
|
24657
|
-
|
|
24658
|
-
|
|
24659
|
-
|
|
24660
|
-
|
|
24661
|
-
|
|
24662
|
-
|
|
24663
|
-
|
|
24664
|
-
|
|
24646
|
+
const QuickFilterDropdownMultiSelection = _ref => {
|
|
24647
|
+
let {
|
|
24648
|
+
label,
|
|
24649
|
+
labelEmptyValue,
|
|
24650
|
+
options,
|
|
24651
|
+
selectedValue,
|
|
24652
|
+
placeHolder,
|
|
24653
|
+
onChange,
|
|
24654
|
+
required,
|
|
24655
|
+
disabled,
|
|
24656
|
+
width,
|
|
24657
|
+
height,
|
|
24658
|
+
error,
|
|
24659
|
+
errorMessage,
|
|
24660
|
+
labelColor,
|
|
24661
|
+
xIconShow,
|
|
24662
|
+
checkBoxColor,
|
|
24663
|
+
showLabelOnTop,
|
|
24664
|
+
dropdownHeight
|
|
24665
|
+
} = _ref;
|
|
24665
24666
|
const [isFocused, setIsFocused] = useState(false);
|
|
24666
24667
|
const [showOptions, setShowOptions] = useState(false);
|
|
24667
24668
|
const [inputValue, setInputValue] = useState('');
|
|
@@ -34553,7 +34554,7 @@ const DownloadProgressContentContainer = styled.div`
|
|
|
34553
34554
|
`;
|
|
34554
34555
|
const DownloadProgressTitle = styled.h4`
|
|
34555
34556
|
font-weight: 400;
|
|
34556
|
-
margin: 0
|
|
34557
|
+
margin: 0 30px 10px 0;
|
|
34557
34558
|
`;
|
|
34558
34559
|
const DownloadProgressStatusMessage = styled.h5`
|
|
34559
34560
|
margin: 3px 0;
|
|
@@ -34657,8 +34658,8 @@ const DownloadProgress = props => {
|
|
|
34657
34658
|
}, title, showCloseButton && /*#__PURE__*/React$1.createElement(CloseButton$1, {
|
|
34658
34659
|
onClick: onCloseClick
|
|
34659
34660
|
}, /*#__PURE__*/React$1.createElement(CloseXIcon, {
|
|
34660
|
-
width: "
|
|
34661
|
-
height: "
|
|
34661
|
+
width: "11",
|
|
34662
|
+
height: "11"
|
|
34662
34663
|
}))), displayProgressContent());
|
|
34663
34664
|
};
|
|
34664
34665
|
DownloadProgress.propTypes = {
|