sag_components 2.0.0-beta286 → 2.0.0-beta288
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 +25 -25
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +25 -25
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -24653,25 +24653,26 @@ const IconContainer$2 = styled__default["default"].div`
|
|
|
24653
24653
|
cursor: pointer;
|
|
24654
24654
|
`;
|
|
24655
24655
|
|
|
24656
|
-
const QuickFilterDropdownMultiSelection =
|
|
24657
|
-
|
|
24658
|
-
|
|
24659
|
-
|
|
24660
|
-
|
|
24661
|
-
|
|
24662
|
-
|
|
24663
|
-
|
|
24664
|
-
|
|
24665
|
-
|
|
24666
|
-
|
|
24667
|
-
|
|
24668
|
-
|
|
24669
|
-
|
|
24670
|
-
|
|
24671
|
-
|
|
24672
|
-
|
|
24673
|
-
|
|
24674
|
-
|
|
24656
|
+
const QuickFilterDropdownMultiSelection = _ref => {
|
|
24657
|
+
let {
|
|
24658
|
+
label,
|
|
24659
|
+
labelEmptyValue,
|
|
24660
|
+
options,
|
|
24661
|
+
selectedValue,
|
|
24662
|
+
placeHolder,
|
|
24663
|
+
onChange,
|
|
24664
|
+
required,
|
|
24665
|
+
disabled,
|
|
24666
|
+
width,
|
|
24667
|
+
height,
|
|
24668
|
+
error,
|
|
24669
|
+
errorMessage,
|
|
24670
|
+
labelColor,
|
|
24671
|
+
xIconShow,
|
|
24672
|
+
checkBoxColor,
|
|
24673
|
+
showLabelOnTop,
|
|
24674
|
+
dropdownHeight
|
|
24675
|
+
} = _ref;
|
|
24675
24676
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
24676
24677
|
const [showOptions, setShowOptions] = React$1.useState(false);
|
|
24677
24678
|
const [inputValue, setInputValue] = React$1.useState('');
|
|
@@ -34563,7 +34564,7 @@ const DownloadProgressContentContainer = styled__default["default"].div`
|
|
|
34563
34564
|
`;
|
|
34564
34565
|
const DownloadProgressTitle = styled__default["default"].h4`
|
|
34565
34566
|
font-weight: 400;
|
|
34566
|
-
margin: 0
|
|
34567
|
+
margin: 0 30px 10px 0;
|
|
34567
34568
|
`;
|
|
34568
34569
|
const DownloadProgressStatusMessage = styled__default["default"].h5`
|
|
34569
34570
|
margin: 3px 0;
|
|
@@ -34577,7 +34578,7 @@ const DownloadProgressStatusMessage = styled__default["default"].h5`
|
|
|
34577
34578
|
&.DownloadProgressStatusMessage_TryAgain{
|
|
34578
34579
|
color: #1B30AA;
|
|
34579
34580
|
font-weight: 400;
|
|
34580
|
-
text-decoration: underline;
|
|
34581
|
+
text-decoration: underline;
|
|
34581
34582
|
&:hover {
|
|
34582
34583
|
background-Color: #f1f1f1;
|
|
34583
34584
|
cursor: pointer;
|
|
@@ -34667,8 +34668,8 @@ const DownloadProgress = props => {
|
|
|
34667
34668
|
}, title, showCloseButton && /*#__PURE__*/React__default["default"].createElement(CloseButton$1, {
|
|
34668
34669
|
onClick: onCloseClick
|
|
34669
34670
|
}, /*#__PURE__*/React__default["default"].createElement(CloseXIcon, {
|
|
34670
|
-
width: "
|
|
34671
|
-
height: "
|
|
34671
|
+
width: "11",
|
|
34672
|
+
height: "11"
|
|
34672
34673
|
}))), displayProgressContent());
|
|
34673
34674
|
};
|
|
34674
34675
|
DownloadProgress.propTypes = {
|
|
@@ -57510,7 +57511,7 @@ const DropdownList = styled__default["default"].ul`
|
|
|
57510
57511
|
border-radius: 10px;
|
|
57511
57512
|
margin: 0;
|
|
57512
57513
|
padding: 8px 0;
|
|
57513
|
-
|
|
57514
|
+
width: ${props => props.width || '100%'};
|
|
57514
57515
|
max-height: ${props => props.dropdownMaxHeight || '420px'};
|
|
57515
57516
|
overflow-y: auto;
|
|
57516
57517
|
left: 0;
|
|
@@ -58144,7 +58145,6 @@ const OverlayDropdown = _ref => {
|
|
|
58144
58145
|
content: selected?.label,
|
|
58145
58146
|
showTooltip: !!selected
|
|
58146
58147
|
}, /*#__PURE__*/React__default["default"].createElement(Wrapper, null, /*#__PURE__*/React__default["default"].createElement(TruncatedText, {
|
|
58147
|
-
className: "selected",
|
|
58148
58148
|
onMouseEnter: () => setHoveredText(selected?.label),
|
|
58149
58149
|
onMouseLeave: () => setHoveredText(null),
|
|
58150
58150
|
color: !selected && open ? placeHolderColor : "inherit"
|