sag_components 2.0.0-beta114 → 2.0.0-beta115

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
@@ -23897,22 +23897,21 @@ const DeleteIcon = styled.div`
23897
23897
  position: absolute;
23898
23898
  `;
23899
23899
 
23900
- const QuickFilterDropdownSingle = _ref => {
23901
- let {
23902
- label,
23903
- hoverColor,
23904
- options,
23905
- selectedValue,
23906
- placeHolder,
23907
- onChange,
23908
- disabled,
23909
- width,
23910
- error,
23911
- errorMessage,
23912
- xIconShow,
23913
- labelColor,
23914
- showLabelOnTop
23915
- } = _ref;
23900
+ const QuickFilterDropdownSingle = ({
23901
+ label,
23902
+ hoverColor,
23903
+ options,
23904
+ selectedValue,
23905
+ placeHolder,
23906
+ onChange,
23907
+ disabled,
23908
+ width,
23909
+ error,
23910
+ errorMessage,
23911
+ xIconShow,
23912
+ labelColor,
23913
+ showLabelOnTop
23914
+ }) => {
23916
23915
  const [isFocused, setIsFocused] = useState(false);
23917
23916
  const [showOptions, setShowOptions] = useState(false);
23918
23917
  const [inputValue, setInputValue] = useState("");
@@ -51126,7 +51125,7 @@ const scrollableStyles = `
51126
51125
  const DropdownContainer = styled.div`
51127
51126
  position: relative;
51128
51127
  width: ${props => props.width || '100%'};
51129
- max-width: 400px;
51128
+ max-width: 420px;
51130
51129
  font-family: "Poppins", sans-serif;
51131
51130
  `;
51132
51131
  const DropdownButton = styled.button`
@@ -51157,7 +51156,7 @@ const DropdownList = styled.ul`
51157
51156
  width: ${props => props.width || '100%'};
51158
51157
  /* min-width: 320px; */
51159
51158
  max-width: 600px;
51160
- max-height: ${props => props.dropdownMaxHeight || '400px'};
51159
+ max-height: ${props => props.dropdownMaxHeight || '420px'};
51161
51160
  overflow-y: auto;
51162
51161
  left: 0;
51163
51162