sag_components 2.0.0-beta144 → 2.0.0-beta145

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
@@ -1560,17 +1560,21 @@ declare function OverlayDropdown({ data, value, onSelectClick, disabled, isDarke
1560
1560
  placeHolderColor: any;
1561
1561
  }): react_jsx_runtime.JSX.Element;
1562
1562
 
1563
- declare function MessageBox({ isOpen, onClose, onConfirm, title, messageTitle, messageText, cancelText, confirmText, width, height }: {
1563
+ declare function MessageBox({ isOpen, isDisabled, onClose, onConfirm, title, primaryText, secondaryText, width, height, color, hoverColor, secondaryColor, seperateSectionBorder, children, }: {
1564
1564
  isOpen?: boolean;
1565
+ isDisabled?: boolean;
1565
1566
  onClose?: () => void;
1566
1567
  onConfirm?: () => void;
1567
1568
  title?: string;
1568
- messageTitle?: string;
1569
- messageText?: string;
1570
- cancelText?: string;
1571
- confirmText?: string;
1569
+ primaryText?: string;
1570
+ secondaryText?: string;
1572
1571
  width?: string;
1573
1572
  height?: string;
1573
+ color?: string;
1574
+ hoverColor?: string;
1575
+ secondaryColor?: string;
1576
+ seperateSectionBorder?: boolean;
1577
+ children: any;
1574
1578
  }): react_jsx_runtime.JSX.Element;
1575
1579
 
1576
1580
  declare function ToasterMessageBox({ color, messageText, linkText, duration, width, onLinkClick, onClose }: {