sag_components 2.0.0-beta345 → 2.0.0-beta347

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
@@ -42879,12 +42879,12 @@ const NotAvailableText = styled__default["default"].div`
42879
42879
  color: #8B8989;
42880
42880
  font-family: inherit;
42881
42881
  font-size: inherit;
42882
- line-height: normal;
42882
+ line-height: inherit;
42883
42883
  cursor: pointer;
42884
42884
  padding: 1px 2px;
42885
42885
  border: 1px solid #D1D5DB;
42886
42886
  border-radius: 4px;
42887
- background: #F3F4F6;
42887
+ background: white;
42888
42888
 
42889
42889
  &:hover {
42890
42890
  border-color: rgba(0, 0, 0, 0.6);
@@ -43028,10 +43028,12 @@ const MessageBox = _ref => {
43028
43028
  secondaryColor = "#ffffff",
43029
43029
  seperateSectionBorder = false,
43030
43030
  children,
43031
- tooltipContent = "Please fill in all required details"
43031
+ tooltipContent = "Please fill in all required details",
43032
+ disableBackdropClose = false
43032
43033
  } = _ref;
43033
43034
  if (!isOpen) return null;
43034
43035
  const handleOverlayClick = e => {
43036
+ if (disableBackdropClose) return;
43035
43037
  if (e.target === e.currentTarget) {
43036
43038
  onClose();
43037
43039
  }