sag_components 2.0.0-beta347 → 2.0.0-beta349
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 +20 -21
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +20 -21
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -24895,27 +24895,26 @@ const IconContainer$2 = styled.div`
|
|
|
24895
24895
|
cursor: pointer;
|
|
24896
24896
|
`;
|
|
24897
24897
|
|
|
24898
|
-
const QuickFilterDropdownMultiSelection =
|
|
24899
|
-
|
|
24900
|
-
|
|
24901
|
-
|
|
24902
|
-
|
|
24903
|
-
|
|
24904
|
-
|
|
24905
|
-
|
|
24906
|
-
|
|
24907
|
-
|
|
24908
|
-
|
|
24909
|
-
|
|
24910
|
-
|
|
24911
|
-
|
|
24912
|
-
|
|
24913
|
-
|
|
24914
|
-
|
|
24915
|
-
|
|
24916
|
-
|
|
24917
|
-
|
|
24918
|
-
} = _ref;
|
|
24898
|
+
const QuickFilterDropdownMultiSelection = ({
|
|
24899
|
+
label,
|
|
24900
|
+
labelEmptyValue,
|
|
24901
|
+
options,
|
|
24902
|
+
selectedValue,
|
|
24903
|
+
placeHolder,
|
|
24904
|
+
onChange,
|
|
24905
|
+
required,
|
|
24906
|
+
disabled,
|
|
24907
|
+
width,
|
|
24908
|
+
height,
|
|
24909
|
+
error,
|
|
24910
|
+
errorMessage,
|
|
24911
|
+
labelColor,
|
|
24912
|
+
optionHoverColor = '#edf6ff',
|
|
24913
|
+
xIconShow,
|
|
24914
|
+
checkBoxColor,
|
|
24915
|
+
showLabelOnTop,
|
|
24916
|
+
dropdownHeight
|
|
24917
|
+
}) => {
|
|
24919
24918
|
const [isFocused, setIsFocused] = useState(false);
|
|
24920
24919
|
const [showOptions, setShowOptions] = useState(false);
|
|
24921
24920
|
const [inputValue, setInputValue] = useState('');
|