sag_components 2.0.0-beta261 → 2.0.0-beta263
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.d.ts
CHANGED
|
@@ -1597,7 +1597,7 @@ declare function OverlayDropdown({ data, value, onSelectClick, disabled, isDarke
|
|
|
1597
1597
|
margin?: string;
|
|
1598
1598
|
editableDigitalCoupon?: boolean;
|
|
1599
1599
|
dropdownDigitalCouponTitle?: string;
|
|
1600
|
-
className
|
|
1600
|
+
className?: string;
|
|
1601
1601
|
}): react_jsx_runtime.JSX.Element;
|
|
1602
1602
|
|
|
1603
1603
|
declare function MessageBox({ isOpen, isDisabled, onClose, onConfirm, title, primaryText, secondaryText, width, height, color, hoverColor, opacity, secondaryColor, seperateSectionBorder, children, tooltipContent, }: {
|
package/dist/index.esm.js
CHANGED
|
@@ -35663,7 +35663,7 @@ const MainContainer = styled.div`
|
|
|
35663
35663
|
justify-content: flex-start;
|
|
35664
35664
|
align-items: flex-start;
|
|
35665
35665
|
width: ${props => props.width || '300px'};
|
|
35666
|
-
min-width: ${props => props.width || 'unset'};
|
|
35666
|
+
/* min-width: ${props => props.width || 'unset'}; */
|
|
35667
35667
|
height: ${props => props.height || '45px'};
|
|
35668
35668
|
min-height: ${props => props.multiline ? '80px' : 'auto'};
|
|
35669
35669
|
font-family: "Poppins", sans-serif;
|
|
@@ -57736,7 +57736,7 @@ const OverlayDropdown = _ref => {
|
|
|
57736
57736
|
margin = "8px",
|
|
57737
57737
|
editableDigitalCoupon = false,
|
|
57738
57738
|
dropdownDigitalCouponTitle = "",
|
|
57739
|
-
className,
|
|
57739
|
+
className = "",
|
|
57740
57740
|
...props
|
|
57741
57741
|
} = _ref;
|
|
57742
57742
|
const [open, setOpen] = useState(false);
|