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.js
CHANGED
|
@@ -24430,24 +24430,23 @@ const DeleteIcon = styled__default["default"].div`
|
|
|
24430
24430
|
position: absolute;
|
|
24431
24431
|
`;
|
|
24432
24432
|
|
|
24433
|
-
const QuickFilterDropdownSingle =
|
|
24434
|
-
|
|
24435
|
-
|
|
24436
|
-
|
|
24437
|
-
|
|
24438
|
-
|
|
24439
|
-
|
|
24440
|
-
|
|
24441
|
-
|
|
24442
|
-
|
|
24443
|
-
|
|
24444
|
-
|
|
24445
|
-
|
|
24446
|
-
|
|
24447
|
-
|
|
24448
|
-
|
|
24449
|
-
|
|
24450
|
-
} = _ref;
|
|
24433
|
+
const QuickFilterDropdownSingle = ({
|
|
24434
|
+
label,
|
|
24435
|
+
hoverColor,
|
|
24436
|
+
options,
|
|
24437
|
+
selectedValue,
|
|
24438
|
+
placeHolder,
|
|
24439
|
+
optionHoverColor = '#edf6ff',
|
|
24440
|
+
selectedOptionColor = "#C7E4FF",
|
|
24441
|
+
onChange,
|
|
24442
|
+
disabled,
|
|
24443
|
+
width,
|
|
24444
|
+
error,
|
|
24445
|
+
errorMessage,
|
|
24446
|
+
xIconShow,
|
|
24447
|
+
labelColor,
|
|
24448
|
+
showLabelOnTop
|
|
24449
|
+
}) => {
|
|
24451
24450
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
24452
24451
|
const [showOptions, setShowOptions] = React$1.useState(false);
|
|
24453
24452
|
const [inputValue, setInputValue] = React$1.useState("");
|
|
@@ -42878,9 +42877,12 @@ const NotAvailableText = styled__default["default"].div`
|
|
|
42878
42877
|
color: #8B8989;
|
|
42879
42878
|
font-family: inherit;
|
|
42880
42879
|
font-size: inherit;
|
|
42881
|
-
line-height: inherit;
|
|
42882
42880
|
cursor: pointer;
|
|
42883
|
-
|
|
42881
|
+
height: 32px;
|
|
42882
|
+
box-sizing: border-box;
|
|
42883
|
+
display: flex;
|
|
42884
|
+
align-items: center;
|
|
42885
|
+
padding: 0 2px;
|
|
42884
42886
|
border: 1px solid #D1D5DB;
|
|
42885
42887
|
border-radius: 4px;
|
|
42886
42888
|
background: white;
|