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 CHANGED
@@ -24643,25 +24643,26 @@ const IconContainer$2 = styled.div`
24643
24643
  cursor: pointer;
24644
24644
  `;
24645
24645
 
24646
- const QuickFilterDropdownMultiSelection = ({
24647
- label,
24648
- labelEmptyValue,
24649
- options,
24650
- selectedValue,
24651
- placeHolder,
24652
- onChange,
24653
- required,
24654
- disabled,
24655
- width,
24656
- height,
24657
- error,
24658
- errorMessage,
24659
- labelColor,
24660
- xIconShow,
24661
- checkBoxColor,
24662
- showLabelOnTop,
24663
- dropdownHeight
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 0 10px;
34557
+ margin: 0 30px 10px 0;
34557
34558
  `;
34558
34559
  const DownloadProgressStatusMessage = styled.h5`
34559
34560
  margin: 3px 0;
@@ -34567,7 +34568,7 @@ const DownloadProgressStatusMessage = styled.h5`
34567
34568
  &.DownloadProgressStatusMessage_TryAgain{
34568
34569
  color: #1B30AA;
34569
34570
  font-weight: 400;
34570
- text-decoration: underline;
34571
+ text-decoration: underline;
34571
34572
  &:hover {
34572
34573
  background-Color: #f1f1f1;
34573
34574
  cursor: pointer;
@@ -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: "12",
34661
- height: "12"
34661
+ width: "11",
34662
+ height: "11"
34662
34663
  }))), displayProgressContent());
34663
34664
  };
34664
34665
  DownloadProgress.propTypes = {
@@ -57500,7 +57501,7 @@ const DropdownList = styled.ul`
57500
57501
  border-radius: 10px;
57501
57502
  margin: 0;
57502
57503
  padding: 8px 0;
57503
- min-width: ${props => props.width || '100%'};
57504
+ width: ${props => props.width || '100%'};
57504
57505
  max-height: ${props => props.dropdownMaxHeight || '420px'};
57505
57506
  overflow-y: auto;
57506
57507
  left: 0;
@@ -58134,7 +58135,6 @@ const OverlayDropdown = _ref => {
58134
58135
  content: selected?.label,
58135
58136
  showTooltip: !!selected
58136
58137
  }, /*#__PURE__*/React$1.createElement(Wrapper, null, /*#__PURE__*/React$1.createElement(TruncatedText, {
58137
- className: "selected",
58138
58138
  onMouseEnter: () => setHoveredText(selected?.label),
58139
58139
  onMouseLeave: () => setHoveredText(null),
58140
58140
  color: !selected && open ? placeHolderColor : "inherit"