sag_components 2.0.0-beta282 → 2.0.0-beta283
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 +19 -20
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +19 -20
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -24643,26 +24643,25 @@ const IconContainer$2 = styled.div`
|
|
|
24643
24643
|
cursor: pointer;
|
|
24644
24644
|
`;
|
|
24645
24645
|
|
|
24646
|
-
const QuickFilterDropdownMultiSelection =
|
|
24647
|
-
|
|
24648
|
-
|
|
24649
|
-
|
|
24650
|
-
|
|
24651
|
-
|
|
24652
|
-
|
|
24653
|
-
|
|
24654
|
-
|
|
24655
|
-
|
|
24656
|
-
|
|
24657
|
-
|
|
24658
|
-
|
|
24659
|
-
|
|
24660
|
-
|
|
24661
|
-
|
|
24662
|
-
|
|
24663
|
-
|
|
24664
|
-
|
|
24665
|
-
} = _ref;
|
|
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
|
+
}) => {
|
|
24666
24665
|
const [isFocused, setIsFocused] = useState(false);
|
|
24667
24666
|
const [showOptions, setShowOptions] = useState(false);
|
|
24668
24667
|
const [inputValue, setInputValue] = useState('');
|