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.js CHANGED
@@ -23907,22 +23907,21 @@ const DeleteIcon = styled__default["default"].div`
23907
23907
  position: absolute;
23908
23908
  `;
23909
23909
 
23910
- const QuickFilterDropdownSingle = _ref => {
23911
- let {
23912
- label,
23913
- hoverColor,
23914
- options,
23915
- selectedValue,
23916
- placeHolder,
23917
- onChange,
23918
- disabled,
23919
- width,
23920
- error,
23921
- errorMessage,
23922
- xIconShow,
23923
- labelColor,
23924
- showLabelOnTop
23925
- } = _ref;
23910
+ const QuickFilterDropdownSingle = ({
23911
+ label,
23912
+ hoverColor,
23913
+ options,
23914
+ selectedValue,
23915
+ placeHolder,
23916
+ onChange,
23917
+ disabled,
23918
+ width,
23919
+ error,
23920
+ errorMessage,
23921
+ xIconShow,
23922
+ labelColor,
23923
+ showLabelOnTop
23924
+ }) => {
23926
23925
  const [isFocused, setIsFocused] = React$1.useState(false);
23927
23926
  const [showOptions, setShowOptions] = React$1.useState(false);
23928
23927
  const [inputValue, setInputValue] = React$1.useState("");
@@ -51136,7 +51135,7 @@ const scrollableStyles = `
51136
51135
  const DropdownContainer = styled__default["default"].div`
51137
51136
  position: relative;
51138
51137
  width: ${props => props.width || '100%'};
51139
- max-width: 400px;
51138
+ max-width: 420px;
51140
51139
  font-family: "Poppins", sans-serif;
51141
51140
  `;
51142
51141
  const DropdownButton = styled__default["default"].button`
@@ -51167,7 +51166,7 @@ const DropdownList = styled__default["default"].ul`
51167
51166
  width: ${props => props.width || '100%'};
51168
51167
  /* min-width: 320px; */
51169
51168
  max-width: 600px;
51170
- max-height: ${props => props.dropdownMaxHeight || '400px'};
51169
+ max-height: ${props => props.dropdownMaxHeight || '420px'};
51171
51170
  overflow-y: auto;
51172
51171
  left: 0;
51173
51172