sag_components 2.0.0-beta270 → 2.0.0-beta271
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.js
CHANGED
|
@@ -57343,7 +57343,7 @@ const scrollableStyles = `
|
|
|
57343
57343
|
const DropdownContainer = styled__default["default"].div`
|
|
57344
57344
|
position: relative;
|
|
57345
57345
|
width: ${props => props.width || '100%'};
|
|
57346
|
-
|
|
57346
|
+
min-width: ${props => props.minWidth || 'unset'};
|
|
57347
57347
|
font-family: "Poppins", sans-serif;
|
|
57348
57348
|
`;
|
|
57349
57349
|
const DropdownButton = styled__default["default"].button`
|
|
@@ -57782,6 +57782,7 @@ const OverlayDropdown = _ref => {
|
|
|
57782
57782
|
hoverColor = "#E6F0F0",
|
|
57783
57783
|
dropdownMaxHeight = "600px",
|
|
57784
57784
|
width = "100%",
|
|
57785
|
+
minWidth,
|
|
57785
57786
|
height = "auto",
|
|
57786
57787
|
label,
|
|
57787
57788
|
labelEmptyValue,
|
|
@@ -57996,6 +57997,7 @@ const OverlayDropdown = _ref => {
|
|
|
57996
57997
|
};
|
|
57997
57998
|
return /*#__PURE__*/React__default["default"].createElement(DropdownContainer, {
|
|
57998
57999
|
width: width,
|
|
58000
|
+
minWidth: minWidth,
|
|
57999
58001
|
ref: containerRef
|
|
58000
58002
|
}, /*#__PURE__*/React__default["default"].createElement(Label$1, {
|
|
58001
58003
|
className: "Label",
|