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 +17 -18
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +17 -18
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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 =
|
|
23911
|
-
|
|
23912
|
-
|
|
23913
|
-
|
|
23914
|
-
|
|
23915
|
-
|
|
23916
|
-
|
|
23917
|
-
|
|
23918
|
-
|
|
23919
|
-
|
|
23920
|
-
|
|
23921
|
-
|
|
23922
|
-
|
|
23923
|
-
|
|
23924
|
-
|
|
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:
|
|
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 || '
|
|
51169
|
+
max-height: ${props => props.dropdownMaxHeight || '420px'};
|
|
51171
51170
|
overflow-y: auto;
|
|
51172
51171
|
left: 0;
|
|
51173
51172
|
|