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 +11 -6
- package/dist/index.esm.js +371 -495
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +371 -495
- package/dist/index.js.map +1 -1
- package/dist/types/components/ItemManagerPanel/ItemManagerPanel.d.ts +2 -1
- package/dist/types/components/ItemManagerPanel/SuccessScreen/SuccessScreen.d.ts +2 -1
- package/dist/types/components/MessageBox/MessageBox.d.ts +9 -5
- package/dist/types/components/MessageBox/MessageBox.stories.d.ts +67 -15
- package/dist/types/components/MessageBox/MessageBox.styles.d.ts +2 -4
- package/dist/types/components/Table/Table.stories.d.ts +78 -66
- package/dist/types/components/Table/TableBody.d.ts +9 -2
- package/dist/types/components/Table/TableBody.styles.d.ts +6 -0
- package/dist/types/components/Table/data.d.ts +3 -16
- package/package.json +3 -2
- package/dist/types/components/Table/CommentModal.d.ts +0 -2
- package/dist/types/components/Table/CommentModal.styles.d.ts +0 -11
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,
|
|
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
|
-
|
|
1569
|
-
|
|
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 }: {
|