sag_components 2.0.0-beta349 → 2.0.0-beta350
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 +22 -20
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +22 -20
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -24420,24 +24420,23 @@ const DeleteIcon = styled.div`
|
|
|
24420
24420
|
position: absolute;
|
|
24421
24421
|
`;
|
|
24422
24422
|
|
|
24423
|
-
const QuickFilterDropdownSingle =
|
|
24424
|
-
|
|
24425
|
-
|
|
24426
|
-
|
|
24427
|
-
|
|
24428
|
-
|
|
24429
|
-
|
|
24430
|
-
|
|
24431
|
-
|
|
24432
|
-
|
|
24433
|
-
|
|
24434
|
-
|
|
24435
|
-
|
|
24436
|
-
|
|
24437
|
-
|
|
24438
|
-
|
|
24439
|
-
|
|
24440
|
-
} = _ref;
|
|
24423
|
+
const QuickFilterDropdownSingle = ({
|
|
24424
|
+
label,
|
|
24425
|
+
hoverColor,
|
|
24426
|
+
options,
|
|
24427
|
+
selectedValue,
|
|
24428
|
+
placeHolder,
|
|
24429
|
+
optionHoverColor = '#edf6ff',
|
|
24430
|
+
selectedOptionColor = "#C7E4FF",
|
|
24431
|
+
onChange,
|
|
24432
|
+
disabled,
|
|
24433
|
+
width,
|
|
24434
|
+
error,
|
|
24435
|
+
errorMessage,
|
|
24436
|
+
xIconShow,
|
|
24437
|
+
labelColor,
|
|
24438
|
+
showLabelOnTop
|
|
24439
|
+
}) => {
|
|
24441
24440
|
const [isFocused, setIsFocused] = useState(false);
|
|
24442
24441
|
const [showOptions, setShowOptions] = useState(false);
|
|
24443
24442
|
const [inputValue, setInputValue] = useState("");
|
|
@@ -42868,9 +42867,12 @@ const NotAvailableText = styled.div`
|
|
|
42868
42867
|
color: #8B8989;
|
|
42869
42868
|
font-family: inherit;
|
|
42870
42869
|
font-size: inherit;
|
|
42871
|
-
line-height: inherit;
|
|
42872
42870
|
cursor: pointer;
|
|
42873
|
-
|
|
42871
|
+
height: 32px;
|
|
42872
|
+
box-sizing: border-box;
|
|
42873
|
+
display: flex;
|
|
42874
|
+
align-items: center;
|
|
42875
|
+
padding: 0 2px;
|
|
42874
42876
|
border: 1px solid #D1D5DB;
|
|
42875
42877
|
border-radius: 4px;
|
|
42876
42878
|
background: white;
|