sag_components 2.0.0-beta256 → 2.0.0-beta258
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 +23 -20
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +23 -20
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -24639,25 +24639,26 @@ const IconContainer$2 = styled.div`
|
|
|
24639
24639
|
cursor: pointer;
|
|
24640
24640
|
`;
|
|
24641
24641
|
|
|
24642
|
-
const QuickFilterDropdownMultiSelection =
|
|
24643
|
-
|
|
24644
|
-
|
|
24645
|
-
|
|
24646
|
-
|
|
24647
|
-
|
|
24648
|
-
|
|
24649
|
-
|
|
24650
|
-
|
|
24651
|
-
|
|
24652
|
-
|
|
24653
|
-
|
|
24654
|
-
|
|
24655
|
-
|
|
24656
|
-
|
|
24657
|
-
|
|
24658
|
-
|
|
24659
|
-
|
|
24660
|
-
|
|
24642
|
+
const QuickFilterDropdownMultiSelection = _ref => {
|
|
24643
|
+
let {
|
|
24644
|
+
label,
|
|
24645
|
+
labelEmptyValue,
|
|
24646
|
+
options,
|
|
24647
|
+
selectedValue,
|
|
24648
|
+
placeHolder,
|
|
24649
|
+
onChange,
|
|
24650
|
+
required,
|
|
24651
|
+
disabled,
|
|
24652
|
+
width,
|
|
24653
|
+
height,
|
|
24654
|
+
error,
|
|
24655
|
+
errorMessage,
|
|
24656
|
+
labelColor,
|
|
24657
|
+
xIconShow,
|
|
24658
|
+
checkBoxColor,
|
|
24659
|
+
showLabelOnTop,
|
|
24660
|
+
dropdownHeight
|
|
24661
|
+
} = _ref;
|
|
24661
24662
|
const [isFocused, setIsFocused] = useState(false);
|
|
24662
24663
|
const [showOptions, setShowOptions] = useState(false);
|
|
24663
24664
|
const [inputValue, setInputValue] = useState('');
|
|
@@ -35662,14 +35663,15 @@ const MainContainer = styled.div`
|
|
|
35662
35663
|
justify-content: flex-start;
|
|
35663
35664
|
align-items: flex-start;
|
|
35664
35665
|
width: ${props => props.width || '300px'};
|
|
35666
|
+
min-width: ${props => props.width || 'unset'};
|
|
35665
35667
|
height: ${props => props.height || '45px'};
|
|
35668
|
+
min-height: ${props => props.multiline ? '80px' : 'auto'};
|
|
35666
35669
|
font-family: "Poppins", sans-serif;
|
|
35667
35670
|
font-weight: 400;
|
|
35668
35671
|
font-size: 14px;
|
|
35669
35672
|
border-radius: ${props => props.size === 'small' ? '8px' : '12px'};
|
|
35670
35673
|
padding: 0;
|
|
35671
35674
|
cursor: ${props => props.disabled ? 'not-allowed' : 'default'};
|
|
35672
|
-
min-height: ${props => props.multiline ? '80px' : 'auto'};
|
|
35673
35675
|
`;
|
|
35674
35676
|
const Label$3 = styled.label`
|
|
35675
35677
|
font-size: ${props => props.isFocused || props.hasValue ? '14px' : '14px'};
|
|
@@ -57276,6 +57278,7 @@ const scrollableStyles = `
|
|
|
57276
57278
|
const DropdownContainer = styled.div`
|
|
57277
57279
|
position: relative;
|
|
57278
57280
|
width: ${props => props.width || '100%'};
|
|
57281
|
+
min-width: ${props => props.width || 'unset'};
|
|
57279
57282
|
font-family: "Poppins", sans-serif;
|
|
57280
57283
|
`;
|
|
57281
57284
|
const DropdownButton = styled.button`
|