sag_components 2.0.0-beta144 → 2.0.0-beta146

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
@@ -1509,7 +1509,7 @@ declare function RangePop(props: any): react_jsx_runtime.JSX.Element;
1509
1509
 
1510
1510
  declare function SearchInput(props: any): react_jsx_runtime.JSX.Element;
1511
1511
 
1512
- declare function ItemManagerPanel({ width, height, disableSection, onSendForms, editMode, disabledSendForms, AllFormsSent, itemAndPackage, setItemAndPackage, linkColor, backgroundColor, buttonTooltipText, }: {
1512
+ declare function ItemManagerPanel({ width, height, disableSection, onSendForms, editMode, disabledSendForms, AllFormsSent, itemAndPackage, setItemAndPackage, linkColor, backgroundColor, buttonTooltipText, maxVisibleVendors }: {
1513
1513
  width?: string;
1514
1514
  height?: string;
1515
1515
  disableSection?: boolean;
@@ -1522,6 +1522,7 @@ declare function ItemManagerPanel({ width, height, disableSection, onSendForms,
1522
1522
  linkColor?: string;
1523
1523
  backgroundColor?: string;
1524
1524
  buttonTooltipText?: string;
1525
+ maxVisibleVendors?: number;
1525
1526
  }): react_jsx_runtime.JSX.Element;
1526
1527
 
1527
1528
  /**
@@ -1560,17 +1561,21 @@ declare function OverlayDropdown({ data, value, onSelectClick, disabled, isDarke
1560
1561
  placeHolderColor: any;
1561
1562
  }): react_jsx_runtime.JSX.Element;
1562
1563
 
1563
- declare function MessageBox({ isOpen, onClose, onConfirm, title, messageTitle, messageText, cancelText, confirmText, width, height }: {
1564
+ declare function MessageBox({ isOpen, isDisabled, onClose, onConfirm, title, primaryText, secondaryText, width, height, color, hoverColor, secondaryColor, seperateSectionBorder, children, }: {
1564
1565
  isOpen?: boolean;
1566
+ isDisabled?: boolean;
1565
1567
  onClose?: () => void;
1566
1568
  onConfirm?: () => void;
1567
1569
  title?: string;
1568
- messageTitle?: string;
1569
- messageText?: string;
1570
- cancelText?: string;
1571
- confirmText?: string;
1570
+ primaryText?: string;
1571
+ secondaryText?: string;
1572
1572
  width?: string;
1573
1573
  height?: string;
1574
+ color?: string;
1575
+ hoverColor?: string;
1576
+ secondaryColor?: string;
1577
+ seperateSectionBorder?: boolean;
1578
+ children: any;
1574
1579
  }): react_jsx_runtime.JSX.Element;
1575
1580
 
1576
1581
  declare function ToasterMessageBox({ color, messageText, linkText, duration, width, onLinkClick, onClose }: {