sag_components 2.0.0-beta260 → 2.0.0-beta262
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
|
@@ -35673,7 +35673,7 @@ const MainContainer = styled__default["default"].div`
|
|
|
35673
35673
|
justify-content: flex-start;
|
|
35674
35674
|
align-items: flex-start;
|
|
35675
35675
|
width: ${props => props.width || '300px'};
|
|
35676
|
-
min-width: ${props => props.width || 'unset'};
|
|
35676
|
+
/* min-width: ${props => props.width || 'unset'}; */
|
|
35677
35677
|
height: ${props => props.height || '45px'};
|
|
35678
35678
|
min-height: ${props => props.multiline ? '80px' : 'auto'};
|
|
35679
35679
|
font-family: "Poppins", sans-serif;
|
|
@@ -57296,7 +57296,7 @@ const scrollableStyles = `
|
|
|
57296
57296
|
const DropdownContainer = styled__default["default"].div`
|
|
57297
57297
|
position: relative;
|
|
57298
57298
|
width: ${props => props.width || '100%'};
|
|
57299
|
-
min-width: ${props => props.width || 'unset'};
|
|
57299
|
+
/* min-width: ${props => props.width || 'unset'}; */
|
|
57300
57300
|
font-family: "Poppins", sans-serif;
|
|
57301
57301
|
`;
|
|
57302
57302
|
const DropdownButton = styled__default["default"].button`
|
|
@@ -57746,6 +57746,7 @@ const OverlayDropdown = _ref => {
|
|
|
57746
57746
|
margin = "8px",
|
|
57747
57747
|
editableDigitalCoupon = false,
|
|
57748
57748
|
dropdownDigitalCouponTitle = "",
|
|
57749
|
+
className = "",
|
|
57749
57750
|
...props
|
|
57750
57751
|
} = _ref;
|
|
57751
57752
|
const [open, setOpen] = React$1.useState(false);
|
|
@@ -57946,6 +57947,7 @@ const OverlayDropdown = _ref => {
|
|
|
57946
57947
|
return "";
|
|
57947
57948
|
};
|
|
57948
57949
|
return /*#__PURE__*/React__default["default"].createElement(DropdownContainer, {
|
|
57950
|
+
className: className,
|
|
57949
57951
|
width: width,
|
|
57950
57952
|
ref: containerRef
|
|
57951
57953
|
}, /*#__PURE__*/React__default["default"].createElement(Label$1, {
|