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.js
CHANGED
|
@@ -24653,26 +24653,25 @@ const IconContainer$2 = styled__default["default"].div`
|
|
|
24653
24653
|
cursor: pointer;
|
|
24654
24654
|
`;
|
|
24655
24655
|
|
|
24656
|
-
const QuickFilterDropdownMultiSelection =
|
|
24657
|
-
|
|
24658
|
-
|
|
24659
|
-
|
|
24660
|
-
|
|
24661
|
-
|
|
24662
|
-
|
|
24663
|
-
|
|
24664
|
-
|
|
24665
|
-
|
|
24666
|
-
|
|
24667
|
-
|
|
24668
|
-
|
|
24669
|
-
|
|
24670
|
-
|
|
24671
|
-
|
|
24672
|
-
|
|
24673
|
-
|
|
24674
|
-
|
|
24675
|
-
} = _ref;
|
|
24656
|
+
const QuickFilterDropdownMultiSelection = ({
|
|
24657
|
+
label,
|
|
24658
|
+
labelEmptyValue,
|
|
24659
|
+
options,
|
|
24660
|
+
selectedValue,
|
|
24661
|
+
placeHolder,
|
|
24662
|
+
onChange,
|
|
24663
|
+
required,
|
|
24664
|
+
disabled,
|
|
24665
|
+
width,
|
|
24666
|
+
height,
|
|
24667
|
+
error,
|
|
24668
|
+
errorMessage,
|
|
24669
|
+
labelColor,
|
|
24670
|
+
xIconShow,
|
|
24671
|
+
checkBoxColor,
|
|
24672
|
+
showLabelOnTop,
|
|
24673
|
+
dropdownHeight
|
|
24674
|
+
}) => {
|
|
24676
24675
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
24677
24676
|
const [showOptions, setShowOptions] = React$1.useState(false);
|
|
24678
24677
|
const [inputValue, setInputValue] = React$1.useState('');
|