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.d.ts CHANGED
@@ -1574,7 +1574,7 @@ declare function ModalDrawer({ open, height, onClose, children, widthPercent }:
1574
1574
  widthPercent?: number;
1575
1575
  }): react_jsx_runtime.JSX.Element;
1576
1576
 
1577
- declare function OverlayDropdown({ data, value, onSelectClick, disabled, isDarkerBackground, required, selectedColor, hoverColor, dropdownMaxHeight, width, height, label, labelEmptyValue, showLabelOnTop, placeHolder, labelColor, placeHolderColor, textColorMenu, margin, editableDigitalCoupon, dropdownDigitalCouponTitle, ...props }: {
1577
+ declare function OverlayDropdown({ data, value, onSelectClick, disabled, isDarkerBackground, required, selectedColor, hoverColor, dropdownMaxHeight, width, height, label, labelEmptyValue, showLabelOnTop, placeHolder, labelColor, placeHolderColor, textColorMenu, margin, editableDigitalCoupon, dropdownDigitalCouponTitle, className, ...props }: {
1578
1578
  [x: string]: any;
1579
1579
  data?: any[];
1580
1580
  value: any;
@@ -1597,6 +1597,7 @@ declare function OverlayDropdown({ data, value, onSelectClick, disabled, isDarke
1597
1597
  margin?: string;
1598
1598
  editableDigitalCoupon?: boolean;
1599
1599
  dropdownDigitalCouponTitle?: string;
1600
+ className?: string;
1600
1601
  }): react_jsx_runtime.JSX.Element;
1601
1602
 
1602
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;
@@ -57286,7 +57286,7 @@ const scrollableStyles = `
57286
57286
  const DropdownContainer = styled.div`
57287
57287
  position: relative;
57288
57288
  width: ${props => props.width || '100%'};
57289
- min-width: ${props => props.width || 'unset'};
57289
+ /* min-width: ${props => props.width || 'unset'}; */
57290
57290
  font-family: "Poppins", sans-serif;
57291
57291
  `;
57292
57292
  const DropdownButton = styled.button`
@@ -57736,6 +57736,7 @@ const OverlayDropdown = _ref => {
57736
57736
  margin = "8px",
57737
57737
  editableDigitalCoupon = false,
57738
57738
  dropdownDigitalCouponTitle = "",
57739
+ className = "",
57739
57740
  ...props
57740
57741
  } = _ref;
57741
57742
  const [open, setOpen] = useState(false);
@@ -57936,6 +57937,7 @@ const OverlayDropdown = _ref => {
57936
57937
  return "";
57937
57938
  };
57938
57939
  return /*#__PURE__*/React$1.createElement(DropdownContainer, {
57940
+ className: className,
57939
57941
  width: width,
57940
57942
  ref: containerRef
57941
57943
  }, /*#__PURE__*/React$1.createElement(Label$1, {